aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts
Commit message (Collapse)AuthorAge
...
| * | | Migrate to using the editor util scriptGravatar Ben Boeckel2010-10-02
| | | |
| * | | Migrate to using the dmenu util scriptGravatar Ben Boeckel2010-10-02
| | | |
| * | | Migrate to using uzbl-args util scriptGravatar Ben Boeckel2010-10-02
| | | |
| * | | Migrate to using uzbl-dir util scriptGravatar Ben Boeckel2010-10-02
| | | |
| * | | Fix trailing spaceGravatar Ben Boeckel2010-10-02
| | | |
| * | | Make indentation in follow.js uniformGravatar Ben Boeckel2010-10-02
| | | |
| * | | PEP8 auth.pyGravatar Ben Boeckel2010-10-02
| | | |
| * | | Add script to manage common uzbl argumentsGravatar Ben Boeckel2010-10-02
| | | |
| * | | Add editor utility scriptGravatar Ben Boeckel2010-10-02
| | | |
| * | | Add uzbl directory and file discoveryGravatar Ben Boeckel2010-10-02
| | | |
| * | | Factor out dmenu functionalityGravatar Ben Boeckel2010-10-02
| | | |
| * | | Use $() over ``Gravatar Ben Boeckel2010-10-02
| | | |
| * | | Put `then' on the same line as `if'Gravatar Ben Boeckel2010-10-02
| | | |
* | | | uzbl-cookie-daemon: maintain persistent connections to uzbl instancesGravatar Brendan Taylor2010-09-30
| |_|/ |/| |
* | | Merge remote branch 'remotes/pawelz/follow.sh' into experimentalGravatar Dieter Plaetinck2010-08-25
|\ \ \
* | | | add newbg command, to open a new tab in the backgroundGravatar Gustavo Chaín2010-08-25
| | | |
* | | | Merge remote branch 'luca/experimental' into experimentalGravatar Dieter Plaetinck2010-08-25
|\ \ \ \
* \ \ \ \ Merge remote branch 'paradoq/master' into experimentalGravatar Dieter Plaetinck2010-08-25
|\ \ \ \ \ | |_|_|/ / |/| | | |
| | | | * Typo in event-manager online help.Gravatar Paweł Zuzelski2010-08-13
| |_|_|/ |/| | | | | | | | | | | Spotted by <specing> from #uzbl, thanks.
| | | * Merge remote branch 'Dieterbe/experimental' into follow.shGravatar Paweł Zuzelski2010-06-08
| | | |\ | |_|_|/ |/| | |
| | | * Resurect go_input script.Gravatar Paweł Zuzelski2010-06-08
| | | |
| | | * simplifiy follow.sh.Gravatar Paweł Zuzelski2010-06-08
| | | | | | | | | | | | | | | | Now it executes less processes and works a bti faster.
| | * | Avoid bash specific syntax in helpersGravatar Luca Bruno2010-05-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Most of our helpers don't really depend on bash, and work just fine with every system shell. Thus, let's avoid "bashisms" in there to accomodate more bare-bone shells (like dash, see https://wiki.ubuntu.com/DashAsBinSh ) Signed-off-by: Luca Bruno <lucab@debian.org>
| | * | This helper does not require bash, a generic posix shell is fine enoughGravatar Luca Bruno2010-05-16
| |/ / |/| | | | | | | | Signed-off-by: Luca Bruno <lucab@debian.org>
| * | added userscript in the examples, modified from singpolyma's scriptGravatar Matthew Bauer2010-04-18
| | |
* | | merge in formfiller updatesGravatar Dieter Plaetinck2010-04-11
|\ \ \
* | | | Require plugins have either a init, after or cleanup hook.Gravatar Mason Larobina2010-04-04
| | | |
* | | | Huge plugin & event manager upgrades.Gravatar Mason Larobina2010-04-04
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Removed unused modules 2. Re-use event handlers with identical callbacks and args. 3. Removed plugin exceptions in favour of assertions. 4. Remove useless raw_keycmd and raw_bind config vars. 5. Implemented and use `after` and `cleanup` plugin hooks (correctly) 6. EM & plugins now use the python logging module to output messages 7. Null config items are removed automatically 8. Simpler mode plugin 9. The init plugins function is called after the INSTANCE_START event 10. New optparse option to silence event echoing to stdout 11. Close instance socket on INSTANCE_EXIT before event handling 12. Caught signals are logged 13. Show times on the messages in the log file 14. Refactor bind pluin to use uzbl.bindlet directly. 15. Refactor keycmd plugin to use uzbl.keycmd directly. 16. Refactored on_event plugin to use uzbl.on_events dict over UZBLS dict 17. Refactor completion plugin to use uzbl.completion set object. 18. Modified progress plugin to use config vars instead of `@progress k = v` 19. mode_config now a defaultdict(dict) (I.e. this allows you to `uzbl.mode_config[mode][var] = value` without needing to check `mode` is in the `uzbl.mode_config` dict). 20. Removed all default mode config values. 21. Removed all `get_mode()` and `set_mode(..)` functions (and the like). 22. Setting the mode is now done via the config object directly (I.e. `uzbl.config['mode'] = 'insert'`). 23. Uses the on_set plugin to watch for 'mode' and 'default_mode' config changes. 24. Don't raise the useless NEW_ON_SET event, missing ON_SET connect. 25. Plugin and EventHandler aren't suited as dict objects. 26. Also using collections.defaultdict(list) for uzbl.handlers dict. 27. Plugin `on_set.py` allows you to attach handlers to config var changes 28. Config plugin reduced to one `uzbl.config` dict-like object. 29. Update export and connect calls in plugins. 30. The functions connect, connect_dict, export, export_dict, require, logging are exported directly to the plugin namespace. 31. Moved parse_msg into Uzbl class. 32. Generally improved comments. 33. UzblEventDaemon now an object. 34. Various variable, function & class renames.
* | | Allow notebook tab reordering in uzbl-tabbedGravatar James Campos2010-04-03
| | |
| * | kill bashizm [ == ]Gravatar Paweł Zuzelski2010-03-29
| | |
| * | Add modeline in 'new', strip comments in 'load'.Gravatar Paweł Zuzelski2010-03-29
| | |
| * | Support for <input type='SEARCH'>Gravatar Paweł Zuzelski2010-03-29
| | |
| * | remove comments, add modelineGravatar Paweł Zuzelski2010-03-29
| | | | | | | | | | | | | | | | | | Treat lines begining with '>' as comments. '>' not '#', because '>' is not a valid character in XML tags/argument names. Add modeline to generated file. May be useful to autoload syntax file.
| * | Make it more portable (now it works also with ksh)Gravatar Paweł Zuzelski2010-03-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | echo behaviour differs across POSIX shells. Some shells expands strings like '\\n' in echo built-in command (ksh), some does not (bash). According to [1] both behaviours are correct. That means "echo" is not portable for strings containing backslashes. [1] advises to use printf instead. [1] http://www.opengroup.org/onlinepubs/009695399/utilities/echo.html
| | * emit FORM_ACTIVE also on <input type='SEARCH'>Gravatar Paweł Zuzelski2010-03-29
| | |
| | * 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
| | |
| * | checkbox (un)check fixups. Added comments about checkboxes/radiobuttonsGravatar Pawel Tomak2010-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.
| * Fixed some issues connected with multilines for textareasGravatar Pawel Tomak2010-03-28
| |
| * Comments fixupGravatar Pawel Tomak2010-03-28
| |
| * Added some comments about textareasGravatar Pawel Tomak2010-03-28
| |
| * Added support for multilines in textareasGravatar Pawel Tomak2010-03-28
| |
| * Added support for radio-buttons. Little code reorganisationGravatar Pawel Tomak2010-03-28
| |
| * Checkbox and textarea support also for remembered formsGravatar Pawel Tomak2010-03-27
| |
| * Formfiller.sh comments updateGravatar Pawel Tomak2010-03-27
| |
| * Forms dumping function remake to work with all frames and iframesGravatar Pawel Tomak2010-03-27
| |
| * Moved function from formfiller-helper.js into the formfiller.shGravatar Pawel Tomak2010-03-27
| |
| * Use javascript and XPath to find input fields.Gravatar Paweł Zuzelski2010-03-27
| | | | | | | | Initialize field values.