aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-05 23:13:07 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-05 23:13:07 +0200
commitffe28435ff741bce2856132d2d3168e659e1a44c (patch)
tree80ac1f54ab4fd6df624c7d47e5a6a0038364ac30 /examples
parent19a3117ec22a735337aceecee76b2627b841d1fc (diff)
link following from Jan Kolkmeier (jouz)
Diffstat (limited to 'examples')
-rw-r--r--examples/configs/sampleconfig9
-rw-r--r--examples/configs/sampleconfig-dev8
2 files changed, 11 insertions, 6 deletions
diff --git a/examples/configs/sampleconfig b/examples/configs/sampleconfig
index 0606fd7..f1c36e5 100644
--- a/examples/configs/sampleconfig
+++ b/examples/configs/sampleconfig
@@ -32,9 +32,6 @@ m = forward
s = stop
r = reload
R = reload_ign_cache
-f = follow_link_here
-F = follow_link_new_tab
-w = follow_link_new_window
+ = zoom_in
- = zoom_out
t = toggle_status
@@ -53,6 +50,12 @@ U = spawn /usr/share/uzbl/examples/scripts/load_url_from_bookmarks.sh
ZZ = exit
S = script alert("hi");
+# Keyboard based link following: work in progress! No C DOM bindings yet, no click() event for hyperlinks so no referrer set..Quite basic but does the job for now...
+#hit f followed by linknumber and ENTER to follow that link
+f_ = script window.location = document.links[%s].href;
+#hit F to show the link numbers
+F = script for (var i=0; i < document.links.length; i++) {var uzblid = 'uzbl_link_hint_';var li = document.links[i];var pre = document.getElementById(uzblid+i);if (pre) {li.removeChild(pre);} else {var hint = document.createElement('div');hint.setAttribute('id',uzblid+i);hint.innerHTML = i;hint.style.display='inline';hint.style.lineHeight='90%';hint.style.backgroundColor='red';hint.style.color='white';hint.style.fontSize='small-xx';hint.style.fontWeight='light';hint.style.margin='0px';hint.style.padding='2px';hint.style.position='absolute';hint.style.textDecoration='none';hint.style.left=li.style.left;hint.style.top=li.style.top;li.insertAdjacentElement('afterBegin',hint);}}
+
[network]
proxy_server =
#values 0-3
diff --git a/examples/configs/sampleconfig-dev b/examples/configs/sampleconfig-dev
index 0cb0699..e77ab7f 100644
--- a/examples/configs/sampleconfig-dev
+++ b/examples/configs/sampleconfig-dev
@@ -32,9 +32,6 @@ m = forward
s = stop
r = reload
R = reload_ign_cache
-f = follow_link_here
-F = follow_link_new_tab
-w = follow_link_new_window
+ = zoom_in
- = zoom_out
t = toggle_status
@@ -53,6 +50,11 @@ U = spawn ./examples/scripts/load_url_from_bookmarks.sh
ZZ = exit
S = script alert("hi");
+# Keyboard based link following: work in progress! No C DOM bindings yet, no click() event for hyperlinks so no referrer set..Quite basic but does the job for now...
+#hit f followed by linknumber and ENTER to follow that link
+f_ = script window.location = document.links[%s].href;
+#hit F to show the link numbers
+F = script for (var i=0; i < document.links.length; i++) {var uzblid = 'uzbl_link_hint_';var li = document.links[i];var pre = document.getElementById(uzblid+i);if (pre) {li.removeChild(pre);} else {var hint = document.createElement('div');hint.setAttribute('id',uzblid+i);hint.innerHTML = i;hint.style.display='inline';hint.style.lineHeight='90%';hint.style.backgroundColor='red';hint.style.color='white';hint.style.fontSize='small-xx';hint.style.fontWeight='light';hint.style.margin='0px';hint.style.padding='2px';hint.style.position='absolute';hint.style.textDecoration='none';hint.style.left=li.style.left;hint.style.top=li.style.top;li.insertAdjacentElement('afterBegin',hint);}}
[network]
# to start a local socks server, do : ssh -fND localhost:8118 localhost
#proxy_server = http://127.0.0.1:8118