-rw-r--r-- | src/plugin/README_plugin.txt | 9 | ||||
-rw-r--r-- | src/plugin/install.rdf | 19 | ||||
-rwxr-xr-x | src/plugin/make_xpi.sh | 22 | ||||
-rw-r--r-- | src/plugin/plugin.c | 199 | ||||
-rw-r--r-- | src/plugin/plugin.h | 29 | ||||
-rw-r--r-- | src/plugin/test.html | 17 |
6 files changed, 295 insertions, 0 deletions
diff --git a/src/plugin/install.rdf b/src/plugin/install.rdf new file mode 100644 index 0000000..552cc56 --- a/dev/null +++ b/src/plugin/install.rdf | |||
@@ -0,0 +1,19 @@ | |||
1 | <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
2 | xmlns:em="http://www.mozilla.org/2004/em-rdf#"> | ||
3 | <Description about="urn:mozilla:install-manifest"> | ||
4 | <em:id>vistool@donpellegrino.com</em:id> | ||
5 | <em:name>Influenza Sequence Mapping Project Visualization Tool</em:name> | ||
6 | <em:version>1.0</em:version> | ||
7 | <em:targetApplication> | ||
8 | <Description> | ||
9 | <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> | ||
10 | <em:minVersion>1.5</em:minVersion> | ||
11 | <em:maxVersion>3.6.*</em:maxVersion> | ||
12 | </Description> | ||
13 | </em:targetApplication> | ||
14 | <em:creator>Don Pellegrino</em:creator> | ||
15 | <em:homepageURL>http://cluster.ischool.drexel.edu/~st96wym4/flumap/</em:homepageURL> | ||
16 | <em:description>Tool for interactive exploration of data from the Influenza Sequence Mapping Project.</em:description> | ||
17 | <!-- Add update links here --> | ||
18 | </Description> | ||
19 | </RDF> | ||