diff options
Diffstat (limited to 'files/ko/install.rdf/index.html')
-rw-r--r-- | files/ko/install.rdf/index.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/files/ko/install.rdf/index.html b/files/ko/install.rdf/index.html new file mode 100644 index 0000000000..1734e7799f --- /dev/null +++ b/files/ko/install.rdf/index.html @@ -0,0 +1,40 @@ +--- +title: install.rdf +slug: install.rdf +translation_of: Archive/Mozilla/Creating_a_Skin_for_SeaMonkey_2.x/install.rdf +--- +<p>Copy the following text and paste it into a text file, then save that file as "<code>install.rdf</code>":</p> + +<pre class="brush:xml"><?xml version="1.0"?> + +<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:em="http://www.mozilla.org/2004/em-rdf#"> + + <Description about="urn:mozilla:install-manifest"> + <em:id>author@oftheme.com</em:id> + <em:version>2.0b1</em:version> + + <!-- SeaMonkey --> + <em:targetApplication> + <Description> + <em:id>{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}</em:id> + <em:minVersion>2.0b1pre</em:minVersion> + <em:maxVersion>2.0b2pre</em:maxVersion> + </Description> + </em:targetApplication> + + <!-- Front End MetaData --> + <em:name>My_Theme</em:name> + <em:description>My first theme</em:description> + + <!-- Front End Integration Hooks (used by Theme Manager)--> + <em:creator>John Johnson</em:creator> + <em:contributor>John Johnson</em:contributor> + <em:homepageURL>https://mycoolskin.com/</em:homepageURL> + + <em:updateURL>https://mycoolskin.com/</em:updateURL> + <em:aboutURL>https://mycoolskin.com/</em:aboutURL> + <em:internalName>My_Theme</em:internalName> + </Description> +</RDF> +</pre> |