Open main menu

CDOT Wiki β

Changes

Real World Mozilla First XPCOM Component

7 bytes removed, 20:16, 27 February 2007
install.rdf
The last build-related file we need to write is a file telling Firefox how to install our extension--'''install.rdf''' (see http://developer.mozilla.org/en/docs/Install_Manifests for details).
<pre>
<?xml version="1.0" encoding="UTF-8"?>
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
<em:id>firstxpcom@senecac.on.ca</em:id>
<em:name>firstxpcom</em:name>
<em:version>0.1.0</em:version>
<em:creator>David Humphrey</em:creator>
<em:description>A Simple XPCOM Extension.</em:description>
<em:homepageURL>http://abczenit.comsenecac.on.ca/wiki</em:homepageURL> <em:aboutURL>chrome://firstxpcom/content/about.xul</em:aboutURL>
<em:targetApplication>
<Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <!-- firefox -->
<em:minVersion>2.0</em:minVersion>
<em:maxVersion>3.0a3pre</em:maxVersion> <!-- trunk build Feb 27, 2007 -->
</Description>
</em:targetApplication>
</Description>
</RDF>
</pre>
== Building FirstXpcom ==