aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/variables.c
Commit message (Collapse)AuthorAge
* 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.
* get_geometry: don't segfault if uzbl.gui.main_window is NULLGravatar Brendan Taylor2011-12-13
|
* 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
|\
* | add toggle commandGravatar Brendan Taylor2011-11-23
| |
| * 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.
* fix segfault when setting 'accept_languages'Gravatar Brendan Taylor2011-10-21
|
* fix set_iconGravatar Brendan Taylor2011-09-27
|
* refactor set_uri, fixing a memory leakGravatar Brendan Taylor2011-09-17
|
* don't change the page when given a blank URLGravatar Brendan Taylor2011-09-17
|
* convert show_status to a getterGravatar Brendan Taylor2011-09-17
|
* introduce getter and setter functions.Gravatar Brendan Taylor2011-09-17
| | | | | | | | | | | | some variables didn't always have a value reflecting the browser's internal state. for example, if `default_encoding` was never set then `print @default_encoding` would always print a blank string. this introduces getter functions that ensure the value of a variable is always in sync with the internal state of the browser. also: setters, because sometimes you need to process user input before storing it.
* don't repeat yourself: settings X propertiesGravatar Brendan Taylor2011-09-15
|
* make init_fifo and init_socket be less surprising.Gravatar Brendan Taylor2011-09-13
|
* new variable: enable_cross_file_accessGravatar Brendan Taylor2011-09-05
| | | | controls whether `file:` URIs are allowed to access other `file:` URIs.
* add a spellcheck_languages variableGravatar Brendan Taylor2011-07-25
| | | | exposes http://webkitgtk.org/reference/WebKitWebSettings.html#WebKitWebSettings--spell-checking-languages
* remove the scrollbars_visible variableGravatar Brendan Taylor2011-07-25
| | | | | | it doesn't work on GTK3, and discussion on the webkit-gtk mailing list suggests that it was never intended to work. instead, GTK theming can be used to hide scrollbars.
* fix testsGravatar Brendan Taylor2011-07-12
|
* rearrange variable functions so they aren't all exposedGravatar Brendan Taylor2011-07-12
|
* Merge branch 'tailhook/wm-integ' into experimentalGravatar Brendan Taylor2011-07-12
| | | | | | | Conflicts: src/callbacks.c src/callbacks.h src/uzbl-core.c
* the status bar is now a custom gtk widgetGravatar Brendan Taylor2011-07-03
| | | | | | it gives the left side of the status bar as much space as it needs (but importantly, no more than the size of the window. this should put the window resize bug to rest for good...
* hide some implementation details of variablesGravatar David Keijser2011-05-30
|
* move variable hashtable to a more sane placeGravatar David Keijser2011-05-30
|
* move uri_change_cb to variablesGravatar David Keijser2011-05-30
|
* use g_object_unref to free soup loggerGravatar David Keijser2011-05-30
|
* move variable callback functions into variables.cGravatar David Keijser2011-05-30
|
* move core variable stuff into variables fileGravatar David Keijser2011-05-25