--
"If you wish to make an apple pie truly from scratch, you must first invent the universe." -- Carl Sagan
Jahagirdar .V.S
IC Design Engineer , Texas Instruments (India) Ltd.
Ph (91)080-5099129(O)
I've just folowed-up your msg to me, in order to see it through mutt,
then through urlview, and it's working perfectly.
Just one thing, I remember having upgraded this urlview script recently.
Do you me to send you my new version ?
--
Nicolas Ecarnot
L'utilite, c'est avoir un telephone.
Le luxe, c'est en avoir deux.
L'opulence, c'est en avoir trois et
le paradis c'est de ne pas en avoir !
-- Doug Larson
this is my .urlview:
COMMAND netscape.sh %s
and netscape.sh:
#!/bin/sh
netscape -remote "openURL($1)"
--
http://kldp.org/~eunjea/
GnuPG fingerprint: 08C9 2D3F 91B2 D395 2EFF 4C33 544C 321C E194 91CF
nicolas.p...@ecarnot.pas.de.spam.net (Nicolas Ecarnot) writes:
--
- "Advances are made by answering questions. Discoveries are made by questioning answers..."
use shell script from urlview tarball (url_handler.sh) or make simple
shell script like this:
#!/bin/sh
netscape -remote "openURL($1)"
and change your .urlview like this:
COMMAND url_handler.sh %s
or if you have gnome you can use this:
COMMAND gnome-moz-remote %s
i came across the same problem the other day. it seems to be a problem
with bash, not so much with urlview. i solved it in the following
way. my ~/.urlview looks like this:
----------
REGEXP (((https?|ftp|gopher)://|(mailto|file|news):)[^' \
<>"]+|(www|web|w3).[-a-z0-9.]+)[^' .,;<>":]
COMMAND /home/joost/bin/urlhandler.sh %s
----------
the REGEXP expression should be on one line, but slrn wants me to wrap
it. (remove the backslash.) note that it's the REGEXP that urlview
provides. i did not modidy it.
the script urlhandler.sh that urlview calls is not the one that is
supplied with urlview, but one i made myself:
----------
#!/bin/bash
exec /usr/bin/opera -remote "openURL($@, new-window)"
----------
this one's for opera, ns and other browsers can be called in the same
way.
HTH
--
Joost Kremers
Life has its moments