aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* check if feature is set before (un)setting featureGravatar Paweł Zuzelski2010-01-25
| | | | | Don't try to set WEBKIT_TYPE_SOUP_AUTH_DIALOG in set_authentication_handler() if it is already set. Don't try to unset it if it is not set.
* authentication_handler: empty stringGravatar Paweł Zuzelski2010-01-25
| | | | | treat empty string as if var was not set also in handle_authentication() function.
* handle empty/unset authentication_handlerGravatar Paweł Zuzelski2010-01-25
| | | | | | treat empty string as unset variable. don't try to read stdout, if there is no stdout (this fixes segv reported by Dieter).
* merge in pawelz' authentication handler + some other fixesGravatar Dieter Plaetinck2010-01-24
|\
* | merge in experimentalGravatar Dieter Plaetinck2010-01-24
| |
| * Merge remote branch 'Dieterbe/experimental' into experimentalGravatar Paweł Zuzelski2010-01-19
| |\ | |/ |/|
* | add a scrollbars_visible optionGravatar Simon Lipp2010-01-18
| |
* | eval_js: catch non-object (int, string,...) exceptionsGravatar Simon Lipp2010-01-18
| |
| * 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 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.
* Merge branch 'master' into experimentalGravatar Dieter Plaetinck2010-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
* move source files from project root into src directory. Makefile is a bit ↵Gravatar Dieter Plaetinck2010-01-02
broken though