aboutsummaryrefslogtreecommitdiff
path: root/files/ko/install.rdf/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/install.rdf/index.html')
-rw-r--r--files/ko/install.rdf/index.html40
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">&lt;?xml version="1.0"?&gt;
+
+&lt;RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:em="http://www.mozilla.org/2004/em-rdf#"&gt;
+
+ &lt;Description about="urn:mozilla:install-manifest"&gt;
+ &lt;em:id&gt;author@oftheme.com&lt;/em:id&gt;
+ &lt;em:version&gt;2.0b1&lt;/em:version&gt;
+
+ &lt;!-- SeaMonkey --&gt;
+ &lt;em:targetApplication&gt;
+ &lt;Description&gt;
+ &lt;em:id&gt;{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}&lt;/em:id&gt;
+ &lt;em:minVersion&gt;2.0b1pre&lt;/em:minVersion&gt;
+ &lt;em:maxVersion&gt;2.0b2pre&lt;/em:maxVersion&gt;
+ &lt;/Description&gt;
+ &lt;/em:targetApplication&gt;
+
+ &lt;!-- Front End MetaData --&gt;
+ &lt;em:name&gt;My_Theme&lt;/em:name&gt;
+ &lt;em:description&gt;My first theme&lt;/em:description&gt;
+
+ &lt;!-- Front End Integration Hooks (used by Theme Manager)--&gt;
+ &lt;em:creator&gt;John Johnson&lt;/em:creator&gt;
+ &lt;em:contributor&gt;John Johnson&lt;/em:contributor&gt;
+ &lt;em:homepageURL&gt;https://mycoolskin.com/&lt;/em:homepageURL&gt;
+
+ &lt;em:updateURL&gt;https://mycoolskin.com/&lt;/em:updateURL&gt;
+ &lt;em:aboutURL&gt;https://mycoolskin.com/&lt;/em:aboutURL&gt;
+ &lt;em:internalName&gt;My_Theme&lt;/em:internalName&gt;
+ &lt;/Description&gt;
+&lt;/RDF&gt;
+</pre>