summaryrefslogtreecommitdiff
path: root/gecko
diff options
context:
space:
mode:
authorNick White <git@njw.me.uk>2012-05-20 18:49:46 +0100
committerNick White <git@njw.me.uk>2012-05-20 18:49:46 +0100
commit34ca41096d29aa1063b118ca866734870bb50cef (patch)
treef7c0735097dcfc4dc6b258add97b803f297357ff /gecko
parent0a08a37f975e4154a0b5188a3442893e1328759e (diff)
Use rdf/xml for install manifest
Diffstat (limited to 'gecko')
-rw-r--r--gecko/install.rdf22
-rw-r--r--gecko/install.ttl19
2 files changed, 22 insertions, 19 deletions
diff --git a/gecko/install.rdf b/gecko/install.rdf
new file mode 100644
index 0000000..6fc6ef7
--- /dev/null
+++ b/gecko/install.rdf
@@ -0,0 +1,22 @@
+<?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#"
+ xmlns:doap="http://usefulinc.com/ns/doap#">
+ <Description about="urn:mozilla:install-manifest">
+ <em:id>GECKOID</em:id>
+ <em:version>VERSION</em:version>
+ <em:type>2</em:type>
+ <em:targetApplication><Description>
+ <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
+ <em:minVersion>3.0</em:minVersion>
+ <em:maxVersion>10.*</em:maxVersion>
+ </Description></em:targetApplication>
+ <em:name>SimplyRead</em:name>
+ <em:description>Removes distractions from webpages. Press Alt+r or press the 'sr' button in the addons bar to toggle SimplyRead.</em:description>
+ <em:creator>Nick White</em:creator>
+ <em:homepageURL>WEBSITE/</em:homepageURL>
+ <em:updateURL>WEBSITE/gecko-updates.rdf</em:updateURL>
+ <em:updateKey>PUBKEY</em:updateKey>
+ <doap:license resource="http://www.gnu.org/licenses/agpl.html" />
+ </Description>
+</RDF>
diff --git a/gecko/install.ttl b/gecko/install.ttl
deleted file mode 100644
index e65c2a4..0000000
--- a/gecko/install.ttl
+++ /dev/null
@@ -1,19 +0,0 @@
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
-@prefix em: <http://www.mozilla.org/2004/em-rdf#>.
-
-<urn:mozilla:install-manifest>
- em:id "GECKOID";
- em:version "VERSION";
- em:type "2";
- em:targetApplication [
- em:id "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}";
- em:minVersion "3.0";
- em:maxVersion "10.*"
- ] ;
- em:name "SimplyRead";
- em:description "Removes distractions from webpages. Press Alt+r or press the 'sr' button in the addons bar to toggle SimplyRead.";
- em:creator "Nick White";
- em:homepageURL "WEBSITE/";
- em:updateURL "WEBSITE/gecko-updates.rdf";
- em:updateKey "PUBKEY";
- <http://usefulinc.com/ns/doap#license> <http://www.gnu.org/licenses/agpl.html>.