aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Merge remote-tracking branch 'mathstuf/dev/add-bsd-source'Gravatar Brendan Taylor2012-04-22
|\
* \ Merge remote-tracking branch 'vorner/fix-follow-3'Gravatar Brendan Taylor2012-04-22
|\ \
* | | remove special handling of the SELECTION_CHANGED eventGravatar Brendan Taylor2012-04-21
| | | | | | | | | | | | | | | fixes #296 (primary selection replaces content of clipboard) fixes slow insertion in some textareas (#295 ?)
| * | Fix follow in new window with url containing %Gravatar Michal 'vorner' Vaner2012-04-14
|/ / | | | | | | | | | | | | The script printed the URL through printf, which interpreted the % as control character. This led to the script not working and printing errors like "%C is not valid formatting character". Using echo should be safe.
* | Merge pull request #87 from mathstuf/dev/fix-cookie-loadingGravatar Brendan Taylor2012-04-08
|\ \ | | | | | | Fix an off-by-one error
| | * Add _BSD_SOURCE defineGravatar Ben Boeckel2012-04-04
| |/ |/| | | | | It's required for setenv and unsetenv.
| * Fix an off-by-one errorGravatar Ben Boeckel2012-04-04
|/ | | | Awk strings are 1-indexed, so 1 needs to be added to the starting index.
* Merge branch 'master' of github.com:Dieterbe/uzblGravatar Brendan Taylor2012-04-02
|\
| * Merge pull request #77 from keis/fix-bad-click-contextGravatar Brendan Taylor2012-04-02
| |\ | | | | | | set last_button before trying to get click context
* | | Add a variable to mediate multiple button clicksGravatar Ben Boeckel2012-03-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The keyevent is always sent for multiple clicks (that aren't in an edit field for left and middle clicks), but the propogation of the event through to webkit can be suppressed if the user wants something else to happen. This allows double and triple click selections (by word and paragraph, respectively) work again.
* | | Factor out sending the eventGravatar Ben Boeckel2012-03-09
|/ /
| * set last_button before trying to get click contextGravatar David Keijser2012-02-20
|/
* Merge remote-tracking branch 'lucab/master'Gravatar Brendan Taylor2012-02-12
|\
| * Restrict third-party access to cookie jar (CVE-2012-0843)Gravatar Luca Bruno2012-02-12
| | | | | | | | | | | | | | | | Make sure new cookie jar is created with no permission for "others", and remove excessive rights on existing jar if any. This fixes CVE-2012-0843 and uzbl bug #291. Signed-off-by: Luca Bruno <lucab@debian.org>
* | Merge remote-tracking branch 'dylex/master'Gravatar Brendan Taylor2012-01-10
|\ \ | |/ |/| | | | | Conflicts: src/uzbl-core.c
* | get_geometry: don't segfault if uzbl.gui.main_window is NULLGravatar Brendan Taylor2011-12-13
| |
* | link to the keybindings in the FAQGravatar Brendan Taylor2011-12-13
| |
* | corrected the documentation of the 'forward' keybindingGravatar Brendan Taylor2011-12-13
| |
* | ssl_ca_file needs to be turned on too.Gravatar Brendan Taylor2011-11-28
| |
* | enable SSL verification by default.Gravatar Brendan Taylor2011-11-28
| |
* | don't segfault when toggling a nonexistent variableGravatar Brendan Taylor2011-11-28
| |
* | bring back the (now undocumented) toggle_status and toggle_zoom_type commandsGravatar Brendan Taylor2011-11-28
| | | | | | | | maintaining backwards compatibility is good. we'll get rid of them when we overhaul the command language.
* | added a keybinding cheat sheetGravatar Brendan Taylor2011-11-28
| |
* | don't use window.open in follow.js.Gravatar Brendan Taylor2011-11-23
| | | | | | | | | | it's slow, forces you to turn on javascript_windows = 1, and on some systems results in multiple new windows/tabs.
* | update the example SSL configurationGravatar Brendan Taylor2011-11-23
| |
* | example SSL error handlerGravatar Paweł Zuzelski2011-11-23
| |
* | ssl certs verificationGravatar Paweł Zuzelski2011-11-23
| | | | | | | | | | | | | | | | | | Introduced config variables: (string) ssl_ca_file (int) ssl_verify ssl_ca_file is openssl-style CAfile containing trusted root certificates. ssl_verify value controls whether to verify remote certs. If it is set to non-zero, uzbl won't connect to remote https site unless it validates cert.
* | Merge commit '38fd1f02bbdc5edda7'Gravatar Brendan Taylor2011-11-23
|\ \
* \ \ Merge remote-tracking branch 'mathstuf/dev/fix-toggle-test'Gravatar Brendan Taylor2011-11-23
|\ \ \
* | | | NEW COMMAND: 'toggle'Gravatar Brendan Taylor2011-11-23
| | | | | | | | | | | | | | | | toggles a variable between 0 and 1, or cycles a it through several possibilities
* | | | BREAKING CHANGE: remove toggle_zoom_type, toggle_statusGravatar Brendan Taylor2011-11-23
| | | | | | | | | | | | | | | | they've been replaced with the new toggle command
* | | | add toggle commandGravatar Brendan Taylor2011-11-23
| | | |
* | | | A better binding for absolute horizontal scrollingGravatar Ben Boeckel2011-11-23
| | | |
* | | | Check for the beginning of the page as wellGravatar Ben Boeckel2011-11-23
| | | |
* | | | Add absolute scrolling argumentGravatar Ben Boeckel2011-11-23
| | | |
* | | | various formfiller fixesGravatar Taylan Ulrich B2011-11-23
| | | |
| * | | Update statusbar toggle testGravatar Ben Boeckel2011-11-22
|/ / /
* | | Merge branch 'master' of github.com:Dieterbe/uzblGravatar Brendan Taylor2011-10-30
|\ \ \
* | | | use GLIB_CHECK_VERSION instead of a Makefile hackGravatar Brendan Taylor2011-10-30
| | | |
| | * | add request_handler hookGravatar Devin J. Pohly2011-10-27
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | This creates a handler `request_handler' in the same vein as scheme_handler, download_handler, etc., which is called whenever the page requests a URI. (Possible applications include Adblock and SSL enforcement.) The handler should get the URI from $1 and print the URI of the resource that should be loaded instead, or print nothing to allow the request unmodified.
* | | Check if glib needs g_thread_initGravatar Ben Boeckel2011-10-25
| | | | | | | | | | | | | | | | | | | | | Newer glib versions don't need g_thread_init. Of course, there is no announcement or whatever, so you have to go to the docs to discover this. Nevermind the lack of backwards compatibility with a nice message about when it will be removed for a while either.
| * | Get the click context all the timeGravatar Ben Boeckel2011-10-25
| | |
* | | javascriptcoregtk-3.0 is required for webkitgtk3Gravatar Ben Boeckel2011-10-25
|/ /
* | Merge remote-tracking branch 'dieterbe/master'Gravatar Brendan Taylor2011-10-23
|\ \
* | | sometimes load_cookies.sh didn't parse cookies properlyGravatar Brendan Taylor2011-10-23
| | | | | | | | | | | | this was causing the updated EM to drop the connection.
| * | fix segfault when setting 'accept_languages'Gravatar Brendan Taylor2011-10-21
|/ /
* | set the window name on embedded windows tooGravatar Brendan Taylor2011-10-05
| | | | | | | | this allows hiding scrollbars when using uzbl-tabbed
* | document the spellcheck_languages variableGravatar Brendan Taylor2011-10-01
| |
* | fix set_iconGravatar Brendan Taylor2011-09-27
| |
* | fix following input[type=email], [type=search], etc.Gravatar Brendan Taylor2011-09-26
| |