aboutsummaryrefslogtreecommitdiff
path: root/files/ko/install.rdf/index.html
blob: 1734e7799f5020e89226e6c8e538707e0e19cbc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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>