Appstubs Mozilla application stubs.
These files makeup a complete, installable mozilla application. They are meant to ease the development of a mozilla application.

To create an xpi  from in the appStubs directory do:
	zip -r appstubs.jar content locale skin
then do:
	zip -r appstubs.xpi install.js appstubs.jar
The above creates an appstubs.jar and then creates an installable appstubs.xpi

To create an application of a name of your choosing you must go thru all the files in this directory and replace the word 'appstubs' with the name of your application every place it occures, this includes directory names, file names and inside files. If you are going to use this appstubs you should rename everything before doing anything else. For editing the individual files I use a text editor and use search and replace.

There is an 'installed-chrome.txt' file included that can be used to install the live directory for development. When you get your application work then you create an xpi to distribute it.

There are 'mozilla-rebuild-databases.pl' and 'rebuild-databases.sh' to assist in rebuilding the chrome databases when a change is made in the /appstubs/content/contents.rdf file. This can also be done by deleteing the /mozilla/chrome/overlayinfo/content/overlays.rdf and maybe the /mozilla/chrome/chrome.rdf then run the regchrome program, i.e './regchrome' - this will read the installed-chrome.txt file and read all contents.rdf file that it points to.

There is the 'moz-appstubs' directory that has a webpage with an xpi install tigger to aid distrobution of your application.