Index: scripts/xdg-settings =================================================================== RCS file: /cvs/portland/portland/xdg-utils/scripts/xdg-settings,v retrieving revision 1.3 diff -u -r1.3 xdg-settings --- scripts/xdg-settings 12 Oct 2009 10:15:32 -0000 1.3 +++ scripts/xdg-settings 27 Jan 2010 19:51:44 -0000 @@ -635,13 +635,13 @@ gconftool-2 --type bool --set /desktop/gnome/applications/browser/nremote true # Set the handler for HTTP and HTTPS. for protocol in http https; do - gconftool-2 --type string --set /desktop/gnome/url-handlers/$protocol/command "$binary" + gconftool-2 --type string --set /desktop/gnome/url-handlers/$protocol/command "$binary %s" gconftool-2 --type bool --set /desktop/gnome/url-handlers/$protocol/needs_terminal false gconftool-2 --type bool --set /desktop/gnome/url-handlers/$protocol/enabled true done # Set the handler for about: and unknown URL types. for protocol in about unknown; do - gconftool-2 --type string --set /desktop/gnome/url-handlers/$protocol/command "$binary" + gconftool-2 --type string --set /desktop/gnome/url-handlers/$protocol/command "$binary %s" done } Index: scripts/xdg-settings.in =================================================================== RCS file: /cvs/portland/portland/xdg-utils/scripts/xdg-settings.in,v retrieving revision 1.4 diff -u -r1.4 xdg-settings.in --- scripts/xdg-settings.in 12 Oct 2009 10:15:33 -0000 1.4 +++ scripts/xdg-settings.in 27 Jan 2010 19:51:44 -0000 @@ -327,13 +327,13 @@ gconftool-2 --type bool --set /desktop/gnome/applications/browser/nremote true # Set the handler for HTTP and HTTPS. for protocol in http https; do - gconftool-2 --type string --set /desktop/gnome/url-handlers/$protocol/command "$binary" + gconftool-2 --type string --set /desktop/gnome/url-handlers/$protocol/command "$binary %s" gconftool-2 --type bool --set /desktop/gnome/url-handlers/$protocol/needs_terminal false gconftool-2 --type bool --set /desktop/gnome/url-handlers/$protocol/enabled true done # Set the handler for about: and unknown URL types. for protocol in about unknown; do - gconftool-2 --type string --set /desktop/gnome/url-handlers/$protocol/command "$binary" + gconftool-2 --type string --set /desktop/gnome/url-handlers/$protocol/command "$binary %s" done }