Browse Source

Not much yet.

Douglas William Thrift 13 years ago
commit
92b7aaa3e9
2 changed files with 34 additions and 0 deletions
  1. 12 0
      bootstrap.js
  2. 22 0
      install.rdf

+ 12 - 0
bootstrap.js

@@ -0,0 +1,12 @@
+/*
+ */
+
+function startup(data, reason)
+{
+}
+
+function shutdown(data, reason)
+{
+}
+
+// vim: expandtab

+ 22 - 0
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#">
+    <Description about="urn:mozilla:install-manifest">
+        <em:id>tabcomplete@douglasthrift.net</em:id>
+        <em:version>1.0alpha</em:version>
+        <em:type>2</em:type>
+        <em:targetApplication>
+			<Description>
+                <!-- Instantbird -->
+                <em:id>{33cb9019-c295-46dd-be21-8c4936574bee}</em:id>
+                <em:minVersion>0.3b1</em:minVersion>
+                <em:maxVersion>1.0.*</em:minVersion>
+            </Description>
+        </em:targetApplication>
+        <em:name>Tab Complete</em:name>
+        <em:bootstrap>true</em:bootstrap>
+        <em:description>Tab completion for conversation windows including commands and nicknames.</em:description>
+        <em:creator>Douglas Thrift</em:creator>
+        <em:homepageURL>http://code.douglasthrift.net/trac/tabcomplete</em:homepageURL>
+    </Description>
+</RDF>
+<!-- vim: set expandtab: -->