about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* include bsd/stdlib on linux from Aleksander Balicki ↵marco2011-09-262-0/+4
| | | | <balicki.aleksander@gmail.com>
* remove a dead store from Aleksander Balicki <balicki.aleksander@gmail.com>marco2011-09-261-2/+1
|
* Update .gitignore for all object files instead of individually listed one.Dave Collins2011-09-231-2/+1
|
* Add .gitignore to cleanup git status. From Cody Wright. FS#155.Cody Wright2011-09-231-0/+8
|
* shut clang upmarco2011-09-191-3/+9
|
* Enable tab-completion for the :set command.Raphael Graf2011-09-111-5/+9
| | | | ok marco
* better thread diff; linux doesn't like gdk_thread_initMarco Peereboom2011-09-091-7/+1
| | | | | help from Aleksander Balicki <balicki.aleksander@gmail.com> to determine this
* Don't initialize the thread subsytem; the flash plugin on linux hangsMarco Peereboom2011-09-091-6/+8
| | | | | | | when that is done. reported and diagnosed with Aleksander Balicki balicki.aleksander@gmail.com
* make sure anchors in sessions don't get killed when loaded.Marco Peereboom2011-09-081-1/+1
| | | | From: Luis Useche <useche@gmail.com>
* commit command history earlier because cmd_execute can/will mangle itMarco Peereboom2011-09-071-2/+1
|
* Allow auto-completion of session names.Marco Peereboom2011-09-071-10/+81
| | | | From: Luis Useche <useche@gmail.com>
* Make sure browser has local storage enabled by default as required byMarco Peereboom2011-09-071-1/+1
| | | | | | | browser_mode = normal. This didn't work right when running without a config file. Reported by edd.
* init threads a bit earlier and don't enter critical sectionMarco Peereboom2011-09-071-12/+7
|
* be a bit more conservative with a string pointer in the history stuffMarco Peereboom2011-08-281-1/+6
|
* Shuffle init of history to prevent some warnings.Marco Peereboom2011-08-261-19/+31
| | | | | Work around about: pages to correctly go back and forth on history. Catch webkit popup menu.
* The webkit history functions are really really stupid so work around theMarco Peereboom2011-08-261-12/+75
| | | | | | | fact that they can't figure out how to handle backwards/forwards properly. Fixed now in all spots minus the popup menu backward/forward options because those aren't wired into the browser.
* rework connect logic on cert retrievalMarco Peereboom2011-08-251-15/+16
| | | | | | | | | | | | | | | | | | this was prompted by a bug report from todd help and ok toddrework connect logic on cert retrieval this was prompted by a bug report from todd help and ok toddrework connect logic on cert retrieval this was prompted by a bug report from todd help and ok toddrework connect logic on cert retrieval this was prompted by a bug report from todd help and ok todd
* i swear one day i'll remember to cleanup after myselfMarco Peereboom2011-08-251-1/+0
|
* fix proxy booboo i madeMarco Peereboom2011-08-251-6/+3
| | | | reported by Manuel Giraud <manuel.giraud@univ-nantes.fr>
* add history_autosave so that one can restore command and search historyMarco Peereboom2011-08-253-3/+94
| | | | upon restart/reload of xxxterm.
* fix more :port corner casesMarco Peereboom2011-08-251-1/+1
| | | | found and verified by todd
* Fix makefileMarco Peereboom2011-08-251-1/+1
| | | | from killasmurf86
* Shuffle the about code into guess url because it really belongs there;Marco Peereboom2011-08-241-8/+19
| | | | | | side-effect is that now one can use aliases in commands. requested by mcbride
* debug cruftMarco Peereboom2011-08-241-1/+1
|
* just kill :ports dead; it has been nothing but a hindrance.Marco Peereboom2011-08-241-11/+2
|
* add search history as well and generalize the history functionsMarco Peereboom2011-08-241-23/+44
| | | | completely
* generalize history and remove debug cruftMarco Peereboom2011-08-241-34/+42
|
* dont add a history item if it is identical to the previousMarco Peereboom2011-08-241-0/+11
|
* add basic command historyMarco Peereboom2011-08-241-4/+86
|
* better regex from mcbrideMarco Peereboom2011-08-242-2/+2
|
* allow right click in command entry without losing focusMarco Peereboom2011-08-241-1/+18
|
* add a regex to determine if something is a url (to be used inMarco Peereboom2011-08-243-9/+28
| | | | | | conjunction with guess_search = 1). regex string isn't quite right but get it in so that people can test.
* strip port number of end of whitelist entries.Marco Peereboom2011-08-241-0/+12
| | | | | | | unfortunately this means one should hand edit the runtime file and delete all entries that do have the :port notation. requested by jy-p and others.
* use an actual working heuristic to determine if something is a valid url;Marco Peereboom2011-08-241-13/+8
| | | | | | this makes guess_search work a little better. requested by mcbride who apparentely uses it.
* document :setMarco Peereboom2011-08-241-0/+19
|
* in order to allow abort i had to simplify [`'] to [']. if we care weMarco Peereboom2011-08-241-2/+2
| | | | can add it [`] back in as a seperate regex.
* dont tell lies about http_proxyMarco Peereboom2011-08-241-1/+3
|
* allow http_proxy to be set at runtime.Marco Peereboom2011-08-241-5/+48
|
* also handle special int and floats in :setMarco Peereboom2011-08-231-0/+12
|
* Start working on the :set command.Marco Peereboom2011-08-231-3/+83
| | | | | It now show all int, float, string and string+special settings that can be displayed. Allowing to activate settings at runtime is next.
* When saving a session save the URL entry bar if there is no URL loadedMarco Peereboom2011-08-231-2/+8
| | | | | | in webkit. This fixes FS#121
* Sites like flickr REQUIRE HTML5 local storage for the JS popup menus toMarco Peereboom2011-08-232-3/+29
| | | | | | | | | | | work. This strikes me as insane for anyone who likes some sort of security. Then again if one chooses to use sites like flickr chances are that one doesn't care the least bit. So to work around this enable local storage for domains that are in the cookie white list. This leaves a sour taste in my mouth but what else can one do? Fixes FS#137
* add a start page exception to complain about things like invalid configMarco Peereboom2011-08-231-17/+89
| | | | file entries or not enough file descriptors.
* Add a delay before highlighting the search terms. This delay is only usedMarco Peereboom2011-08-231-20/+70
| | | | | | when the search string is smaller than 4 characters. This should help jy-p and mcbride who like to use slow slow machines ;-)
* Abort commands when there are no submatches in regex; had to hand rollMarco Peereboom2011-08-221-26/+93
| | | | | | | | | this because regex doesn't provide useful feedback. Fix bug introduced in 1.387 where 12: would be moved into the command entry as :12. This was requested by Raphael while farting in this code. regex help from Michal
* Instead of forcing the xterm clipboard workaround make it an option.Marco Peereboom2011-08-213-4/+19
| | | | It is disable by default because we expect xterm to soon fix this bug.
* add some more for varietyTodd Fries2011-08-111-0/+5
|
* better sbe creationMichal Mazurek2011-08-111-23/+20
| | | | looks ok - marco
* < statusbar_modify_attr(t, XT_COLOR_BLACK, "white");Michal Mazurek2011-08-101-1/+1
| | | | | | > statusbar_modify_attr(t, "white", XT_COLOR_BLACK); first foreground, then background.
* display certificate exceptions when visiting untrusted siteMarco Peereboom2011-08-101-4/+46
| | | | color address bar white when initial load is called