Running Dropbox (but this may be true for many other applications!) I was getting this error message when the menu entry of the system icon "Run the Dropbox web site" was clicked:
jamesbond found a solution to this issue while modifying/adding lines into Jemimah's xdg-open.<?xml version="1.0"?>
<env:Envelope xmlns:env="http://www.w3.org/2001/12/soap-envelope"><env:Body xmlns:rox="http://rox.sourceforge.net/SOAP/ROX-Filer"><env:Fault xmlns:rpc="http://www.w3.org/2001/12/soap-rpc" xmlns:env="http://www.w3.org/2001/12/soap-envelope ... 2b87a65332 not found</faultstring></env:Fault></env:Body></env:Envelope>
Choice A:
Code: Select all
#!/bin/bash
#this script created by Jemimah. see: http://murga-linux.com/puppy/viewtopic.php?t=63400&start=150
#110115 xdg-open used to be a symlink to defaulthandler.
case "$1" in
'') exit
;;
*://*) exec rox -U "${1%#*}"
;;
*@*.*) exec rox -U "mailto:${1}"
;;
*) exec rox "$1"
;;
esac
Code: Select all
#!/bin/bash
#this script created by Jemimah. see: http://murga-linux.com/puppy/viewtopic.php?t=63400&start=150
#110115 xdg-open used to be a symlink to defaulthandler.
case "$1" in
'') exit
;;
*://*) exec $DEFAULTBROWSER "$1"
;;
*@*.*) exec rox -U "mailto:${1}"
;;
*) exec rox "$1"
;;
esac
While I'm at it:
In the original Woof-CE Jemimah's script (https://github.com/puppylinux-woof-CE/w ... n/xdg-open) it seems there is an anomaly:
Cordialement.#!/bin/sh
#this script created by Jemimah. see: http://murga-linux.com/puppy/viewtopic. ... &start=150
#110115 xdg-open used to be a symlink to defaulthandler.
#!/bin/bash
[...]