aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/follow.sh
Commit message (Collapse)AuthorAge
* Merge remote-tracking branch 'mathstuf/dev/follow-selection'Gravatar Brendan Taylor2012-04-22
|\
* | Fix follow in new window with url containing %Gravatar Michal 'vorner' Vaner2012-04-14
| | | | | | | | | | | | | | The script printed the URL through printf, which interpreted the % as control character. This led to the script not working and printing errors like "%C is not valid formatting character". Using echo should be safe.
| * Do nothing if the URI is emptyGravatar Ben Boeckel2012-03-26
| |
| * Clear the KEYCMD before doing the actionGravatar Ben Boeckel2012-03-26
|/
* don't use window.open in follow.js.Gravatar Brendan Taylor2011-11-23
| | | | | it's slow, forces you to turn on javascript_windows = 1, and on some systems results in multiple new windows/tabs.
* fix following input[type=email], [type=search], etc.Gravatar Brendan Taylor2011-09-26
|
* on Ubuntu, properly clear keycmd when a link is selected using follow.shGravatar Brendan Taylor2011-09-05
| | | | dash treats a 'shift' when there are no more arguments as an error.
* Merge remote-tracking branch 'mathstuf/dev/improve-follow' into experimentalGravatar Brendan Taylor2011-07-13
|\
| * Escape '@' when following a linkGravatar Ben Boeckel2011-06-26
| |
* | Merge remote-tracking branch 'keis/focus-event' into experimentalGravatar Brendan Taylor2011-05-09
|\ \ | |/ |/| | | | | | | Conflicts: src/callbacks.c src/callbacks.h
| * use focus_element instead of form activeGravatar keis2011-04-29
| |
* | Factor out the clearing of the labelsGravatar Ben Boeckel2011-04-20
| |
* | Add binding to copy a link to the clipboardGravatar Ben Boeckel2011-04-20
| |
* | Handle returned uris in the follow.sh wrapperGravatar Ben Boeckel2011-04-13
|/
* Merge branch 'experimental' into dev/fix-shell-scriptsGravatar Brendan Taylor2011-03-13
|\ | | | | | | | | | | | | Conflicts: examples/config/config examples/data/scripts/follow.sh examples/data/scripts/formfiller.sh
* | Allow the variable for follow.sh to be changedGravatar Ben Boeckel2011-03-11
| |
* | Fix indentationGravatar Ben Boeckel2011-03-10
| |
* | Use print rather than printfGravatar Ben Boeckel2011-03-10
| | | | | | | | | | printf chokes on $(printf "%DD") which may very well come up in an encoded URL. Avoid that with the print alias.
* | Use printf rather than echoGravatar Ben Boeckel2011-03-10
| |
* | Use 4 space indentation for consistencyGravatar Ben Boeckel2011-03-10
| |
* | Add padding inside of bracesGravatar Ben Boeckel2011-03-10
| |
* | Remove the use of positional argumentsGravatar Ben Boeckel2011-03-10
| | | | | | | | Positional arguments should be given meaningful names.
* | Quote variables which may contain spacesGravatar Ben Boeckel2011-03-10
| |
| * update config and follow.sh to use new follow.jsGravatar keis2011-02-27
| |
| * clear keycmd after following link in follow.shGravatar keis2011-01-23
|/
* remove positional argument support from examplesGravatar Brendan Taylor2010-12-30
|
* positional arguments still exist: fix download.sh, follow.sh and the formfillerGravatar Brendan Taylor2010-12-01
|
* use the new $UZBL_* env vars exclusivelyGravatar Brendan Taylor2010-11-29
|
* make follow.sh use the utils scripts, restore mode changing functionalityGravatar Brendan Taylor2010-11-24
|
* simplifiy follow.sh.Gravatar Paweł Zuzelski2010-06-08
| | | | Now it executes less processes and works a bti faster.
* more events from follow scriptGravatar Paweł Zuzelski2010-03-28
| | | | | | emit FORM_ACTIVE on TEXT, PASSWORD, TEXTAREA and SELECT reset mode on other INPUT elements (checkboxes, radiobuttons etc) Additionaly: does not invoke item.select() on <input type='FILE'> elements.
* use same marker in follow.{sh,js}.Gravatar Paweł Zuzelski2010-03-28
| | | | Pointed out by Paul Tomak <satherot@gmail.com>, thx.
* chmod a+x follow.shGravatar Paweł Zuzelski2010-03-28
|
* emit FORM_ACTIVE, when form element follow.js'edGravatar Paweł Zuzelski2010-03-28
Due to Uzbl removal it is no longer possible to emit event from js script. So follow.js does not emit FORM_ACTIVE event, when user selects form element using follow.js. Workaround for that is to run follow.js from shell script, set some global variable and next read this variable from shell script.