aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
| | * | add workaround for slow npviewer cleanupGravatar keis2011-07-28
| |/ /
| * | add a spellcheck_languages variableGravatar Brendan Taylor2011-07-25
| | | | | | | | | | | | exposes http://webkitgtk.org/reference/WebKitWebSettings.html#WebKitWebSettings--spell-checking-languages
| * | Merge branch 'experimental' of github.com:Dieterbe/uzblGravatar Brendan Taylor2011-07-25
| |\ \
| * | | 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.
| | * | handle html5 input types in the formfillerGravatar Brendan Taylor2011-07-18
| |/ /
| * | fix dmenu prompt in formfiller.shGravatar Brendan Taylor2011-07-17
| | | | | | | | | | | | | | | | | | | | | util/dmenu.sh breaks with spaces in $DMENU_PROMPT. a proper fix looks like it will require all scripts that use util/dmenu.sh to use "eval $DMENU" instead of "$DMENU" (which has side-effects of its own), I'd rather avoid that for now.
| * | Merge remote-tracking branch 'mathstuf/dev/improve-follow' into experimentalGravatar Brendan Taylor2011-07-13
| |\ \
| * | | 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
| * \ \ \ Merge branch 'master' into experimentalGravatar Brendan Taylor2011-07-12
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/uzbl-core.c I accidentally merged a pull request into master, getting everything synced up again.
| | | | | * Separate commands with a newlineGravatar Ben Boeckel2011-07-08
| | | |_|/ | | |/| |
| * | | | fix ellipsization on gtk2Gravatar Brendan Taylor2011-07-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. a stupid copy/paste error 2. add a bit of room to our estimation of the natural size so things don't get ellipsized unnecessarily
| * | | | nbsps crept into the config fileGravatar Brendan Taylor2011-07-03
| | | | |
| * | | | add new .o files to 'make clean'Gravatar Brendan Taylor2011-07-03
| | | | |
| * | | | 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...
| | | * | Added documentation for the changes in this branchGravatar Paul Colomiets2011-07-02
| | | | |
| | | * | Added documentation for `window_role`Gravatar Paul Colomiets2011-07-02
| | | | |
| | | * | Added window_role variable to set WM_WINDOW_ROLEGravatar Paul Colomiets2011-07-02
| | | | | | | | | | | | | | | | | | | | Another feature for easier integrating with window managers
| | | * | Ensures that UZBL_URI is set when window is mappedGravatar Paul Colomiets2011-07-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will help window manager to sort windows when they are mapped, instead of moving them back and forth when they are already shown. This is theoretically incurs tiny delay of showing window, but it's shown before main loop is started anyway, and you can't see anything useful before, so the delay is negligible.
| | | * | Implemented setting UZBL_URI window propertyGravatar Paul Colomiets2011-07-02
| | |/ / | | | | | | | | | | | | | | | | This property is set for all uzbl windows unconditionally. This allows window managers and other tools organize windows more carefully.
| | | * Escape '@' when following a linkGravatar Ben Boeckel2011-06-26
| | | |
| * | | make the SCROLL_VERT calculation clearer (and fix it)Gravatar Brendan Taylor2011-06-07
| | | |
| * | | fix divide by zero in the scroll percentage calculationGravatar Brendan Taylor2011-06-07
| | | |
| * | | Revert "wrap the mainbar_label_left when it gets too long."Gravatar Brendan Taylor2011-06-07
| | | | | | | | | | | | | | | | | | | | This reverts commit 31b12cc2715db2da0b90bab9b51f33438b7af1c4. It didn't work the way I wanted.
| * | | Merge remote-tracking branch 'keis/split-core' into experimentalGravatar Brendan Taylor2011-06-05
| |\ \ \
| * \ \ \ Merge remote-tracking branch 'keis/py-staging' into experimentalGravatar Brendan Taylor2011-06-05
| |\ \ \ \
| | * | | | proper use of loggerGravatar keis2011-06-04
| | | | | |
| | * | | | make event-manager pass pep8 checkGravatar keis2011-06-04
| | | | | |
| | * | | | fix some import misses in event managerGravatar keis2011-06-04
| | | | | |
| | * | | | remove all uses of get_loggerGravatar keis2011-06-04
| | | | | |
| | * | | | Made logging easierGravatar Donald Johnson2011-06-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Made init_logger() which sets up the root logger and log level, and then used `logger` as a global to refer to the script's logger right off the bat. Removed usage of `get_logger(name)` entirely.
| | | | | |
| | | \ \ \
| | *-. \ \ \ Merge commit '0dd3b8e35a'; remote-tracking branch 'tailhook/asyncsend' into ↵Gravatar keis2011-06-04
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | py-staging
| | | | | * | | 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
| | | | | | | |
| | | * | | | | Deleted unneeded `global args` declaration.Gravatar Donald Johnson2011-05-27
| | | | | | | |
| * | | | | | | drop the set_geometry_hints stuff, it never worked anyhowGravatar Brendan Taylor2011-05-27
| | | | | | | |
| * | | | | | | rename the window "Uzbl", spaces don't play well with themingGravatar Brendan Taylor2011-05-27
| | | | | | | |
| * | | | | | | wrap the mainbar_label_left when it gets too long.Gravatar Brendan Taylor2011-05-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes the window resize bug, hopefully for good.
| | | * | | | | Made main() method for uzbl-event-managerGravatar Donald Johnson2011-05-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Calls main() upon running the event manager. Work done was moving a gigantic block of repetetive adding for the parser into its own function `make_parser()`, moved `get_logger(...)` out of the if-main branch, and declaring a lot of variables as globals (this can be fixed later; recommended to make all globals in all caps later). This allows someone to attach a debugger or profiler to the event manager more easily, just by editing the script.
| * | | | | | | make the variables in util/uzbl-dir.sh overrideableGravatar Brendan Taylor2011-05-25
| | | | | | | |
| | | | | * | | move core variable stuff into variables fileGravatar David Keijser2011-05-25
| | | | | | | |
| | | | | * | | two more commands from uzbl-coreGravatar David Keijser2011-05-25
| | | | | | | |
| | | | | * | | reorganise uzbl-core.hGravatar David Keijser2011-05-24
| | | | | | | |
| | | | | * | | refactor search commandsGravatar David Keijser2011-05-24
| | | | | | | |
| | | | | * | | split commands from uzbl-core.cGravatar David Keijser2011-05-24
| | |_|_|/ / / | |/| | | | |
| * | | | | | simplify the bookmark bindingGravatar Brendan Taylor2011-05-23
| | | | | | |