]> git.gir.st - VimFx.git/blob - extension/install.rdf.tmpl
Merge branch 'blacklist-keys' of https://github.com/harsh1618/VimFx into harsh1618...
[VimFx.git] / extension / install.rdf.tmpl
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4 xmlns:em="http://www.mozilla.org/2004/em-rdf#">
5
6 <Description about="urn:mozilla:install-manifest">
7 <em:name>VimFx</em:name>
8 <em:id>VimFx@akhodakivskiy.github.com</em:id>
9 <em:homepageURL>http://www.github.com/akhodakivskiy/VimFx</em:homepageURL>
10 <em:version>{{version}}</em:version>
11 <em:bootstrap>true</em:bootstrap>
12 <em:type>2</em:type>
13
14 <!-- Firefox -->
15 <em:targetApplication>
16 <Description>
17 <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
18 <em:minVersion>{{minVersion}}</em:minVersion>
19 <em:maxVersion>{{maxVersion}}</em:maxVersion>
20 </Description>
21 </em:targetApplication>
22
23 <em:description>{{defaultDescription}}</em:description>
24
25 <em:creator>{{creator}}</em:creator>
26
27 {{#developers}}
28 <em:developer>{{name}}</em:developer>
29 {{/developers}}
30
31 {{#contributors}}
32 <em:contributor>{{name}}</em:contributor>
33 {{/contributors}}
34
35 {{#translators}}
36 <em:translator>{{name}}</em:translator>
37 {{/translators}}
38
39 {{#locales}}
40 <em:localized>
41 <Description>
42 <em:locale>{{locale}}</em:locale>
43 <em:description>{{description}}</em:description>
44 </Description>
45 </em:localized>
46 {{/locales}}
47
48 </Description>
49 </RDF>
Imprint / Impressum