remove files, should have happened during previous merge but whatever
authorDieter Plaetinck <dieter@plaetinck.be>
Mon, 27 Apr 2009 19:26:42 +0000 (21:26 +0200)
committerDieter Plaetinck <dieter@plaetinck.be>
Mon, 27 Apr 2009 19:26:42 +0000 (21:26 +0200)
extra/download.sh [deleted file]
extra/history.sh [deleted file]
extra/insert_bookmark.sh [deleted file]
extra/load_url_from_bookmarks.sh [deleted file]
extra/load_url_from_history.sh [deleted file]
sampleconfig [deleted file]

diff --git a/extra/download.sh b/extra/download.sh
deleted file mode 100755 (executable)
index ff3d8db..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/bash
-wget $5
diff --git a/extra/history.sh b/extra/history.sh
deleted file mode 100755 (executable)
index afad942..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash
-#TODO: strip 'http://' part
-echo "$7 $5" >> /tmp/uzbl.history
diff --git a/extra/insert_bookmark.sh b/extra/insert_bookmark.sh
deleted file mode 100755 (executable)
index 083a4b4..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/bash
-file=bookmarks
-
-which zenity &>/dev/null || exit 2
-
-entry=`zenity --entry --text="Add bookmark. add tags at the end, separated by commas" --entry-text="$5"`
-url=`awk '{print $1}' <<< $entry`
-# TODO: check if already exists, if so, and tags are different: ask if you want to replace tags
-echo "$entry" >> $file
diff --git a/extra/load_url_from_bookmarks.sh b/extra/load_url_from_bookmarks.sh
deleted file mode 100755 (executable)
index 52e14e2..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-file=bookmarks
-goto=`awk '{print $1}' $history_file | dmenu` #NOTE: it's the job of the script that inserts bookmarks to make sure there are no dupes.
-[ -n "$goto" ] && echo "uri $goto" > $4
diff --git a/extra/load_url_from_history.sh b/extra/load_url_from_history.sh
deleted file mode 100755 (executable)
index 559e257..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-history_file=/tmp/uzbl.history
-goto=`awk '{print $3}' $history_file | sort | uniq | dmenu`
-[ -n "$goto" ] && echo "uri $goto" > $4
diff --git a/sampleconfig b/sampleconfig
deleted file mode 100644 (file)
index 17bacd1..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-
-# example uzbl config. in a real config, we should obey the xdg spec
-
-# all keys in the behavior group are optional.  if not set, the corresponding behavior is disabed.
-# bindings_internal denote keys to trigger actions internally in uzbl
-# bindings_external denote keys to trigger scripts outside uzbl
-
-# keyboard behavior is vimstyle by default (all actions -> 1 key). set
-# always_insert_mode to always be in insert mode and disable going out of it.
-# if you do this, make sure you've set a modkey so you can reach the actions
-# from insert mode by combining them with the modkey
-
-[behavior]
-history_handler = /bin/bash ./extra/history.sh
-download_handler = /bin/bash ./extra/download.sh
-fifo_dir = /tmp
-always_insert_mode = 0
-modkey = Mod1
-show_status = 1
-status_top = 0
-
-[bindings_internal]
-back = b
-forward = m
-stop = s
-refresh = r
-reload = R
-home = h
-follow_link_here = f
-follow_link_new_tab = F
-follow_link_new_window = w
-zoom_in = +
-zoom_out = -
-toggle_status = t
-
-[bindings_external]
-/bin/bash ./extra/insert_bookmark.sh = B
-/bin/bash ./extra/load_url_from_history.sh = u
-/bin/bash ./extra/load_url_from_bookmarks.sh = U
-
-[network]