Your message dated Mon, 22 Aug 2005 07:17:20 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#321823: fixed in mozilla-firefox 1.0.6-3
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 7 Aug 2005 18:13:39 +0000
>From [EMAIL PROTECTED] Sun Aug 07 11:13:38 2005
Return-path: <[EMAIL PROTECTED]>
Received: from master.debian.org [146.82.138.7]
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E1peU-00037f-00; Sun, 07 Aug 2005 11:13:38 -0700
Received: from (lightspeed.linuxsecured.net) [86.125.53.131]
by master.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1E1peT-00018X-00; Sun, 07 Aug 2005 13:13:37 -0500
Content-Type: multipart/mixed; boundary="===============1112875856=="
MIME-Version: 1.0
From: Torok Edwin <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: mozilla-firefox: Firefox automatic "I'm feeling lucky" search when
invalid
URL entered shouldn't be default
X-Mailer: reportbug 3.15
Date: Sun, 07 Aug 2005 21:13:35 +0300
X-Debbugs-Cc: [EMAIL PROTECTED]
Message-Id: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-9.0 required=4.0 tests=BAYES_00,HAS_PACKAGE,
OUR_MTA_MSGID,X_DEBBUGS_CC autolearn=ham
version=2.60-bugs.debian.org_2005_01_02
This is a multi-part MIME message sent by reportbug.
--===============1112875856==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: mozilla-firefox
Version: 1.0.6-2
Severity: normal
Tags: patch
This is bugzilla bug #275957
Brief summary:
When a user enters an invalid URL in the location bar, an automatic
Google Search is performed, and the user is taken to the first search
result (I'm feeling lucky), without informing the user what has
happened or asking for his consent.
This shouldn't be default behaviour: the user should be informed what
has happened by a popup window, or by not performing the automatic
redirection.
I included a patch that changes the default "I'm feelink lucky" search
to a simple google search.
Any user can change this after installing firefox, all he has to do is
enter about:config in the location bar, and change keyword.URL.
See the bugzilla report for more info
Please review this behavior and decide upon an appropiate action for
such a situation. Thanks
Thanks
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Versions of packages mozilla-firefox depends on:
ii debianutils 2.14.1 Miscellaneous utilities specific t
ii fontconfig 2.3.2-1 generic font configuration library
ii libatk1.0-0 1.10.1-2 The ATK accessibility toolkit
ii libc6 2.3.2.ds1-22 GNU C Library: Shared libraries an
ii libfontconfig1 2.3.2-1 generic font configuration library
ii libfreetype6 2.1.10-1 FreeType 2 font engine, shared lib
ii libgcc1 1:4.0.1-3 GCC support library
ii libglib2.0-0 2.6.6-1 The GLib library of C routines
ii libgtk2.0-0 2.6.8-1 The GTK+ graphical user interface
ii libidl0 0.8.5-1 library for parsing CORBA IDL file
ii libjpeg62 6b-10 The Independent JPEG Group's JPEG
ii libkrb53 1.3.6-4 MIT Kerberos runtime libraries
ii libpango1.0-0 1.8.2-1 Layout and rendering of internatio
ii libpng12-0 1.2.8rel-1 PNG library - runtime
ii libstdc++6 4.0.1-3 The GNU Standard C++ Library v3
ii libx11-6 6.8.2.dfsg.1-4 X Window System protocol client li
ii libxext6 6.8.2.dfsg.1-4 X Window System miscellaneous exte
ii libxft2 2.1.7-1 FreeType-based font drawing librar
ii libxinerama1 6.8.2.dfsg.1-4 X Window System multi-head display
ii libxp6 6.8.2.dfsg.1-4 X Window System printing extension
ii libxt6 6.8.2.dfsg.1-4 X Toolkit Intrinsics
ii psmisc 21.6-1 Utilities that use the proc filesy
ii xlibs 6.8.2.dfsg.1-4 X Window System client libraries m
ii zlib1g 1:1.2.3-1 compression library - runtime
mozilla-firefox recommends no packages.
-- no debconf information
--===============1112875856==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="mozilla_lucky.patch"
diff -u mozilla-firefox-1.0.6/browser/app/profile/firefox.js
mozilla-firefox-1.0.6/browser/app/profile/firefox.js
--- mozilla-firefox-1.0.6/browser/app/profile/firefox.js
+++ mozilla-firefox-1.0.6/browser/app/profile/firefox.js
@@ -123,7 +123,7 @@
pref("xpinstall.whitelist.add.103", "addons.mozilla.org");
pref("keyword.enabled", true);
-pref("keyword.URL",
"http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=");
+pref("keyword.URL", "http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=");
pref("general.skins.selectedSkin", "classic/1.0");
pref("general.useragent.vendor", "Firefox");
diff -u mozilla-firefox-1.0.6/debian/changelog
mozilla-firefox-1.0.6/debian/changelog
--- mozilla-firefox-1.0.6/debian/changelog
+++ mozilla-firefox-1.0.6/debian/changelog
@@ -1,3 +1,12 @@
+mozilla-firefox (1.0.6-3) unstable; urgency=low
+
+ * browser/app/profile/firefox.js: removed the "I'm feeling lucky" from the
+ keyword.URL, so now if you enter search terms in the address bar you will
+ be presented with search results and not taken to the first result
+
+
+ -- Torok Edwin <[EMAIL PROTECTED]> Sun, 7 Aug 2005 09:54:22 +0300
+
mozilla-firefox (1.0.6-2) unstable; urgency=medium
* modules/libpr0n/src/imgLoader.cpp, modules/libpr0n/src/imgLoader.h:
--===============1112875856==--
---------------------------------------
Received: (at 321823-close) by bugs.debian.org; 22 Aug 2005 14:24:11 +0000
>From [EMAIL PROTECTED] Mon Aug 22 07:24:11 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E7D72-00069X-00; Mon, 22 Aug 2005 07:17:20 -0700
From: Eric Dorland <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#321823: fixed in mozilla-firefox 1.0.6-3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 22 Aug 2005 07:17:20 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
Source: mozilla-firefox
Source-Version: 1.0.6-3
We believe that the bug you reported is fixed in the latest version of
mozilla-firefox, which is due to be installed in the Debian FTP archive:
mozilla-firefox-dom-inspector_1.0.6-3_i386.deb
to pool/main/m/mozilla-firefox/mozilla-firefox-dom-inspector_1.0.6-3_i386.deb
mozilla-firefox-gnome-support_1.0.6-3_i386.deb
to pool/main/m/mozilla-firefox/mozilla-firefox-gnome-support_1.0.6-3_i386.deb
mozilla-firefox_1.0.6-3.diff.gz
to pool/main/m/mozilla-firefox/mozilla-firefox_1.0.6-3.diff.gz
mozilla-firefox_1.0.6-3.dsc
to pool/main/m/mozilla-firefox/mozilla-firefox_1.0.6-3.dsc
mozilla-firefox_1.0.6-3_i386.deb
to pool/main/m/mozilla-firefox/mozilla-firefox_1.0.6-3_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Eric Dorland <[EMAIL PROTECTED]> (supplier of updated mozilla-firefox package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Mon, 22 Aug 2005 01:20:28 -0400
Source: mozilla-firefox
Binary: mozilla-firefox mozilla-firefox-gnome-support
mozilla-firefox-dom-inspector
Architecture: source i386
Version: 1.0.6-3
Distribution: unstable
Urgency: low
Maintainer: Eric Dorland <[EMAIL PROTECTED]>
Changed-By: Eric Dorland <[EMAIL PROTECTED]>
Description:
mozilla-firefox - lightweight web browser based on Mozilla
mozilla-firefox-dom-inspector - tool for inspecting the DOM of pages in
Mozilla Firefox
mozilla-firefox-gnome-support - Support for Gnome in Mozilla Firefox
Closes: 321823 322617
Changes:
mozilla-firefox (1.0.6-3) unstable; urgency=low
.
* debian/rules, nsprpub/pr/include/md/_linux.cfg,
security/coreconf/Linux.mk: Apply patch from Andreas Jochens to allow
ppc64 builds. (Closes: #322617)
* debian/mozilla-firefox.prerm: Move -depth option to find to suppress
warnings. Thanks Mike Hommey.
* debian/presubj: Have bugzilla bug URL point to a page where you can
enter a bug.
* browser/app/profile/firefox.js: removed the "I'm feeling lucky" from
the keyword.URL, so now if you enter search terms in the address bar
you will be presented with search results and not taken to the first
result. Thanks Torok Edwin. (Closes: #321823)
Files:
35e8d1835a6ddd9c944e9dd025104bfb 972 web optional mozilla-firefox_1.0.6-3.dsc
072de5089539e0afbb8d256af8f05fed 231482 web optional
mozilla-firefox_1.0.6-3.diff.gz
23db957e30c1a6ae66d5071f7d48495d 7621056 web optional
mozilla-firefox_1.0.6-3_i386.deb
92638ccded005f22f285e40427c77d24 155064 web optional
mozilla-firefox-dom-inspector_1.0.6-3_i386.deb
ab579c838efb21423ceedf09b1652606 52908 web optional
mozilla-firefox-gnome-support_1.0.6-3_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDCdyOYemOzxbZcMYRAmQ4AKCyE6dbevPJm/+M5ip2Mw2BxJDh8gCdH3bN
XU4fpjVxfqC7GVJbV9QIQOA=
=P+HR
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]