From b1b605ef4b4bcdb4ae080cb9a596ce39892e58f4 Mon Sep 17 00:00:00 2001 From: tczy Date: Wed, 30 Dec 2009 02:10:35 +0200 Subject: uzbl-tabbed bind '@' fix --- examples/data/uzbl/scripts/uzbl-tabbed | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/data/uzbl/scripts/uzbl-tabbed b/examples/data/uzbl/scripts/uzbl-tabbed index bb9b9a2..d93a3f4 100755 --- a/examples/data/uzbl/scripts/uzbl-tabbed +++ b/examples/data/uzbl/scripts/uzbl-tabbed @@ -1010,7 +1010,7 @@ class UzblTabbed: instance.''' binds = [] - bind_format = r'bind %s = sh "echo \"%s\" > \"%s\""' + bind_format = r'@bind %s = sh "echo \"%s\" > \"%s\""' bind = lambda key, action: binds.append(bind_format % (key, action,\ self.fifo_socket)) -- cgit v1.2.3 From aaa0654ffaf3c081ce8f0721340e61b2a3ce15e6 Mon Sep 17 00:00:00 2001 From: tczy Date: Tue, 29 Dec 2009 18:40:42 +0200 Subject: fixed http://www.uzbl.org/bugs/index.php?do=details&task_id=165 using supplied patch --- examples/data/uzbl/scripts/insert_bookmark.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/data/uzbl/scripts/insert_bookmark.sh b/examples/data/uzbl/scripts/insert_bookmark.sh index e04e6d4..c34e7db 100755 --- a/examples/data/uzbl/scripts/insert_bookmark.sh +++ b/examples/data/uzbl/scripts/insert_bookmark.sh @@ -6,6 +6,8 @@ file=${XDG_DATA_HOME:-$HOME/.local/share}/uzbl/bookmarks which zenity &>/dev/null || exit 2 entry=`zenity --entry --text="Add bookmark. add tags after the '\t', separated by spaces" --entry-text="$6 $7\t"` +exitstatus=$? +if [ $exitstatus -ne 0 ]; then exit $exitstatus; fi url=`echo $entry | awk '{print $1}'` # TODO: check if already exists, if so, and tags are different: ask if you want to replace tags -- cgit v1.2.3 From 2fde92e6a9a8223493c277d20b6aeb39f377d9cd Mon Sep 17 00:00:00 2001 From: Dieter Plaetinck Date: Fri, 1 Jan 2010 17:27:13 +0100 Subject: authors file update --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 7d8d76e..b63132c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -17,6 +17,7 @@ In alphabetical order: (neutralinsomniac) - load_progress = 0 fix (salinasv) - move some variables to heap (sentientswitch) - Cleaned up code. Added some commands. + (tczy) - patches Aaron Griffin (phrakture) - Makefile patches to build on OSX Abel Camarillo (00z) - various portability fixes, such as BSD fixes for Makefile and posix shell scripts Aldrik Dunbar (n30n) - scroll % script -- cgit v1.2.3