aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/config
Commit message (Collapse)AuthorAge
...
| | * | | Alias the keypad enter to enterGravatar Ben Boeckel2010-10-09
| | | |/ | | |/|
| | | * Fix the default configuration to support utilsGravatar Ben Boeckel2010-10-02
| | | |
| | | * Reorder Bnd style to match othersGravatar Ben Boeckel2010-10-02
| | |/
* | | Merge branch 'master' of git://github.com/Dieterbe/uzbl into historyGravatar keis2010-09-10
|\ \ \ | | |/ | |/|
| | * Merge remote branch 'remotes/pawelz/follow.sh' into experimentalGravatar Dieter Plaetinck2010-08-25
| | |\
| | * \ Merge remote branch 'luca/experimental' into experimentalGravatar Dieter Plaetinck2010-08-25
| | |\ \
| | * | | Merge remote branch 'paradoq/master' into experimentalGravatar Dieter Plaetinck2010-08-25
| |/| | |
* | | | | Merge branch 'master' of git://github.com/Dieterbe/uzbl into historyGravatar keis2010-08-20
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: examples/config/config
| | * | | | Don't shell-interpret \@SELECTED_URI (fixes FS#240)Gravatar Paweł Zuzelski2010-08-05
| | | | | |
| * | | | | Don't shell-interpret \@SELECTED_URI (fixes FS#240)Gravatar Paweł Zuzelski2010-08-05
| | | | | |
| | * | | | Added DuckDuckGo to the list of search engines in the example configGravatar Mason Larobina2010-08-03
| |/ / / / | | | | | | | | | | | | | | | | | | | | More information here: http://www.uzbl.org/wiki/duckduckgo_as_search_engine
| | | | * Merge remote branch 'Dieterbe/experimental' into follow.shGravatar Paweł Zuzelski2010-06-08
| | | | |\ | | |_|_|/ | |/| | |
| | | | * Resurect go_input script.Gravatar Paweł Zuzelski2010-06-08
| | | | |
| | | * | 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>
* | | | Merge branch 'master' of git://github.com/Dieterbe/uzbl into historyGravatar keis2010-05-04
|\ \ \ \
| | | * | commented config lineGravatar Matthew Bauer2010-04-18
| | | | |
| | | * | added userscript in the examples, modified from singpolyma's scriptGravatar Matthew Bauer2010-04-18
| | |/ / | |/| |
| | * | Add to the config the default mode config that was in the mode pluginGravatar Mason Larobina2010-04-11
| | | |
| | * | TOGGLE_MODES event was removed, update insert mode binds in config.Gravatar Mason Larobina2010-04-11
| | | |
| | * | Merge branch 'experimental' into em-upgradeGravatar Mason Larobina2010-04-11
| | |\ \
| | | * | merge in mason/vim-extrasGravatar Dieter Plaetinck2010-04-10
| | |/| | | |/| | |
| * | | | simplify uname command in useragent settingGravatar Dieter Plaetinck2010-04-10
| | | | |
| * | | | <Ctrl>[ should be escape-bound, not <Ctrl>]Gravatar Dieter Plaetinck2010-04-05
| | | | |
| | | * | Re-categorise parts of the config to fit under less folded sectionsGravatar Mason Larobina2010-04-04
| | | | |
| | | * | vim ftplugin for uzbl, config section folding & improved vim syntax fileGravatar Gregor Uhlenheuer2010-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.
| * | Merge branch 'master' into experimentalGravatar Mason Larobina2010-03-31
| |\ \
| | * | Fix webkit version expansion problem in useragent string.Gravatar Mason Larobina2010-03-31
| | | |
| | | * reverted fl* keybinding for follow script.Gravatar Paweł Zuzelski2010-03-28
| | | | | | | | | | | | | | | | ff* was mistake
| | | * 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.
| * | Make `<Shift-Insert>` inject into the keycmd at the cursor position.Gravatar Mason Larobina2010-03-24
| | |
| * | shift-insert binding to paste contents from primary selection buffer into keycmdGravatar Dieter Plaetinck2010-03-23
| | |
| * | Fixed NEW_WINDOW uzbl-tabbed handler typo.Gravatar Mason Larobina2010-03-23
| | |
| * | Merge branch 'master' into experimentalGravatar Mason Larobina2010-03-22
| |\|
| | * FS#194 `uname -o` is not portable, use `uname -s` in useragentGravatar Mason Larobina2010-03-21
| | |
| * | Merge branch 'master' into experimentalGravatar Mason Larobina2010-03-21
| |\|
* | | Merge branch 'master' of git://github.com/Dieterbe/uzbl into historyGravatar David Keijser2010-03-20
|\ \ \ | | |/ | |/|
| * | Fixed <Home> bind in example config.Gravatar Mason Larobina2010-03-20
| | |
| | * Merge branch 'master' into experimentalGravatar Mason Larobina2010-03-18
| | |\ | | |/ | |/| | | | | | | Conflicts in examples/config/config: FS#198 also applies to the new NEW_WINDOW handler.
| * | FS#206 Reload command should reload config variables only.Gravatar Mason Larobina2010-03-18
| | |
| * | FS#198 Surround $8 with quotes in case the SELECTED_URI is null.Gravatar Mason Larobina2010-03-18
| | |
| * | Add <Ctrl>] escape sequence.Gravatar Mason Larobina2010-03-18
| | |
| * | Renamed eFormFiller.sh to formfiller.sh and updated formfiller configGravatar Mason Larobina2010-03-15
| | |
| * | Removed broken and deprecated scripts and removed them from the config.Gravatar Mason Larobina2010-03-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | examples/scripts/cookies.sh: Deprecated by uzbl-cookie-daemon months ago. examples/scripts/extedit.js: Broken in its current form without the Uzbl.run method. examples/scripts/scroll-percentage.js: Broken without the Uzbl.run method. examples/scripts/{linkfollow,hint,follower}.js: Development should take place in the single follow.js from now on. There is no logic in co-developing 4 separate following scripts (some of which have been broken for months) in our selection of example scripts.
| | * Renamed eFormFiller.sh to formfiller.sh and updated formfiller configGravatar Mason Larobina2010-03-14
| | |
| | * Removed broken and deprecated scripts and removed them from the config.Gravatar Mason Larobina2010-03-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | examples/scripts/cookies.sh: Deprecated by uzbl-cookie-daemon months ago. examples/scripts/extedit.js: Broken in its current form without the Uzbl.run method. examples/scripts/scroll-percentage.js: Broken without the Uzbl.run method. examples/scripts/{linkfollow,hint,follower}.js: Development should take place in the single follow.js from now on. There is no logic in co-developing 4 separate following scripts (some of which have been broken for months) in our selection of example scripts.
| | * Add NEW_WINDOW event handler and remove old new_window handler.Gravatar Mason Larobina2010-03-13
| |/
| * Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into eFormFillerGravatar Pawel Tomak2010-03-11
| |\
| | * Replace all @'s in uri's from xclip with %40 to avoid expansion.Gravatar Mason Larobina2010-03-11
| | |
| | * Config comment clarification for the <Ctrl><Alt>t bind.Gravatar Mason Larobina2010-02-28
| | |