From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 3 04:40:29 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB75C16A4CF for ; Tue, 3 Aug 2004 04:40:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9007A43D49 for ; Tue, 3 Aug 2004 04:40:29 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i734eOVi054206 for ; Tue, 3 Aug 2004 04:40:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i734eOuf054205; Tue, 3 Aug 2004 04:40:24 GMT (envelope-from gnats) Resent-Date: Tue, 3 Aug 2004 04:40:24 GMT Resent-Message-Id: <200408030440.i734eOuf054205@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sean Farley Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0871416A4CE; Tue, 3 Aug 2004 04:35:16 +0000 (GMT) Received: from mail.farley.org (farley.org [67.64.95.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43E0043D68; Tue, 3 Aug 2004 04:35:15 +0000 (GMT) (envelope-from root@farley.org) Received: from thor.farley.org (ivb0l8a8y6soax2u@thor.farley.org [IPv6:2002:4340:5fcd:1::5]) by mail.farley.org (8.12.11/8.12.11) with ESMTP id i734ZDXV025376; Mon, 2 Aug 2004 23:35:13 -0500 (CDT) (envelope-from root@thor.farley.org) Received: from thor.farley.org (localhost [127.0.0.1]) by thor.farley.org (8.12.11/8.12.11) with ESMTP id i734ZD0R030010; Mon, 2 Aug 2004 23:35:13 -0500 (CDT) (envelope-from root@thor.farley.org) Received: (from root@localhost) by thor.farley.org (8.12.11/8.12.11/Submit) id i734ZDTU030009; Mon, 2 Aug 2004 23:35:13 -0500 (CDT) (envelope-from root) Message-Id: <200408030435.i734ZDTU030009@thor.farley.org> Date: Mon, 2 Aug 2004 23:35:13 -0500 (CDT) From: Sean Farley To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: gnome@FreeBSD.org Subject: ports/69937: [PATCH] www/mozilla: Work-around for Mozilla bug 242123 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Aug 2004 04:40:29 -0000 >Number: 69937 >Category: ports >Synopsis: [PATCH] www/mozilla: Work-around for Mozilla bug 242123 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 03 04:40:24 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Sean Farley >Release: FreeBSD 4.10-STABLE i386 >Organization: >Environment: System: FreeBSD thor.farley.org 4.10-STABLE FreeBSD 4.10-STABLE #1: Mon Aug 2 16:14:48 CDT >Description: Running the mozilla script with a URL lacking the closing slash can aggravate Mozilla bug 242123 (http://bugzilla.mozilla.org/show_bug.cgi?id=242123). Changes: 1. Removed the space after the comma for the openURL() REMOTE_COMMAND. 2. Replaced mixed tab/spaces with tabs. Mozilla 1.8 should have this fixed. Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.50 >How-To-Repeat: >Fix: --- mozilla-1.7.1,2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/mozilla.orig/files/mozilla.sh /usr/ports/www/mozilla/files/mozilla.sh --- /usr/ports/www/mozilla.orig/files/mozilla.sh Sat Oct 11 15:30:54 2003 +++ /usr/ports/www/mozilla/files/mozilla.sh Mon Aug 2 23:07:17 2004 @@ -8,19 +8,19 @@ case $1 in -browser) - REMOTE_COMMAND="xfeDoCommand (openBrowser)" + REMOTE_COMMAND="xfeDoCommand (openBrowser)" ;; -mail) - REMOTE_COMMAND="xfeDoCommand (openInbox)" + REMOTE_COMMAND="xfeDoCommand (openInbox)" ;; -compose) - REMOTE_COMMAND="xfeDoCommand (composeMessage)" + REMOTE_COMMAND="xfeDoCommand (composeMessage)" ;; -*) - exec ./$MOZILLA_EXEC "$@" + exec ./$MOZILLA_EXEC "$@" ;; *) - REMOTE_COMMAND="openURL($@, $LOCATION)" + REMOTE_COMMAND="openURL($@,$LOCATION)" ;; esac @@ -30,4 +30,3 @@ # no existing process exec ./$MOZILLA_EXEC "$@" - --- mozilla-1.7.1,2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: