From 0f69602bb5ee4552a04182dde0e0014c38bb69cf Mon Sep 17 00:00:00 2001 From: Nick White Date: Mon, 12 Dec 2011 18:24:47 +0000 Subject: Add options to gecko browsers --- Makefile | 7 +++++-- TODO | 4 +--- gecko/defaults/preferences/prefs.js | 2 ++ gecko/js.patch | 15 +++++++++++++++ gecko/options.xul | 5 +++++ 5 files changed, 28 insertions(+), 5 deletions(-) create mode 100644 gecko/defaults/preferences/prefs.js create mode 100644 gecko/js.patch create mode 100644 gecko/options.xul diff --git a/Makefile b/Makefile index 03a96e4..5ca3854 100644 --- a/Makefile +++ b/Makefile @@ -79,10 +79,12 @@ dist: xpi: $(KEYFILE) rm -rf $(NAME)-$(VERSION).xpi gecko-build - mkdir -p gecko-build/chrome/content + mkdir -p gecko-build/chrome/content gecko-build/defaults/preferences sed 2q < COPYING > gecko-build/COPYING - cp gecko/chrome.manifest gecko-build/ + cp gecko/chrome.manifest gecko/options.xul gecko-build/ cp gecko/chrome/content/simplyread.xul gecko-build/chrome/content/ + cp gecko/defaults/preferences/prefs.js gecko-build/defaults/preferences/ + patch < gecko/js.patch > /dev/null cp simplyread.js gecko-build/chrome/content/ cat viable.js gecko/viablehook.js > gecko-build/chrome/content/viable.js rsvg -w 22 -h 22 icon.svg gecko-build/chrome/content/icon.png @@ -91,6 +93,7 @@ xpi: $(KEYFILE) < gecko/install.ttl | rapper -i turtle -o rdfxml /dev/stdin 2>/dev/null > gecko-build/install.rdf cd gecko-build; zip -r ../$(NAME)-$(VERSION).xpi . 1>/dev/null rm -rf gecko-build + patch -R < gecko/js.patch > /dev/null echo $(NAME)-$(VERSION).xpi crx: $(KEYFILE) diff --git a/TODO b/TODO index 8dc1cac..c9dc9ee 100644 --- a/TODO +++ b/TODO @@ -20,8 +20,6 @@ chromium: see GenerateId in extension.cc of chrome for how it works gecko: - create option to turn off/on hyperlinks https://developer.mozilla.org/en/Adding_preferences_to_an_extension - create option to turn off/on css use straight rdf/xml to remove rapper build dependency use rapper and bourne shell script to sign this is difficult as mozilla wants the signature of a very particular serialisation of the update rdf @@ -43,9 +41,9 @@ gecko: - remove these two from all documents - remove listeners - remove any addon bar things + call simplyread() properly, rather than patching it with the preferences stuff add fennec support - https://wiki.mozilla.org/Mobile/Fennec/Extensions 'electrolysis' may require modifications - consider using plain rdfxml rather than turtle; conversion is a pain, and it's clear rdf is on its way out of gecko anyway test (currently outdated): current tests diff --git a/gecko/defaults/preferences/prefs.js b/gecko/defaults/preferences/prefs.js new file mode 100644 index 0000000..f58d378 --- /dev/null +++ b/gecko/defaults/preferences/prefs.js @@ -0,0 +1,2 @@ +pref("extensions.simplyread.nostyle", false); +pref("extensions.simplyread.nolinks", false); diff --git a/gecko/js.patch b/gecko/js.patch new file mode 100644 index 0000000..ddc8842 --- /dev/null +++ b/gecko/js.patch @@ -0,0 +1,15 @@ +--- simplyread.js 2011-12-12 14:13:05.017459673 +0000 ++++ simplyread.js.geckogross 2011-12-12 14:12:55.557462101 +0000 +@@ -4,6 +4,12 @@ if(window.content && window.content.docu + + function simplyread(nostyle, nolinks) + { ++ var prefs = Components.classes["@mozilla.org/preferences-service;1"] ++ .getService(Components.interfaces.nsIPrefService); ++ prefs = prefs.getBranch("extensions.simplyread."); ++ nostyle = prefs.getBoolPref("nostyle"); ++ nolinks = prefs.getBoolPref("nolinks"); ++ + /* count the number of

tags that are direct children of parenttag */ + function count_p(parenttag) + { diff --git a/gecko/options.xul b/gecko/options.xul new file mode 100644 index 0000000..3ef5d8d --- /dev/null +++ b/gecko/options.xul @@ -0,0 +1,5 @@ + + + + + -- cgit v1.2.3