aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Merge branch 'master' into experimentalGravatar Paweł Zuzelski2010-01-15
|\
| * Fix middle click binding (to open selected uri in new window).Gravatar Mason Larobina2010-01-13
| |
* | Don't strip binary. Strip moved to separate targetGravatar Paweł Zuzelski2010-01-12
| | | | | | | | Makefile should not strip binary. It should be handled by package manager.
* | better way to check WebKit versionGravatar Paweł Zuzelski2010-01-12
| | | | | | | | | | | | | | | | | | | | | | use webkit_major_version(), webkit_minor_version() and webkit_micro_version() functions to obtain webkit version instead of accessing WEBKIT_MAJOR_VERSION, WEBKIT_MINOR_VERSION and WEBKIT_MICRO_VERSION directly. WEBKIT_M*_VERSION are defined in header files included by uzbl code, so they contain WebKit version that uzbl was compiled against. webkit_m*_version() functions return WebKit version that is realy used at the moment.
* | Strip leading whitespaces from uri.Gravatar Paweł Zuzelski2010-01-12
| |
| * Fix yank bind now that the Uzbl object is gone.Gravatar Mason Larobina2010-01-11
| |
* | fix double free in authentication_handlerGravatar Paweł Zuzelski2010-01-10
| | | | | | | | | | Don't g_free username and password as we don't allocate memory for these strings.
* | authentication_handler implementaionGravatar Paweł Zuzelski2010-01-10
| | | | | | | | | | | | | | | | Authentication handler allows to delegate http authentication to external program. It introduces one new configuration variable: authentication_handler. Note that this commit does not affect uzbl behaviour unless this variable is set. Also updated README documentation, default config and added example authentication script.
| * Comment out anything in the config that used @jsh or the Uzbl object.Gravatar Mason Larobina2010-01-09
| |
| * Merge branch 'master' of git://github.com/Dieterbe/uzblGravatar Mason Larobina2010-01-09
| |\
* | | explain npapi pluginsGravatar Dieter Plaetinck2010-01-07
| | |
* | | Merge branch 'master' into experimentalGravatar Dieter Plaetinck2010-01-05
|\ \ \ | | |/ | |/|
| * | Merge branch 'security-fix'Gravatar Dieter Plaetinck2010-01-05
| |\ \
| | * | disable Uzbl javascript object because of security problem.Gravatar Dieter Plaetinck2010-01-05
| | | |
| | | * Encode utf-8 strings being sent to stdout.Gravatar Mason Larobina2010-01-05
| | | |
| | | * Make verbose print format string unicode.Gravatar Mason Larobina2010-01-05
| | | |
| | | * You need to `cd uzbl` before running checkout.Gravatar Mason Larobina2010-01-05
| | |/ | |/|
* | | remove the 'uzbl' subdirectory in examples/*/, since the sandbox they are no ↵Gravatar Dieter Plaetinck2010-01-02
| | | | | | | | | | | | longer needed + update paths everywhere + remove examples/config/enchant (also not needed since sandbox) + bugfix: set /home/dieter in sandbox
* | | merge in changes from masterGravatar Dieter Plaetinck2010-01-02
|\| |
* | | authors file updatesGravatar Dieter Plaetinck2010-01-02
| | |
| * | add notes into example configGravatar Dieter Plaetinck2010-01-02
| | |
* | | uzbl-tabbed: add a tab_indexes optionGravatar Simon Lipp2010-01-03
| | |
* | | uzbl-tabbed: get rid of update-tablist timerGravatar Simon Lipp2010-01-03
| | |
* | | implemented new actions for uzbl_tabbedGravatar Simon Lipp2010-01-03
| | |
* | | uzbl-tabbed:Gravatar Simon Lipp2010-01-03
| | | | | | | | | | | | | | | * misc fixes (problems introduced in last commit) * correct implemenation of the configuration (use uzbl events insted of config file; you can now do :set show_tablist=0)
* | | uzbl-tabbed changes :Gravatar Simon Lipp2010-01-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove bind_* options: does not work with current uzbl revisions, and a better implementation will come soon. * Remove reading of uzbl config file (same reason) * Better IPC handling (to sumarize: less periodic polling): * Better separation between network layers (communication is in SocketClient, protocol in UzblInstance, user interface in UzblTabbed) * use io_add_watch instead of select for reading uzbl events * does not use a generated hash to separate events, but the LF character * get rid of all the flush()ing logic * does not probe periodically for the title anymore; use uzbl events * create a /tmp/uzbltabbed_socket instead of polling the /tmp/uzbl_socket_* socket
* | | uzbl-tabbed: get UzblInstance out of UzblTabbedGravatar Simon Lipp2010-01-03
| | |
* | | uzbl-tabbed: don't use uzbl fifoGravatar Simon Lipp2010-01-03
| | |
* | | Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimentalGravatar Mason Larobina2010-01-03
|\ \ \
| * | | layout fixesGravatar Dieter Plaetinck2010-01-02
| | | |
| * | | give a more objective pov of the multiple instances discussion + elaborate ↵Gravatar Dieter Plaetinck2010-01-02
| | | | | | | | | | | | | | | | on possible directions and scripts
| | * | Updated comments in handlers section and updated the download handlerGravatar Mason Larobina2010-01-02
| | | |
| * | | faq entry for memory usageGravatar Dieter Plaetinck2010-01-02
| | | |
| * | | "fix" for broken MakefileGravatar Dieter Plaetinck2010-01-02
| | | |
| * | | fix for config.h locationGravatar Dieter Plaetinck2010-01-02
| | | |
| * | | move source files from project root into src directory. Makefile is a bit ↵Gravatar Dieter Plaetinck2010-01-02
| | | | | | | | | | | | | | | | broken though
| * | | URIEncode search string component of web searching binds.Gravatar Mason Larobina2010-01-01
| | | |
| * | | Moved expand function to external plugin to reduce code duplication.Gravatar Mason Larobina2010-01-01
| | | |
| * | | Added the escaped and quoted %r replace for on_event and bind args.Gravatar Mason Larobina2010-01-01
| | | |
| * | | eval_js: use JavaScriptCore internal function to convert exception message ↵Gravatar Simon Lipp2010-01-01
| | | | | | | | | | | | | | | | to string (more verbose)
| | * | Merge branch 'master' of git://github.com/Dieterbe/uzblGravatar Mason Larobina2010-01-02
| | |\ \
| * | | | bring readme up to date for latest new options and stuffGravatar Dieter Plaetinck2010-01-01
| | | | |
| * | | | Add a print_events optionGravatar Simon Lipp2010-01-01
| | | | |
| * | | | hash.sh -> misc/hash.shGravatar Dieter Plaetinck2010-01-01
| | | | |
| * | | | Merge branch 'master' into experimentalGravatar Dieter Plaetinck2010-01-01
| |\ \ \ \ | | | |/ / | | |/| |
| | * | | authors file updateGravatar Dieter Plaetinck2010-01-01
| | | | |
| | * | | fixed http://www.uzbl.org/bugs/index.php?do=details&task_id=165Gravatar tczy2010-01-01
| | | | | | | | | | | | | | | | | | | | using supplied patch
| | * | | uzbl-tabbed bind '@' fixGravatar tczy2010-01-01
| | | |/ | | |/|
| * | | authors file updateGravatar Dieter Plaetinck2010-01-01
| | | |
| * | | add *.pyc to gitignoreGravatar Simon Lipp2010-01-01
| | | |