pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc update ns-remote to 1.11:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4ca1d65fe0d4
branches:  trunk
changeset: 496627:4ca1d65fe0d4
user:      abs <abs%pkgsrc.org@localhost>
date:      Wed Jul 06 19:13:24 2005 +0000

description:
update ns-remote to 1.11:
    ns-remote can handle URL encoded ','s in URLs

diffstat:

 doc/CHANGES                 |  3 ++-
 www/ns-remote/Makefile      |  4 ++--
 www/ns-remote/files/ns-open |  7 ++-----
 3 files changed, 6 insertions(+), 8 deletions(-)

diffs (51 lines):

diff -r 640c9eaf021d -r 4ca1d65fe0d4 doc/CHANGES
--- a/doc/CHANGES       Wed Jul 06 18:41:42 2005 +0000
+++ b/doc/CHANGES       Wed Jul 06 19:13:24 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.10538 2005/07/06 13:35:22 minskim Exp $
+$NetBSD: CHANGES,v 1.10539 2005/07/06 19:14:14 abs Exp $
 
 Changes to the packages collection and infrastructure in 2005:
 
@@ -3110,3 +3110,4 @@
        Updated textproc/flyspell to 1.7inb1 [wiz 2005-07-05]
        Updated databases/postgresql80-client to 8.0.3nb1 [grant 2005-07-05]
        Updated math/mathomatic to 12.4.4 [minskim 2005-07-06]
+       Updated www/ns-remote to 1.11 [abs 2005-07-06]
diff -r 640c9eaf021d -r 4ca1d65fe0d4 www/ns-remote/Makefile
--- a/www/ns-remote/Makefile    Wed Jul 06 18:41:42 2005 +0000
+++ b/www/ns-remote/Makefile    Wed Jul 06 19:13:24 2005 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.26 2005/06/17 03:50:41 jlam Exp $
+# $NetBSD: Makefile,v 1.27 2005/07/06 19:13:24 abs Exp $
 
 DISTNAME=      ns-remote
-PKGNAME=       ns-remote-1.10
+PKGNAME=       ns-remote-1.11
 CATEGORIES=    www
 MASTER_SITES=  http://home.netscape.com/newsref/std/
 DISTFILES=     remote.c vroot.h
diff -r 640c9eaf021d -r 4ca1d65fe0d4 www/ns-remote/files/ns-open
--- a/www/ns-remote/files/ns-open       Wed Jul 06 18:41:42 2005 +0000
+++ b/www/ns-remote/files/ns-open       Wed Jul 06 19:13:24 2005 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: ns-open,v 1.13 2005/03/23 11:40:34 abs Exp $
+# $NetBSD: ns-open,v 1.14 2005/07/06 19:13:24 abs Exp $
 #
 # Simple script to open a URL in Netscape, starting a new process if necessary
 # If a netscape process is not running it will look for a valid netscape
@@ -60,11 +60,8 @@
        -* ) # Unrecognised option
            START_NEW_NETSCAPE=1
            ;;
-       *,* ) # ns-remote cannot handle a URL encoded comma (XChangeProperty)
-           START_NEW_NETSCAPE=1
-           ;;
        *)
-           URL=`echo $a | sed -e 's/"/%22/g' -e 's/\`/%60/g`
+           URL=`echo $a | sed -e 's/"/%22/g' -e 's/\`/%60/g -e 's/,/%2c/'`
            break;
            ;;
     esac



Home | Main Index | Thread Index | Old Index