Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: scripts/xdg-open

Issue 6735024: Linux: update xdg-utils again, and check in the built versions of the scripts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/xdg-utils/
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « scripts/xdg-mime ('k') | scripts/xdg-open.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/xdg-open
===================================================================
--- scripts/xdg-open (revision 79914)
+++ scripts/xdg-open (working copy)
@@ -307,9 +307,34 @@
elif [ x"$GNOME_DESKTOP_SESSION_ID" != x"" ]; then DE=gnome;
elif `dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.GetNameOwner string:org.gnome.SessionManager > /dev/null 2>&1` ; then DE=gnome;
elif xprop -root _DT_SAVE_MODE 2> /dev/null | grep ' = \"xfce4\"$' >/dev/null 2>&1; then DE=xfce;
- elif [ x"$DESKTOP_SESSION" == x"LXDE" ]; then DE=lxde;
- else DE=""
fi
+
+ if [ x"$DE" = x"" ]; then
+ # fallback to checking $DESKTOP_SESSION
+ case "$DESKTOP_SESSION" in
+ LXDE)
+ DE=lxde;
+ ;;
+ xfce|xfce4)
+ DE=xfce;
+ ;;
+ esac
+ fi
+
+ if [ x"$DE" = x"" ]; then
+ # fallback to uname output for other platforms
+ case "$(uname 2>/dev/null)" in
+ Darwin)
+ DE=darwin;
+ ;;
+ esac
+ fi
+
+ if [ x"$DE" = x"gnome" ]; then
+ # gnome-default-applications-properties is only available in GNOME 2.x
+ # but not in GNOME 3.x
+ which gnome-default-applications-properties 2> /dev/null || DE="gnome3"
+ fi
}
#----------------------------------------------------------------------------
@@ -337,6 +362,23 @@
echo "$first"
}
+last_word()
+{
+ read first rest
+ echo "$rest"
+}
+
+open_darwin()
+{
+ open "$1"
+
+ if [ $? -eq 0 ]; then
+ exit_success
+ else
+ exit_failure_operation_failed
+ fi
+}
+
open_kde()
{
if kde-open -v 2>/dev/null 1>&2; then
@@ -395,12 +437,26 @@
[ -n "$xdg_system_dirs" ] || xdg_system_dirs=/usr/local/share/:/usr/share/
for x in `echo "$xdg_user_dir:$xdg_system_dirs" | sed 's/:/ /g'`; do
- local file="$x/applications/$default"
+ local file
+ # look for both vendor-app.desktop, vendor/app.desktop
+ if [ -r "$x/applications/$default" ]; then
+ file="$x/applications/$default"
+ elif [ -r "$x/applications/`echo $default | sed -e 's|-|/|'`" ]; then
+ file="$x/applications/`echo $default | sed -e 's|-|/|'`"
+ fi
+
if [ -r "$file" ] ; then
command="`grep -E "^Exec(\[[^]=]*])?=" "$file" | cut -d= -f 2- | first_word`"
command_exec=`which $command 2>/dev/null`
+ arguments="`grep -E "^Exec(\[[^]=]*])?=" "$file" | cut -d= -f 2- | last_word`"
+ arguments_exec="`echo $arguments | sed -e 's*%[fFuU]*"'"$1"'"*g'`"
if [ -x "$command_exec" ] ; then
- $command_exec "$1"
+ if echo $arguments | grep -iq '%[fFuU]' ; then
+ eval $command_exec $arguments_exec
+ else
+ eval $command_exec $arguments_exec "$1"
+ fi
+
if [ $? -eq 0 ]; then
exit_success
fi
@@ -536,7 +592,7 @@
open_kde "$url"
;;
- gnome)
+ gnome*)
open_gnome "$url"
;;
« no previous file with comments | « scripts/xdg-mime ('k') | scripts/xdg-open.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698