diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8c24a61 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +{8620c15f-30dc-4dba-a131-7c5d20cf4a29} +*.xpi diff --git a/README.md b/README.md index 64c6fea..dcdfd74 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Nightly Tester Tools is an addon for aiding testers of nightly builds of Mozilla # Install You can install the latest stable NTT from [addons.mozilla.org](https://addons.mozilla.org/en-US/firefox/addon/6543/). To install for development, clone the repo: - git clone git://github.com/mozautomation/nightlytt.git + git clone git://github.com/mozilla/nightlytt.git then add a file titled '{8620c15f-30dc-4dba-a131-7c5d20cf4a29}' to the "extensions" directory in your [profile folder](http://kb.mozillazine.org/Profile_folder) with the text: @@ -24,8 +24,12 @@ or whatever the path to your nightlytt folder is. To bundle the extension into an xpi for distribution, run this command to get a `nightlytt.xpi` file: ``` -zip -r nightlytt.xpi * -x@zipexclude.lst +cd extension; zip -r ../nightlytt.xpi * -x@../zipexclude.lst; cd .. ``` # Development -All bugs are reported to the Nightly Tester Tools component at bugzilla.mozilla.org. [bug list](https://bugzilla.mozilla.org/buglist.cgi?query_format=advanced&component=Nightly%20Tester%20Tools&product=Other%20Applications), [file a bug](https://bugzilla.mozilla.org/enter_bug.cgi?product=Other%20Applications&component=Nightly%20Tester%20Tools). Check out [the wiki](https://wiki.mozilla.org/Auto-tools/Projects/NightlyTesterTools) for a list of current and proposed features and feel free to file bugs and submit patches. \ No newline at end of file +All bugs are reported to the Nightly Tester Tools component at bugzilla.mozilla.org. [bug list](https://bugzilla.mozilla.org/buglist.cgi?query_format=advanced&component=Nightly%20Tester%20Tools&product=Other%20Applications), [file a bug](https://bugzilla.mozilla.org/enter_bug.cgi?product=Other%20Applications&component=Nightly%20Tester%20Tools). Check out [the wiki](https://wiki.mozilla.org/Auto-tools/Projects/NightlyTesterTools) for a list of current and proposed features and feel free to file bugs and submit patches. + +# Related Add-ons: +* [Screengrab](https://addons.mozilla.org/en-US/firefox/addon/1146/) +* [Add-on Compatibility Reporter](https://addons.mozilla.org/en-US/firefox/addon/15003/) diff --git a/LICENSE b/extension/LICENSE similarity index 72% rename from LICENSE rename to extension/LICENSE index 01501ac..4606cd3 100644 --- a/LICENSE +++ b/extension/LICENSE @@ -3,4 +3,4 @@ tri-license (MPL/GPL/LGPL) unless otherwise specified. The MPL is available at http://www.mozilla.org/MPL/MPL-1.1.html -The source code is available on request from dtownsend@oxymoronical.com +The source code is available at: https://github.com/mozilla/nightlytt/ diff --git a/chrome.manifest b/extension/chrome.manifest similarity index 100% rename from chrome.manifest rename to extension/chrome.manifest diff --git a/chrome/content/aboutNightly.xhtml b/extension/chrome/content/aboutNightly.xhtml similarity index 100% rename from chrome/content/aboutNightly.xhtml rename to extension/chrome/content/aboutNightly.xhtml diff --git a/chrome/content/brand/icon.png b/extension/chrome/content/brand/icon.png similarity index 100% rename from chrome/content/brand/icon.png rename to extension/chrome/content/brand/icon.png diff --git a/chrome/content/brand/logo.png b/extension/chrome/content/brand/logo.png similarity index 100% rename from chrome/content/brand/logo.png rename to extension/chrome/content/brand/logo.png diff --git a/chrome/content/browser.js b/extension/chrome/content/browser.js similarity index 100% rename from chrome/content/browser.js rename to extension/chrome/content/browser.js diff --git a/chrome/content/browserOverlay.xul b/extension/chrome/content/browserOverlay.xul similarity index 100% rename from chrome/content/browserOverlay.xul rename to extension/chrome/content/browserOverlay.xul diff --git a/chrome/content/crashme.js b/extension/chrome/content/crashme.js similarity index 100% rename from chrome/content/crashme.js rename to extension/chrome/content/crashme.js diff --git a/chrome/content/messenger.js b/extension/chrome/content/messenger.js similarity index 100% rename from chrome/content/messenger.js rename to extension/chrome/content/messenger.js diff --git a/chrome/content/messengerOverlay.xul b/extension/chrome/content/messengerOverlay.xul similarity index 100% rename from chrome/content/messengerOverlay.xul rename to extension/chrome/content/messengerOverlay.xul diff --git a/chrome/content/nightly.js b/extension/chrome/content/nightly.js similarity index 100% rename from chrome/content/nightly.js rename to extension/chrome/content/nightly.js diff --git a/chrome/content/platform.js b/extension/chrome/content/platform.js similarity index 100% rename from chrome/content/platform.js rename to extension/chrome/content/platform.js diff --git a/chrome/content/pprint.js b/extension/chrome/content/pprint.js similarity index 100% rename from chrome/content/pprint.js rename to extension/chrome/content/pprint.js diff --git a/chrome/content/screenshot/multipartFormData.js b/extension/chrome/content/screenshot/multipartFormData.js similarity index 100% rename from chrome/content/screenshot/multipartFormData.js rename to extension/chrome/content/screenshot/multipartFormData.js diff --git a/chrome/content/screenshot/providers.js b/extension/chrome/content/screenshot/providers.js similarity index 100% rename from chrome/content/screenshot/providers.js rename to extension/chrome/content/screenshot/providers.js diff --git a/chrome/content/screenshot/screenshot.js b/extension/chrome/content/screenshot/screenshot.js similarity index 100% rename from chrome/content/screenshot/screenshot.js rename to extension/chrome/content/screenshot/screenshot.js diff --git a/chrome/content/screenshot/screenshot.xul b/extension/chrome/content/screenshot/screenshot.xul similarity index 100% rename from chrome/content/screenshot/screenshot.xul rename to extension/chrome/content/screenshot/screenshot.xul diff --git a/chrome/content/songbird.js b/extension/chrome/content/songbird.js similarity index 100% rename from chrome/content/songbird.js rename to extension/chrome/content/songbird.js diff --git a/chrome/content/songbirdOverlay.xul b/extension/chrome/content/songbirdOverlay.xul similarity index 100% rename from chrome/content/songbirdOverlay.xul rename to extension/chrome/content/songbirdOverlay.xul diff --git a/chrome/content/suite.js b/extension/chrome/content/suite.js similarity index 100% rename from chrome/content/suite.js rename to extension/chrome/content/suite.js diff --git a/chrome/content/suiteOverlay.xul b/extension/chrome/content/suiteOverlay.xul similarity index 100% rename from chrome/content/suiteOverlay.xul rename to extension/chrome/content/suiteOverlay.xul diff --git a/chrome/content/titlebar/customize.js b/extension/chrome/content/titlebar/customize.js similarity index 100% rename from chrome/content/titlebar/customize.js rename to extension/chrome/content/titlebar/customize.js diff --git a/chrome/content/titlebar/customize.xul b/extension/chrome/content/titlebar/customize.xul similarity index 100% rename from chrome/content/titlebar/customize.xul rename to extension/chrome/content/titlebar/customize.xul diff --git a/chrome/content/winPlatform.js b/extension/chrome/content/winPlatform.js similarity index 100% rename from chrome/content/winPlatform.js rename to extension/chrome/content/winPlatform.js diff --git a/chrome/locale/en-US/customize.dtd b/extension/chrome/locale/en-US/customize.dtd similarity index 100% rename from chrome/locale/en-US/customize.dtd rename to extension/chrome/locale/en-US/customize.dtd diff --git a/chrome/locale/en-US/nightly.dtd b/extension/chrome/locale/en-US/nightly.dtd similarity index 100% rename from chrome/locale/en-US/nightly.dtd rename to extension/chrome/locale/en-US/nightly.dtd diff --git a/chrome/locale/en-US/nightly.properties b/extension/chrome/locale/en-US/nightly.properties similarity index 100% rename from chrome/locale/en-US/nightly.properties rename to extension/chrome/locale/en-US/nightly.properties diff --git a/chrome/locale/en-US/screenshot.dtd b/extension/chrome/locale/en-US/screenshot.dtd similarity index 100% rename from chrome/locale/en-US/screenshot.dtd rename to extension/chrome/locale/en-US/screenshot.dtd diff --git a/chrome/locale/en-US/screenshot.properties b/extension/chrome/locale/en-US/screenshot.properties similarity index 100% rename from chrome/locale/en-US/screenshot.properties rename to extension/chrome/locale/en-US/screenshot.properties diff --git a/chrome/locale/en-US/variables.properties b/extension/chrome/locale/en-US/variables.properties similarity index 100% rename from chrome/locale/en-US/variables.properties rename to extension/chrome/locale/en-US/variables.properties diff --git a/chrome/skin/browser.css b/extension/chrome/skin/browser.css similarity index 100% rename from chrome/skin/browser.css rename to extension/chrome/skin/browser.css diff --git a/chrome/skin/cbox-check.gif b/extension/chrome/skin/cbox-check.gif similarity index 100% rename from chrome/skin/cbox-check.gif rename to extension/chrome/skin/cbox-check.gif diff --git a/chrome/skin/idlarge.png b/extension/chrome/skin/idlarge.png similarity index 100% rename from chrome/skin/idlarge.png rename to extension/chrome/skin/idlarge.png diff --git a/chrome/skin/idsmall.png b/extension/chrome/skin/idsmall.png similarity index 100% rename from chrome/skin/idsmall.png rename to extension/chrome/skin/idsmall.png diff --git a/chrome/skin/options/options.css b/extension/chrome/skin/options/options.css similarity index 100% rename from chrome/skin/options/options.css rename to extension/chrome/skin/options/options.css diff --git a/chrome/skin/screenshot/screenshot.css b/extension/chrome/skin/screenshot/screenshot.css similarity index 100% rename from chrome/skin/screenshot/screenshot.css rename to extension/chrome/skin/screenshot/screenshot.css diff --git a/chrome/skin/session/session.css b/extension/chrome/skin/session/session.css similarity index 100% rename from chrome/skin/session/session.css rename to extension/chrome/skin/session/session.css diff --git a/components/aboutNightly.js b/extension/components/aboutNightly.js similarity index 100% rename from components/aboutNightly.js rename to extension/components/aboutNightly.js diff --git a/components/nttAddonCompatibilityService.js b/extension/components/nttAddonCompatibilityService.js similarity index 100% rename from components/nttAddonCompatibilityService.js rename to extension/components/nttAddonCompatibilityService.js diff --git a/defaults/preferences/nightlytools.js b/extension/defaults/preferences/nightlytools.js similarity index 100% rename from defaults/preferences/nightlytools.js rename to extension/defaults/preferences/nightlytools.js diff --git a/defaults/preferences/variables.js b/extension/defaults/preferences/variables.js similarity index 100% rename from defaults/preferences/variables.js rename to extension/defaults/preferences/variables.js diff --git a/install.rdf b/extension/install.rdf similarity index 100% rename from install.rdf rename to extension/install.rdf diff --git a/modules/Crasher.jsm b/extension/modules/Crasher.jsm similarity index 100% rename from modules/Crasher.jsm rename to extension/modules/Crasher.jsm diff --git a/modules/Logging.jsm b/extension/modules/Logging.jsm similarity index 100% rename from modules/Logging.jsm rename to extension/modules/Logging.jsm diff --git a/related-plugins.txt b/related-plugins.txt deleted file mode 100644 index c315731..0000000 --- a/related-plugins.txt +++ /dev/null @@ -1,5 +0,0 @@ -Screenshots:: -* Screengrab : https://addons.mozilla.org/en-US/firefox/addon/1146/ - -Addon Compatability:: -* https://addons.mozilla.org/en-US/firefox/addon/15003/