aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.h
Commit message (Collapse)AuthorAge
* Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into cleanGravatar Brendan Taylor2009-07-18
|\
* | call set_mode_indicator after updating the whatever_indicator settingGravatar Brendan Taylor2009-07-18
| |
| * uzbl.scan RIP.Gravatar Tom Adams2009-07-17
|/
* Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into ↵Gravatar Brendan Taylor2009-07-16
|\ | | | | | | | | | | | | | | | | | | replace-expand-template Conflicts: Makefile tests/Makefile uzbl.c uzbl.h
| * Ran :%s/ $//g to remove trailing spaces in uzbl.h and uzbl.cGravatar uranther2009-07-14
| |
| * Merge with Dieterbe/experimentalGravatar uranther2009-07-13
| |\
* | \ fix conflicts agains bctGravatar Robert Manea2009-07-12
|\ \ \
| * | | "set keycmd = x" is now equivalent to "keycmd x"Gravatar Brendan Taylor2009-07-12
| | | |
| * | | update mode indicator when @insert_mode is setGravatar Brendan Taylor2009-07-12
| | | |
| * | | make keycmd a variable. new escape expansion syntax. deleteGravatar Brendan Taylor2009-07-12
| | | | | | | | | | | | | | | | expand_template entirely.
* | | | fix pullGravatar Robert Manea2009-07-12
|\ \ \ \ | | |_|/ | |/| |
| | * | Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into ↵Gravatar Brendan Taylor2009-07-11
| | |\ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | replace-expand-template Conflicts: uzbl.c
| * | | Added new_window handler.Gravatar Tom Adams2009-07-11
| | | |
| * | | Add -V/--version option to print the commit and exit.Gravatar Tom Adams2009-07-11
| | | |
| * | | Remove extraneous whitespace.Gravatar Tom Adams2009-07-11
| | | |
| | * | remove SYM_MODEGravatar Brendan Taylor2009-07-09
| | | |
| | * | @MODE works.Gravatar Brendan Taylor2009-07-09
| | | |
* | | | set current geometry on configure-eventGravatar Robert Manea2009-07-09
| | | |
* | | | Added -geometry option and geometry variableGravatar Robert Manea2009-07-09
|/ / /
| * | move NAME from expand_template to expandGravatar Brendan Taylor2009-07-08
| | |
| * | undef the expand_template symbols that i deletedGravatar Brendan Taylor2009-07-08
| | |
| * | move all the simple stuff from expand_templateGravatar Brendan Taylor2009-07-08
| | |
| * | lots of stuff, see below.Gravatar Brendan Taylor2009-07-08
| | | | | | | | | | | | | | | add uzbl.info, move wk_*_version, COMMIT, and ARCH_UZBL into var_name_to_const, get rid of unameinfo, split off initialize() from main()
| * | optional markup escaping in expand()Gravatar Brendan Taylor2009-07-07
| | |
| * | use expand instead of expand_template for useragent.Gravatar Brendan Taylor2009-07-07
| | |
| * | test simple cmd_useragentGravatar Brendan Taylor2009-07-06
| | |
| * | simple expansion test passes.Gravatar Brendan Taylor2009-07-06
|/ /
| * merge with Dieterbe/experimentalGravatar uranther2009-07-01
| |\ | |/ |/|
| * removing more static keywordsGravatar uranther2009-06-29
| |
| * Merge from Dieterbe/experimentalGravatar uranther2009-06-29
| |\
* | \ Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into cleanGravatar Brendan Taylor2009-06-26
|\ \ \ | | |/ | |/|
| | * Preliminary uzbl testing framework - props to bct for the helpGravatar uranther2009-06-24
| | |
| | * leftover static keywords in uzbl.h because they were on their one lineGravatar uranther2009-06-24
| | |
| | * take out static keyword in uzbl.h tooGravatar uranther2009-06-24
| | |
* | | use notify::title instead of title-changed signalGravatar Brendan Taylor2009-06-23
| | | | | | | | | | | | fixes FS#35
| * | Cleanup diff on uzbl.hGravatar Dequis2009-06-22
| | |
| * | Revert "Add disable_stdin config option"Gravatar Dequis2009-06-20
| | | | | | | | | | | | This reverts commit 97526404f52875d82d584f18420be72fdc300d93.
| * | Revert "Replaced disable_stdin with uzbl -c -"Gravatar Dequis2009-06-20
| | | | | | | | | | | | This reverts commit ed39cbe56f8923407604a1306a179529521ecd26.
| * | Use JavaScriptCore for evaluation, with Uzbl.run()Gravatar Dequis2009-06-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Both "js" and "script" commands use eval_js(), which creates an instance of the Uzbl object class (created by js_init()) which right now provides only a run() method (handled by js_run_command()). After evaluating the code, eval_js() removes the object so the scripts from the loaded page can't access it. eval_js() supports returning a string result, and you can use it with uzblctrl to query the DOM. Uzbl.run() also returns a string, but the only useful thing you can do right now with that is to print @uri or other variables.
| * | Replaced disable_stdin with uzbl -c -Gravatar Dequis2009-06-15
| | | | | | | | | | | | | | | | | | | | | | | | That means, read config from stdin. So stdin is always disabled, except when you tell uzbl to read from there. The default one in the xdg config path is still loaded. Fixes problems when sending uzbl to background.
| * | Fix control_socket to use GIOChannelGravatar Dequis2009-06-15
| | |
| * | Added *result to get data back from commandsGravatar Dequis2009-06-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows socket (and stdio) to have a way to reply back. Had to change all their function definitions, unfortunately. Currently, no functions write a result. print will, at least, probably run_js too, and some others. When a function calling parse_command (or parse_cmd_line) is not interested in the result, it is safe to pass NULL. Before calling the function, parse_command creates a GString and prints the result to stdout if verbose is enabled. You could do the same when calling most command functions directly, but not with those that expect a GString. Oh, additionally, I killed NOSPLIT, moved the typedef Command to uzbl.h, and created the struct CommandInfo which replaces a Command[2] array. That fixes FS#22, which is a warning with -pedantic. Heh.
| * | Add disable_stdin config optionGravatar Dequis2009-06-10
|/ /
* | Merge commit 'Dieterbe/experimental' into experimentalGravatar Tom Adams2009-06-09
|\ \
| * | Added support for full content zoom (AKA full page zoom)Gravatar root2009-06-08
| |/
* | Merge commit 'Dieterbe/experimental' into experimentalGravatar Tom Adams2009-06-07
|\| | | | | | | | | Conflicts: uzbl.c
| * make icon setting configurableGravatar Dieter Plaetinck2009-06-07
| |
* | Added a GtkPlug which plugs into a socket ID specified by -s.Gravatar Tom Adams2009-06-07
|/
* uzbl now builds on OpenBSDGravatar Abel `00z' Camarillo2009-06-06
|\
* \ merge in uranthers zoomlevel thingie. doesnt work yet because of strof not ↵Gravatar Dieter Plaetinck2009-06-02
|\ \ | | | | | | | | | recognized. stay tuned...