Commit 21219fa3 authored by Gabriel Ivăncescu's avatar Gabriel Ivăncescu Committed by Alexandre Julliard

mshtml: Add SVG and XHTML document information to the registry.

parent 4bd8339d
......@@ -49,6 +49,16 @@ HKCR,"CLSID\%CLSID_Scriptlet%\Programmable",,16
HKCR,"CLSID\%CLSID_Scriptlet%\ToolboxBitmap32",,,"%16422%\Internet Explorer\iexplore.exe,1"
HKCR,"MIME\Database\Content Type\text/x-scriptlet","CLSID",,"%CLSID_Scriptlet%"
;; SVGDocument
HKCR,"CLSID\{30590066-98B5-11CF-BB82-00AA00BDCE0B}\BrowseInPlace",,16
HKCR,"CLSID\{30590066-98B5-11CF-BB82-00AA00BDCE0B}\DefaultIcon",,0x00020000,"%16422%\Internet Explorer\iexplore.exe,1"
HKCR,"CLSID\{30590066-98B5-11CF-BB82-00AA00BDCE0B}\MiscStatus",,,"2228625"
;; XHTMLDocument
HKCR,"CLSID\{30590067-98B5-11CF-BB82-00AA00BDCE0B}\BrowseInPlace",,16
HKCR,"CLSID\{30590067-98B5-11CF-BB82-00AA00BDCE0B}\DefaultIcon",,0x00020000,"%16422%\Internet Explorer\iexplore.exe,1"
HKCR,"CLSID\{30590067-98B5-11CF-BB82-00AA00BDCE0B}\MiscStatus",,,"2228625"
[Protocols.Reg]
HKCR,"PROTOCOLS\Handler\javascript","CLSID",,"%CLSID_JSProtocol%"
......@@ -241,6 +251,12 @@ HKCR,".ai","Content Type",,"application/postscript"
HKCR,".eps","Content Type",,"application/postscript"
HKCR,".ps","Content Type",,"application/postscript"
;; SVG
HKCR,"MIME\Database\Content Type\image/svg+xml","CLSID",,"{30590066-98B5-11CF-BB82-00AA00BDCE0B}"
HKCR,"MIME\Database\Content Type\image/svg+xml","Extension",,".svg"
HKCR,".svg",,,"svgfile"
HKCR,".svg","Content Type",,"image/svg+xml"
;; TAR
HKCR,"MIME\Database\Content Type\application/x-tar","Extension",,".tar"
HKCR,".tar","Content Type",,"application/x-tar"
......@@ -278,6 +294,14 @@ HKCR,"xbmfile\shell\open\ddeexec\Application",,,"IExplore"
HKCR,"xbmfile\shell\open\ddeexec\Topic",,,"WWW_OpenURL"
;; HKCR,"xbmfile\DefaultIcon",,,"%16422%\Internet Explorer\iexplore.exe,9"
;; XHTML
HKCR,"MIME\Database\Content Type\application/xhtml+xml","CLSID",,"{30590067-98B5-11CF-BB82-00AA00BDCE0B}"
HKCR,"MIME\Database\Content Type\application/xhtml+xml","Extension",,".xht"
HKCR,".xht",,,"xhtmlfile"
HKCR,".xht","Content Type",,"application/xhtml+xml"
HKCR,".xhtml",,,"xhtmlfile"
HKCR,".xhtml","Content Type",,"application/xhtml+xml"
;; XML
HKCR,"MIME\Database\Content Type\application/xml","CLSID",,"{48123BC4-99D9-11D1-A6B3-00C04FD91555}"
HKCR,"MIME\Database\Content Type\application/xml","Extension",,".xml"
......
......@@ -296,6 +296,15 @@ coclass ResProtocol { }
coclass Scriptlet { }
[
helpstring("SVG Document"),
progid("svgfile"),
threading(apartment),
version(1.0),
uuid(30590066-98b5-11cf-bb82-00aa00bdce0b)
]
coclass SVGDocumentClass { }
[
helpstring("Microsoft HTML Resource Pluggable Protocol"),
threading(apartment),
uuid(76e67a63-06e9-11d2-a840-006008059382)
......@@ -308,3 +317,12 @@ coclass SysimageProtocol { }
uuid(429af92c-a51f-11d2-861e-00c04fa35c89)
]
coclass TridentAPI { }
[
helpstring("XHTML Document"),
progid("xhtmlfile"),
threading(apartment),
version(1.0),
uuid(30590067-98b5-11cf-bb82-00aa00bdce0b)
]
coclass XHTMLDocumentClass { }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment