aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Revert "Adding new rule to ignore version file."Gravatar Mason Larobina2010-07-01
| | | | | | | This reverts commit 44c80387726672abdec0108e7ae1791a8bed693c. Reason: This was something I was playing with and accidentally committed it to the wrong branch.
* Merge branch 'experimental'Gravatar Mason Larobina2010-06-26
|\
* | Adding new rule to ignore version file.Gravatar Mason Larobina2010-05-03
| |
| * 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 in formfiller updatesGravatar Dieter Plaetinck2010-04-11
| |\
| * \ Merge remote branch 'kongo/experimental' into experimentalGravatar Dieter Plaetinck2010-04-11
| |\ \
| * \ \ Merge branch 'experimental' into em-upgradeGravatar Mason Larobina2010-04-11
| |\ \ \
| | * \ \ merge in mason/vim-extrasGravatar Dieter Plaetinck2010-04-10
| | |\ \ \
| | * \ \ \ Merge branch 'master' into experimentalGravatar Dieter Plaetinck2010-04-10
| | |\ \ \ \ | |_|/ / / / |/| | | | |
* | | | | | simplify uname command in useragent settingGravatar Dieter Plaetinck2010-04-10
| | | | | |
| | | | * | fix code style/typoGravatar kongo20022010-04-08
| | | | | |
| | | | * | check if soup_cookie could be parsed successfullyGravatar kongo20022010-04-07
| | | | | |
* | | | | | <Ctrl>[ should be escape-bound, not <Ctrl>]Gravatar Dieter Plaetinck2010-04-05
| | | | | |
| | * | | | <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
| |/ / / |/| | |
| | * | Merge remote branch 'upstream/experimental' into experimentalGravatar kongo20022010-04-04
| | |\ \ | |_|/ / |/| | |
| * | | Require plugins have either a init, after or cleanup hook.Gravatar Mason Larobina2010-04-04
| | | |
| | * | add vim ftplugin file for uzbl configGravatar kongo20022010-04-04
| | | |
| | * | set 'iskeyword' local to bufferGravatar kongo20022010-04-04
| | | | | | | | | | | | | | | | | | | | This setting broke most of the syntax highlighting of files opened after the uzbl config file.
| * | | 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.
* | | add Alex Alexander and Cedric Staub to authors fileGravatar Dieter Plaetinck2010-04-03
| | |
* | | Merge branch 'master' of github.com:Dieterbe/uzblGravatar Dieter Plaetinck2010-04-03
|\ \ \
* | | | update README for removed download_handler/new_window variables, new ↵Gravatar Dieter Plaetinck2010-04-03
| | | | | | | | | | | | | | | | javascript_windows variable and clarified NEW_WINDOW event
| * | | Update the unit tests to allow periods in variable names.Gravatar Mason Larobina2010-04-04
|/ / /
| * | add second level folding for uzbl configGravatar kongo20022010-04-03
| | |
| * | refine vim syntax regexesGravatar kongo20022010-04-03
| | |
| * | add vim syntax based folding for uzbl configGravatar kongo20022010-04-03
| | |
| * | Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimentalGravatar kongo20022010-04-03
| |\ \ | |/ / |/| |
* | | Added James to the AUTHORS file.Gravatar Mason Larobina2010-04-03
| | |
* | | Allow notebook tab reordering in uzbl-tabbedGravatar James Campos2010-04-03
| | |
* | | Uncomment the second new window send_event function.Gravatar Mason Larobina2010-04-03
| | | | | | | | | | | | | | | This allows target blank anchors to work (and works so well that it opens two windows).
* | | Merge branch 'master' into experimentalGravatar Mason Larobina2010-03-31
|\ \ \
| * | | Don't match keywords inside stringsGravatar Mason Larobina2010-03-31
| | | |
* | | | Merge branch 'master' into experimentalGravatar Mason Larobina2010-03-31
|\| | |
| * | | Fix webkit version expansion problem in useragent string.Gravatar Mason Larobina2010-03-31
| | | |
* | | | Merge branch 'master' into experimentalGravatar Mason Larobina2010-03-30
|\| | |
| * | | Update authors file with the uzbl vim syntax file contributors.Gravatar Mason Larobina2010-03-30
| | | |
* | | | Merge branch 'master' into experimentalGravatar Mason Larobina2010-03-30
|\| | |
| * | | Include vim syntax file for uzbl.Gravatar Mason Larobina2010-03-30
| | | |
| | | * 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
| | | * checkbox (un)check fixups. Added comments about checkboxes/radiobuttonsGravatar Pawel Tomak2010-03-28
| | | |
| | | * 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
| | | |