Verbatim ")" or "," in the URL will apparently cause problems when Mozilla- derived browsers parse the openURL(...) command (see <http://www-archive.mozilla.org/unix/remote.html> "remote control of unix mozilla"), so percent-escape all "(", ")", and "," in the URL. Also, remove the space before "new-window" as "Commands should /not/ have spaces in them" (see link above). Change-Id: I4b0f3f6a19c94ed9346bb6c55e77d6eae82baba2
97 lines
2.6 KiB
Bash
Executable File
97 lines
2.6 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# This file incorporates work covered by the following license notice:
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed
|
|
# with this work for additional information regarding copyright
|
|
# ownership. The ASF licenses this file to you under the Apache
|
|
# License, Version 2.0 (the "License"); you may not use this file
|
|
# except in compliance with the License. You may obtain a copy of
|
|
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
#
|
|
|
|
# tries to locate the executable specified
|
|
# as first parameter in the user's path.
|
|
which() {
|
|
if [ ! -z "$1" ]; then
|
|
for i in `echo $PATH | sed -e 's/^:/.:/g' -e 's/:$/:./g' -e 's/::/:.:/g' -e 's/:/ /g'`; do
|
|
if [ -x "$i/$1" -a ! -d "$i/$1" ]; then
|
|
echo "$i/$1"
|
|
break;
|
|
fi
|
|
done
|
|
fi
|
|
}
|
|
|
|
# checks for the original mozilla start script(s)
|
|
# and restrict the "-remote" semantics to those.
|
|
run_mozilla() {
|
|
if file "$1" | grep script > /dev/null && grep NPL "$1" > /dev/null; then
|
|
"$1" -remote 'ping()' 2>/dev/null >/dev/null
|
|
if [ $? -eq 2 ]; then
|
|
"$1" "$2" &
|
|
else
|
|
"$1" -remote \
|
|
"openURL($(printf '%s' "$2" \
|
|
| sed -e 's/(/%28/g' -e 's/)/%29/g' -e 's/,/%2C/g'),new-window)" &
|
|
fi
|
|
else
|
|
"$1" "$2" &
|
|
fi
|
|
}
|
|
|
|
# special handling for mailto: uris
|
|
if echo "$1" | grep '^mailto:' > /dev/null; then
|
|
# check for xdg-email
|
|
mailer=`which xdg-email`
|
|
if [ ! -z "$mailer" ]; then
|
|
$mailer "$1" &
|
|
exit 0
|
|
fi
|
|
# check $MAILER variable
|
|
if [ ! -z "$MAILER" ]; then
|
|
$MAILER "$1" &
|
|
exit 0
|
|
fi
|
|
# mozilla derivates may need -remote semantics
|
|
for i in thunderbird mozilla netscape icedove iceape; do
|
|
mailer=`which $i`
|
|
if [ ! -z "$mailer" ]; then
|
|
run_mozilla "$mailer" "$1"
|
|
exit 0
|
|
fi
|
|
done
|
|
# handle all non mozilla mail clients below
|
|
# ..
|
|
else
|
|
# check for xdg-open
|
|
browser=`which xdg-open`
|
|
if [ ! -z "$browser" ]; then
|
|
$browser "$1" &
|
|
exit 0
|
|
fi
|
|
# check $BROWSER variable
|
|
if [ ! -z "$BROWSER" ]; then
|
|
$BROWSER "$1" &
|
|
exit 0
|
|
fi
|
|
# mozilla derivates may need -remote semantics
|
|
for i in chrome seamonkey firefox iceweasel iceape; do
|
|
browser=`which $i`
|
|
if [ ! -z "$browser" ]; then
|
|
run_mozilla "$browser" "$1"
|
|
exit 0
|
|
fi
|
|
done
|
|
# handle all non mozilla browers below
|
|
# ..
|
|
fi
|
|
exit 1
|