author | williamt <williamt> | 2007-01-05 10:06:01 (UTC) |
---|---|---|
committer | williamt <williamt> | 2007-01-05 10:06:01 (UTC) |
commit | c4b3096e166a0a9a60fd27c8f2dc06e688f13172 (patch) (unidiff) | |
tree | e5f234745835e28d56e5d5b7d6146886d04b3436 /src/install.rdf | |
download | foxri-c4b3096e166a0a9a60fd27c8f2dc06e688f13172.zip foxri-c4b3096e166a0a9a60fd27c8f2dc06e688f13172.tar.gz foxri-c4b3096e166a0a9a60fd27c8f2dc06e688f13172.tar.bz2 |
Initial revision
-rwxr-xr-x | src/install.rdf | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/install.rdf b/src/install.rdf new file mode 100755 index 0000000..a482755 --- a/dev/null +++ b/src/install.rdf | |||
@@ -0,0 +1,40 @@ | |||
1 | <?xml version="1.0"?> | ||
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:id>foxri@foxri.net</em:id> | ||
8 | <em:version>1.1.1</em:version> | ||
9 | <em:type>2</em:type> | ||
10 | |||
11 | <!-- Target Application this extension can install into, | ||
12 | with minimum and maximum supported versions. --> | ||
13 | <em:targetApplication> | ||
14 | <Description> | ||
15 | <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> | ||
16 | <em:minVersion>1.0</em:minVersion> | ||
17 | <em:maxVersion>1.5.0.*</em:maxVersion> | ||
18 | </Description> | ||
19 | </em:targetApplication> | ||
20 | |||
21 | <em:targetApplication> | ||
22 | <Description> | ||
23 | <em:id>{a463f10c-3994-11da-9945-000d60ca027b}</em:id> | ||
24 | <em:minVersion>0.5</em:minVersion> | ||
25 | <em:maxVersion>0.8</em:maxVersion> | ||
26 | </Description> | ||
27 | </em:targetApplication> | ||
28 | |||
29 | |||
30 | <!-- Front End MetaData --> | ||
31 | <em:name>FoXRI</em:name> | ||
32 | <em:description>XRI Extension</em:description> | ||
33 | <em:creator>William Tan</em:creator> | ||
34 | <em:homepageURL>http://dready.org/projects/foxri</em:homepageURL> | ||
35 | <!-- | ||
36 | <em:updateURL>http://dready.org/projects/foxri/update.rdf</em:updateURL> | ||
37 | --> | ||
38 | </Description> | ||
39 | </RDF> | ||
40 | |||