source: trunk/athena/lib/firefox-extension/install.rdf @ 25519

Revision 25519, 1011 bytes checked in by jdreed, 12 years ago (diff)
In firefox-extension: * Sync extension version number with package version number * Support Gecko 2.0, because apparently the XPCOM component hasn't worked since Firefox 3.x * Switch to XPCOMUtils.jsm for the XPCOM scaffolding (break compatibility with Firefox 2 and earlier)
Line 
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>athena@mit.edu</em:id>
8    <em:version>10.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>*</em:maxVersion>
18      </Description>
19    </em:targetApplication>
20   
21    <!-- Front End MetaData -->
22    <em:name>Athena Customizations</em:name>
23    <em:description>Customizations for MIT Athena</em:description>
24    <em:creator>MIT Information Services and Technology</em:creator>
25    <em:homepageURL>http://ist.mit.edu/</em:homepageURL>
26    <em:iconURL>chrome://athena/skin/icon.png</em:iconURL>
27  </Description>     
28</RDF>
Note: See TracBrowser for help on using the repository browser.