about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* Small fix to my previous patch.Stevan Andjelkovic2011-02-181-6/+4
| | | | ok marco@
* FS #56Marco Peereboom2011-02-171-2/+5
|
* move keyboard mappings from C+q to C-q.Marco Peereboom2011-02-173-141/+148
| | | | | Fix a bug where the wrong value was being stored for the keybinding name. Work around a bug in gtk+ where 10 was considered a valid keystroke.
* make audio go to vlc because we need a gui to control itMarco Peereboom2011-02-171-1/+1
|
* clarifyMarco Peereboom2011-02-151-0/+3
|
* add work_dir and document keybindingMarco Peereboom2011-02-151-0/+320
|
* fix '{js,cookie} save' behavior to modify in-memory state as wellTodd Fries2011-02-151-36/+53
| | | | ok lets try it marco@
* add work_dirMarco Peereboom2011-02-131-23/+47
|
* * Added a wrapper around webkit_web_frame_get_uri(), and used it allStevan Andjelkovic2011-02-092-82/+75
| | | | | | | | | | | | | | | over the code. * Fixed FS#53, patch by Raphael Graf: http://opensource.conformal.com/flyspray/index.php?do=details&task_id=53&project=5 * Rewrote one instance of "while (!feof(f)) {" into "for (;;) { if ((line = fparseln(f, &linelen, NULL, NULL, 0)) == NULL)", there is one instance of "while(!feof(f))" left in the code... * Minor fix to keybindings stuff. * Some other minor fixes.
* activate progress and favicon in the statusbar only if (show_url == 0)Todd Fries2011-02-081-16/+72
| | | | ok marco@
* improve cookie jar appearance. One table per domain, put content in aEdd Barrett2011-02-081-22/+41
| | | | | | | | | | scrollable text area. Need to add a list of links to each table later - suggested by todd. OK todd: "I like your diff as it is enough to say it should go in. its a clear improvement!"
* print session cookies and js properlyMarco Peereboom2011-02-041-1/+1
|
* early url notifyTodd Fries2011-02-041-10/+21
| | | | "that's fine" marco@
* mechanical diff to use macros for callbacks to signals, similar to other codeTodd Fries2011-02-041-22/+22
| | | | ok x2 marco@
* fix silly crash, found by dhillMarco Peereboom2011-02-041-1/+3
|
* and print the shiny new keybindings in setMarco Peereboom2011-02-031-3/+47
|
* disable debug *sigh*Marco Peereboom2011-02-031-2/+0
|
* add keybindingsMarco Peereboom2011-02-032-6/+213
|
* Add name to keys so that we can index it from user input.Marco Peereboom2011-02-031-98/+129
| | | | | | | Move for to TAILQ when walking keys array. The array is now only used for startup defaults. This is the beginings for keybindings. jy-p wants this.
* fix unamerican keyboards from Raphael Graf <r@undefined.ch>Marco Peereboom2011-02-031-19/+32
| | | | tested by rgouveia@cosmico.net on .pt and .fr keyboards
* Trim leading spaces of load_uri input.Stevan Andjelkovic2011-02-021-0/+8
| | | | ok marco@
* monster diff to try to get rid of err and errx. people run into these andMarco Peereboom2011-02-021-98/+195
| | | | | | | think the app crashes. use of errx and err is from now on prohibited and must be run by me if one wants to add one.
* fix stevan's broken space barMarco Peereboom2011-02-021-2/+2
|
* couple of knfsMarco Peereboom2011-02-021-9/+16
|
* Man page fix (make guess_url, status{s,h} respect the alphabeticalStevan Andjelkovic2011-02-023-54/+54
| | | | | | | | | | order). Made rs[] (runtime settings) more readable, by indenting it. download_dir = ~/downloads rather than ~downloads in config. ok marco@
* spelloMarco Peereboom2011-02-011-1/+1
|
* correct note, pointed out by stevanMarco Peereboom2011-02-011-1/+1
|
* document browser_modeMarco Peereboom2011-02-011-0/+30
|
* new config file is all disabled so only needs tinkering if one knows whatMarco Peereboom2011-02-011-50/+67
| | | | one really wants to do
* add new browser_mode for people who get confused by all the little knobs.Marco Peereboom2011-02-011-7/+66
|
* honor enable_cookie_whitelist = 0. from sthenMarco Peereboom2011-02-011-3/+4
|
* dont errx when empty url is type. foudn by tdmMarco Peereboom2011-02-011-1/+1
|
* document home, found by tdmMarco Peereboom2011-02-011-0/+2
|
* Added a slightly modified patch for the guess search heuristic from RivoStevan Andjelkovic2011-02-013-7/+28
| | | | | | Nurges <rix at estpak dot ee>. Also made the guess search heuristic optional.
* As a web page loads js screws with us and sometimes we end up without focus.Marco Peereboom2011-02-011-13/+14
| | | | Hopefully this fixes the remaining focus issues.
* add missing -s to man page.Marco Peereboom2011-02-011-0/+3
| | | | found by jy-p
* make ctrl-click work again. someone sprinkled misguidedMarco Peereboom2011-02-011-20/+38
| | | | | | | | | | gtk_widget_grab_focus that would focus a newly created tab instead of the active one. hilarity ensued with sending keystrokes to wrong webview. fix some spaces and other strdup crap too while at iy. next time i'll beat someone up for this; i don't particularly enjoy fixing other people's bugs. Please test your code before committing it.
* fix statusbar hide and show commands so that they match what it said in theEdd Barrett2011-02-011-2/+2
| | | | | | manual page. OK marco
* make sure when one ctrl-clicks that the bfl is emptied so that the backwardMarco Peereboom2011-01-301-1/+2
| | | | button doesn't eroneously come on
* Added a vimperator style status bar, based on Todd's earlier patch.Stevan Andjelkovic2011-01-303-23/+162
| | | | | | | | Added a new heuristic for guess_url_type; if the string passed to the function isn't a local file and contains no dot, assume that the user wants to search for the string. ok marco@
* Fixed mistake in last patch.Stevan Andjelkovic2011-01-291-1/+1
|
* Fixed encoding for arguments to aliases, enabling searching for "C++",Stevan Andjelkovic2011-01-291-42/+30
| | | | "C#" etc, and fixed so that guess_url_type is called on all input uris.
* the status bar is not right and not what i intended.Marco Peereboom2011-01-291-82/+24
| | | | | | | | | for example if you type :favadd and bump your mouse over a link the typed text gets overwritten. this needs to be rethought. i think i left edd's commits untouched
* urlencode search terms (including reserved characters) so that you can searchEdd Barrett2011-01-281-1/+5
| | | | | | for 'C#' or 'C++' for example. OK marco
* better borders on xtp tables, keybinding for cookie jar, progress bars onEdd Barrett2011-01-272-8/+35
| | | | | | | | | download manager, basename on download urls. marco seems busy, 18:01 <todd> I expressedly ok your dl diff you prodded marco about, it causes no harm, looks better, and provides nice functionality
* this makes t->cmd a beginning status bar like thing.Todd Fries2011-01-271-17/+75
| | | | | | | | | | - progress indicator updates here now also - favicon updated here now also - URL: <%s> for url of page when not in :cmd mode - Link: <%s> for url of link when hovering over edd likes it, no negative feedback, can easily be backed out or tweaked committing primarily because this matches what email of the last few days ago concluded and marco seems busy
* reap children; somehow i thought gtk handled that.Marco Peereboom2011-01-211-2/+48
| | | | might break linux and freebsd because of #include
* untested diff so it comes out.Marco Peereboom2011-01-211-40/+74
|
* install man page in right location on freebsd.Marco Peereboom2011-01-191-1/+1
| | | | from Tom Murphy <openbsd@pertho.net>
* keep track of socket fd, incase we execvp(), so we can close it andTodd Fries2011-01-191-1/+7
| | | | | it can be used on the other side ok marco@