summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2005-07-06 19:13:24 +0000
committerabs <abs@pkgsrc.org>2005-07-06 19:13:24 +0000
commit9d951e01a0c245a7c84e71118259b10730ab81e5 (patch)
tree46aedc06c3d4e4d994ba136384c46d167f45f6a7
parent184422b9a4fd45ec3d8b561d8d32c84b0ea60a79 (diff)
downloadpkgsrc-9d951e01a0c245a7c84e71118259b10730ab81e5.tar.gz
update ns-remote to 1.11:
ns-remote can handle URL encoded ','s in URLs
-rw-r--r--doc/CHANGES3
-rw-r--r--www/ns-remote/Makefile4
-rwxr-xr-xwww/ns-remote/files/ns-open7
3 files changed, 6 insertions, 8 deletions
diff --git a/doc/CHANGES b/doc/CHANGES
index abb21dd23cc..e88cc2fd31f 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -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 @@ Changes to the packages collection and infrastructure in 2005:
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 --git a/www/ns-remote/Makefile b/www/ns-remote/Makefile
index da47148c052..c7064182016 100644
--- a/www/ns-remote/Makefile
+++ b/www/ns-remote/Makefile
@@ -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 --git a/www/ns-remote/files/ns-open b/www/ns-remote/files/ns-open
index 9f131fe99ab..667d8c16d75 100755
--- a/www/ns-remote/files/ns-open
+++ b/www/ns-remote/files/ns-open
@@ -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 @@ do
-* ) # 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