Mercurial > hg > FirefoxAddon
annotate firefoxaddon/template/install.rdf_tmpl @ 0:9869cf47fcf8 default tip
initial commit of Firefox addon template
author | k0s <k0scist@gmail.com> |
---|---|
date | Sun, 28 Mar 2010 16:25:58 -0400 |
parents | |
children |
rev | line source |
---|---|
0
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
1 <?xml version="1.0" encoding="UTF-8"?> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
2 <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
3 xmlns:em="http://www.mozilla.org/2004/em-rdf#"> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
4 <Description about="urn:mozilla:install-manifest"> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
5 <em:id>${package}@${'.'.join([i.lower() for i in author.split()])}</em:id> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
6 <em:name>${project}</em:name> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
7 <em:version>1.0</em:version> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
8 <em:creator>${author}</em:creator> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
9 <em:description>${description}</em:description> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
10 <em:homepageURL>${url}</em:homepageURL> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
11 <em:aboutURL>chrome://${package}/content/about.xul</em:aboutURL> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
12 <em:optionsURL>chrome://${package}/content/options.xul</em:optionsURL> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
13 <em:iconURL>chrome://${package}/content/${package}.jpg</em:iconURL> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
14 <em:targetApplication> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
15 <Description> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
16 <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <!-- firefox --> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
17 <em:minVersion>1.5</em:minVersion> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
18 <em:maxVersion>3.0.*</em:maxVersion> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
19 </Description> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
20 </em:targetApplication> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
21 </Description> |
9869cf47fcf8
initial commit of Firefox addon template
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
22 </RDF> |