--- mozilla-noscript-1.9.2.8.orig/debian/rules +++ mozilla-noscript-1.9.2.8/debian/rules @@ -0,0 +1,73 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# create .orig.tar.gz file from .xpi file +../mozilla-noscript_%.orig.tar.gz: ../noscript-%.xpi + TARGET=`mktemp -d`/mozilla-noscript-$(srcver); \ + mkdir $${TARGET}; \ + unzip $< -d $${TARGET}; \ + tar -czf $@ --transform "s,$${TARGET#/},mozilla-noscript-$(srcver)," $${TARGET} + +refresh-patches: + rm -rf debian/patches + mkdir debian/patches + cd debian/patches && git format-patch upstream..upstream+patches + +patch: patch-stamp +patch-stamp: + for file in `ls -1 debian/patches/*.patch || true`; do \ + patch -p1 -i $$file; \ + done + touch $@ + +unpatch: + if [ -f patch-stamp ]; then \ + for file in `ls -1 debian/patches/*.patch || true`; do \ + patch -p1 -R -i $$file; \ + done; \ + rm -f patch-stamp; \ + fi + +build: patch + dh_testdir + touch build-stamp + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean + dh_installdirs + dh_install + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs -i debian/README.Debian-source + dh_link -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +binary-arch: build install + +binary: binary-indep binary-arch + +.PHONY: build clean patch unpatch binary-indep binary-arch binary install --- mozilla-noscript-1.9.2.8.orig/debian/README.Debian +++ mozilla-noscript-1.9.2.8/debian/README.Debian @@ -0,0 +1,26 @@ +This is the mozilla-noscript Debian package. + +The following patch has been applied: + + - Remove all sites from default whitelist. Those sites where + * addons.mozilla.org + * flashgot.net + * gmail.com + * google.com + * googlesyndication.com + * informaction.com + * yahoo.com + * yimg.com + * maone.net + * noscript.net + * hotmail.com + * msn.com + * passport.com + * passport.net + * passportimages.com + * live.com + If you wish to enable scripts on one or more of those sites, you need to add + them to the whitelist manually. + +-- +Arnaud Renevier Wed, 16 May 2007 23:56:24 +0200 --- mozilla-noscript-1.9.2.8.orig/debian/dirs +++ mozilla-noscript-1.9.2.8/debian/dirs @@ -0,0 +1,5 @@ +usr/share/mozilla-extensions/noscript/chrome +usr/share/mozilla-extensions/noscript/components +usr/share/mozilla-extensions/noscript/defaults/preferences +usr/share/doc/mozilla-noscript/examples +usr/share/iceweasel/greprefs/ --- mozilla-noscript-1.9.2.8.orig/debian/postinst +++ mozilla-noscript-1.9.2.8/debian/postinst @@ -0,0 +1,50 @@ +#! /bin/sh +# postinst script for mozilla-noscript +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +case "$1" in + configure) + + if which update-seamonkey-chrome 2> /dev/null > /dev/null + then + update-seamonkey-chrome + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- mozilla-noscript-1.9.2.8.orig/debian/changelog +++ mozilla-noscript-1.9.2.8/debian/changelog @@ -0,0 +1,175 @@ +mozilla-noscript (1.9.2.8-1ubuntu1) karmic; urgency=low + + * Merge from debian unstable (LP: #390877), remaining changes: + - Alternately depend on abrowser in mozilla-noscript. + - Update debian/mozilla-noscript.links to install in firefox-addons/ + extentions directory. + - Fixed to work with seamonkey + - debian/mozilla-noscript.links: + + Changed reference from iceape to seamonkey + - debian/postrm: substituted update-iceape-chrome with + update-seamonkey-chrome + - debian/postinst: substituted update-iceape-chrome with + update-seamonkey-chrome + + -- Krzysztof Klimonda Tue, 23 Jun 2009 00:09:05 +0200 + +mozilla-noscript (1.9.2.8-1) unstable; urgency=low + + * New upstream release. Closes: #502699, #510323 + + -- Arnaud Renevier Sun, 17 May 2009 23:07:35 +0200 + +mozilla-noscript (1.8.2.1-1ubuntu2) jaunty; urgency=low + + * Fixed to work with seamonkey (LP: #260955) + * debian/mozilla-noscript.links: + - Changed reference from iceape to seamonkey + * debian/postrm: substituted update-iceape-chrome with + update-seamonkey-chrome + * debian/postinst: substituted update-iceape-chrome with + update-seamonkey-chrome + + -- Fabrice Coutadeur Sat, 10 Jan 2009 20:25:23 +0000 + +mozilla-noscript (1.8.2.1-1ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes (LP: #307628): + - Alternately depend on abrowser in mozilla-noscript. + - Update debian/mozilla-noscript.links to install in firefox-addons/ + extentions directory. + + -- Nick Ellery Fri, 12 Dec 2008 21:37:55 -0800 + +mozilla-noscript (1.8.2.1-1) unstable; urgency=low + + * New upstream realease. + * Update Standards-Version to 3.8.1 (no changes required). + + -- Arnaud Renevier Tue, 07 Oct 2008 23:16:15 +0200 + +mozilla-noscript (1.6.9.3-1ubuntu2) intrepid; urgency=low + + * fix LP: #272772: packages that Depend/Recommend/Suggest firefox + (meta-package) must alternatively Depend/Recommend/Suggest abrowser + - update debian/control + + -- Fabien Tassin Sun, 21 Sep 2008 22:58:06 +0200 + +mozilla-noscript (1.6.9.3-1ubuntu1) intrepid; urgency=low + + [ Ubuntu Merge-o-Matic ] + * Merge from debian unstable, remaining changes: + + debian/mozilla-noscript.links: + - Link from usr/lib/firefox-addons. + + debian/control: + - Changed maintainer field. + + -- Emanuele Gentili Sun, 13 Jul 2008 14:00:49 +0200 + +mozilla-noscript (1.6.9.3-1) unstable; urgency=low + + * New upstream release. It is compatible with firefox 3. Closes: #486023 + * Update Standards-Version to 3.8.0 (no changes required). + + -- Arnaud Renevier Thu, 19 Jun 2008 20:49:14 +0200 + +mozilla-noscript (1.6-1ubuntu1) intrepid; urgency=low + + * Merged from Debian unstable, remaining Ubuntu changes: + + debian/mozilla-noscript.links: + - Link from usr/lib/firefox-addons. + + debian/control: + - Changed maintainer field. + + -- Matvey Kozhev Sat, 03 May 2008 19:10:50 +0700 + +mozilla-noscript (1.6-1) unstable; urgency=low + + * New upstream release + * Move packaging to a git repository. + * Add target in debian/rules to generate .orig.tar.gz from upstream .xpi + file. + * convert debian/copyright to new machine-interpretable format. + + -- Arnaud Renevier Tue, 15 Apr 2008 23:31:52 +0200 + +mozilla-noscript (1.4.9.5-1) unstable; urgency=low + + * New upstream release + * Add alternative dependency to seamonkey-browser for Ubuntu. + * set extensions.%UUID%.update.enabled to false to avoid unnecessary http + request after iceweasel update. + + -- Arnaud Renevier Thu, 13 Mar 2008 12:06:36 +0100 + +mozilla-noscript (1.3.2-0ubuntu2) hardy; urgency=low + + * bump firefox maxVersion to 3.0.* and install in + firefox-addons/extensions directory (LP: #217988) + - update debian/mozilla-noscript.links + + -- Alexander Sack Wed, 16 Apr 2008 03:07:28 +0200 + +mozilla-noscript (1.3.2-0ubuntu1) hardy; urgency=low + + * New upstream release, based on the latest Debian release. (LP: #178445) + * Updated package description to mention Firefox/SeaMonkey. (LP: #184084) + * Updated debian/patches/50_whitelist.dpatch because it no longer applied. + + -- Matvey Kozhev Thu, 14 Feb 2008 12:56:01 +0600 + +mozilla-noscript (1.2.9-1) unstable; urgency=low + + * New upstream release + * Add alternative dependency to firefox to have an existing dependency on + Ubuntu. + + -- Arnaud Renevier Fri, 11 Jan 2008 23:05:57 +0100 + +mozilla-noscript (1.1.9.6-1) unstable; urgency=low + + * New upstream release + * Use new "Homepage:" field to specify upstream homepage. closes: #448466 + * Update Standards-Version to 3.7.3 (no changes required). + + -- Arnaud Renevier Tue, 18 Dec 2007 23:32:09 +0100 + +mozilla-noscript (1.1.7.2-1) unstable; urgency=low + + * New upstream release. closes: #447976 + + -- Arnaud Renevier Sun, 28 Oct 2007 10:14:26 +0100 + +mozilla-noscript (1.1.6.24-1) unstable; urgency=low + + * New upstream release + * Do not create empty and useless directories. closes: #440396 + + -- Arnaud Renevier Tue, 04 Sep 2007 19:40:19 +0200 + +mozilla-noscript (1.1.6.03-1) unstable; urgency=low + + * New upstream release + * Does not redirect on upstream author page after upgrade. closes: #433032 + + -- Arnaud Renevier Sat, 14 Jul 2007 11:29:30 +0200 + +mozilla-noscript (1.1.6.02-1) unstable; urgency=low + + * New upstream release + + -- Arnaud Renevier Sat, 07 Jul 2007 18:26:33 +0200 + +mozilla-noscript (1.1.4.8.070602-1) unstable; urgency=low + + * New upstream release + + -- Arnaud Renevier Thu, 07 Jun 2007 10:31:28 +0200 + +mozilla-noscript (1.1.4.8.070502-1) unstable; urgency=low + + * Initial release. (Closes: #411403) + + -- Arnaud Renevier Thu, 17 May 2007 00:04:38 +0200 + --- mozilla-noscript-1.9.2.8.orig/debian/control +++ mozilla-noscript-1.9.2.8/debian/control @@ -0,0 +1,25 @@ +Source: mozilla-noscript +Section: web +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Arnaud Renevier +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: unzip +Standards-Version: 3.8.1 +Homepage: http://noscript.net/ +Vcs-Browser: http://git.debian.org/?p=collab-maint/mozilla-noscript.git +Vcs-Git: git://git.debian.org/git/collab-maint/mozilla-noscript.git + +Package: mozilla-noscript +Architecture: all +Depends: iceweasel | firefox | abrowser | seamonkey-browser +Description: Javascript/plugins permissions manager for Iceweasel and Iceape + This extension brings a powerful control over the way external scripts or + embedded programs, such as Java or Flash, are loaded. + . + By blocking scripts and/or plugins, it improves security and disables annoying + behaviours caused by malicious scripts. + . + When a script is blocked, you are notified, and you can unblock a site or a + page, either temporarily or permanently. You can then set a whitelist of + trusted sites based on url or on domain name. --- mozilla-noscript-1.9.2.8.orig/debian/README.Debian-source +++ mozilla-noscript-1.9.2.8/debian/README.Debian-source @@ -0,0 +1,11 @@ +Noscript for Debian +------------------- + +As upstream sources are packaged in a Cross-Platform Install (XPInstall) file, +sources have to be repackaged. Original debian package was created from version +1.1.4.8.070502 as follows: + + mkdir mozilla-noscript-1.1.4.8.070502 + unzip noscript-1.1.4.8.070502.xpi -d mozilla-noscript-1.1.4.8.070502/ + tar zcvf mozilla-noscript_1.1.4.8.070502.orig.tar.gz mozilla-noscript-1.1.4.8.070502 + -- Arnaud Renevier Thu, 17 May 2007 19:43:42 +0200 --- mozilla-noscript-1.9.2.8.orig/debian/compat +++ mozilla-noscript-1.9.2.8/debian/compat @@ -0,0 +1 @@ +5 --- mozilla-noscript-1.9.2.8.orig/debian/copyright +++ mozilla-noscript-1.9.2.8/debian/copyright @@ -0,0 +1,43 @@ +This package was debianized by Arnaud Renevier on +Wed, 31 Jan 2007 23:44:45 +0100. + +It was downloaded from http://noscript.net/getit + +Upstream Author: Giorgio Maone + +Files: * +Copyright © 2004-2007 Giorgio Maone +License: GPL-2+ + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +Files: debian/* +Copyright: © 2007-2008 Arnaud Renenevier +License: GPL-2+ + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. --- mozilla-noscript-1.9.2.8.orig/debian/mozilla-noscript.install +++ mozilla-noscript-1.9.2.8/debian/mozilla-noscript.install @@ -0,0 +1,8 @@ +install.rdf usr/share/mozilla-extensions/noscript/ +chrome.manifest usr/share/mozilla-extensions/noscript/ +chrome/noscript.jar usr/share/mozilla-extensions/noscript/chrome/ +components/noscriptService.js usr/share/mozilla-extensions/noscript/components/ +defaults/preferences/noscript.js usr/share/mozilla-extensions/noscript/defaults/preferences/ +mozilla.cfg usr/share/doc/mozilla-noscript/examples/ +debian/chrome.d usr/share/mozilla-extensions/noscript/ +debian/mozilla-noscript.js usr/share/iceweasel/greprefs/ --- mozilla-noscript-1.9.2.8.orig/debian/watch +++ mozilla-noscript-1.9.2.8/debian/watch @@ -0,0 +1,5 @@ +# Compulsory line, this is a version 3 file +version=3 + +http://noscript.net/getit \ + http://software.informaction.com/data/releases/noscript-([\d\.]+).xpi --- mozilla-noscript-1.9.2.8.orig/debian/chrome.d +++ mozilla-noscript-1.9.2.8/debian/chrome.d @@ -0,0 +1,50 @@ +content,install,url,jar:resource:/chrome/noscript.jar!/content/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/content/noscript/en-US/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/de-DE/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/fr-FR/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/ar/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/fi-FI/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/ko-KR/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/id-ID/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/it-IT/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/nl-NL/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/pt-PT/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/pt-BR/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/ca-AD/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/ja-JP/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/pl-PL/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/cs-CZ/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/tr-TR/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/ru-RU/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/zh-CN/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/zh-TW/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/nb-NO/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/bg-BG/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/ro-RO/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/sk-SK/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/sl-SI/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/hu-HU/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/mk-MK/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/da-DK/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/sv-SE/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/he-IL/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/uk-UA/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/th-TH/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/fa-IR/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/el-GR/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/en-GB/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/hr-HR/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/be-BY/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/vi-VN/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/gl-ES/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/km-KH/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/lt-LT/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/sr-YU/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/es-ES/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/es-AR/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/et-EE/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/cy-GB/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/sr-RS/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/ms-MY/noscript/ +locale,install,url,jar:resource:/chrome/noscript.jar!/locale/kk-KZ/noscript/ +skin,install,url,jar:resource:/chrome/noscript.jar!/skin/classic/noscript/ --- mozilla-noscript-1.9.2.8.orig/debian/mozilla-noscript.links +++ mozilla-noscript-1.9.2.8/debian/mozilla-noscript.links @@ -0,0 +1,6 @@ +usr/share/mozilla-extensions/noscript/ usr/lib/firefox-addons/extensions/{73a6fe31-595d-460b-a920-fcc0f8843232} +usr/share/mozilla-extensions/noscript/ usr/lib/iceweasel/extensions/{73a6fe31-595d-460b-a920-fcc0f8843232} +usr/share/mozilla-extensions/noscript/chrome/noscript.jar usr/share/seamonkey/chrome/noscript.jar +usr/share/mozilla-extensions/noscript/chrome.d var/lib/seamonkey/chrome.d/20noscript +usr/share/mozilla-extensions/noscript/components/noscriptService.js usr/lib/seamonkey/components/noscriptService.js +usr/share/mozilla-extensions/noscript/defaults/preferences/noscript.js usr/share/seamonkey/defaults/pref/noscript.js --- mozilla-noscript-1.9.2.8.orig/debian/postrm +++ mozilla-noscript-1.9.2.8/debian/postrm @@ -0,0 +1,42 @@ +#! /bin/sh +# postrm script for mozilla-noscript +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' overwrit>r> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +case "$1" in + remove|abort-install) + if which update-seamonkey-chrome 2> /dev/null > /dev/null + then + update-seamonkey-chrome + fi + ;; + purge|upgrade|failed-upgrade|abort-upgrade|disappear) + + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- mozilla-noscript-1.9.2.8.orig/debian/mozilla-noscript.js +++ mozilla-noscript-1.9.2.8/debian/mozilla-noscript.js @@ -0,0 +1 @@ +pref("extensions.{73a6fe31-595d-460b-a920-fcc0f8843232}.update.enabled", false); --- mozilla-noscript-1.9.2.8.orig/debian/patches/0001-do-not-redirect-on-upstream-author-page-after-upgrad.patch +++ mozilla-noscript-1.9.2.8/debian/patches/0001-do-not-redirect-on-upstream-author-page-after-upgrad.patch @@ -0,0 +1,25 @@ +From dfe182e1ee74f974b37886e37a8527273b239d52 Mon Sep 17 00:00:00 2001 +From: arno +Date: Mon, 17 Mar 2008 20:54:21 +0100 +Subject: [PATCH 1/2] do not redirect on upstream author page after upgrade + +--- + defaults/preferences/noscript.js | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/defaults/preferences/noscript.js b/defaults/preferences/noscript.js +index fe5ccb0..49fa4f6 100644 +--- a/defaults/preferences/noscript.js ++++ b/defaults/preferences/noscript.js +@@ -78,7 +78,7 @@ pref("noscript.forbidMetaRefresh.notify", true); + pref("noscript.contentBlocker", false); + + pref("noscript.toggle.temp", true); +-pref("noscript.firstRunRedirection", true); ++pref("noscript.firstRunRedirection", false); + + pref("noscript.xss.notify", true); + pref("noscript.xss.notify.subframes", true); +-- +1.6.3 + --- mozilla-noscript-1.9.2.8.orig/debian/patches/0002-remove-websites-from-default-white-list.patch +++ mozilla-noscript-1.9.2.8/debian/patches/0002-remove-websites-from-default-white-list.patch @@ -0,0 +1,25 @@ +From cbcc44623bafa516f86a6a6f83c5bc5bfb300bd8 Mon Sep 17 00:00:00 2001 +From: arno +Date: Mon, 17 Mar 2008 20:55:19 +0100 +Subject: [PATCH 2/2] remove websites from default white list + +--- + defaults/preferences/noscript.js | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/defaults/preferences/noscript.js b/defaults/preferences/noscript.js +index 49fa4f6..a448ddd 100644 +--- a/defaults/preferences/noscript.js ++++ b/defaults/preferences/noscript.js +@@ -27,7 +27,7 @@ pref("noscript.showBlockedObjects", true); + pref("noscript.showTempAllowPage", true); + pref("noscript.showAllowPage", true); + pref("noscript.mandatory", "chrome: about: about:config about:neterror about:certerror about:plugins about:privatebrowsing about:sessionrestore resource:"); +-pref("noscript.default", "about:blank about:credits addons.mozilla.org flashgot.net google.com googlesyndication.com informaction.com yahoo.com yimg.com maone.net noscript.net hotmail.com msn.com passport.com passport.net passportimages.com live.com"); ++pref("noscript.default", "about:blank about:credits"); + pref("noscript.forbidJava", true); + pref("noscript.forbidFlash", true); + pref("noscript.forbidSilverlight", true); +-- +1.6.3 +