Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Make sure browser has local storage enabled by default as required by | Marco Peereboom | 2011-09-07 | 1 | -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 section | Marco Peereboom | 2011-09-07 | 1 | -12/+7 | |
| | ||||||
* | be a bit more conservative with a string pointer in the history stuff | Marco Peereboom | 2011-08-28 | 1 | -1/+6 | |
| | ||||||
* | Shuffle init of history to prevent some warnings. | Marco Peereboom | 2011-08-26 | 1 | -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 the | Marco Peereboom | 2011-08-26 | 1 | -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 retrieval | Marco Peereboom | 2011-08-25 | 1 | -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 myself | Marco Peereboom | 2011-08-25 | 1 | -1/+0 | |
| | ||||||
* | fix proxy booboo i made | Marco Peereboom | 2011-08-25 | 1 | -6/+3 | |
| | | | | reported by Manuel Giraud <manuel.giraud@univ-nantes.fr> | |||||
* | add history_autosave so that one can restore command and search history | Marco Peereboom | 2011-08-25 | 3 | -3/+94 | |
| | | | | upon restart/reload of xxxterm. | |||||
* | fix more :port corner cases | Marco Peereboom | 2011-08-25 | 1 | -1/+1 | |
| | | | | found and verified by todd | |||||
* | Fix makefile | Marco Peereboom | 2011-08-25 | 1 | -1/+1 | |
| | | | | from killasmurf86 | |||||
* | Shuffle the about code into guess url because it really belongs there; | Marco Peereboom | 2011-08-24 | 1 | -8/+19 | |
| | | | | | | side-effect is that now one can use aliases in commands. requested by mcbride | |||||
* | debug cruft | Marco Peereboom | 2011-08-24 | 1 | -1/+1 | |
| | ||||||
* | just kill :ports dead; it has been nothing but a hindrance. | Marco Peereboom | 2011-08-24 | 1 | -11/+2 | |
| | ||||||
* | add search history as well and generalize the history functions | Marco Peereboom | 2011-08-24 | 1 | -23/+44 | |
| | | | | completely | |||||
* | generalize history and remove debug cruft | Marco Peereboom | 2011-08-24 | 1 | -34/+42 | |
| | ||||||
* | dont add a history item if it is identical to the previous | Marco Peereboom | 2011-08-24 | 1 | -0/+11 | |
| | ||||||
* | add basic command history | Marco Peereboom | 2011-08-24 | 1 | -4/+86 | |
| | ||||||
* | better regex from mcbride | Marco Peereboom | 2011-08-24 | 2 | -2/+2 | |
| | ||||||
* | allow right click in command entry without losing focus | Marco Peereboom | 2011-08-24 | 1 | -1/+18 | |
| | ||||||
* | add a regex to determine if something is a url (to be used in | Marco Peereboom | 2011-08-24 | 3 | -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 Peereboom | 2011-08-24 | 1 | -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 Peereboom | 2011-08-24 | 1 | -13/+8 | |
| | | | | | | this makes guess_search work a little better. requested by mcbride who apparentely uses it. | |||||
* | document :set | Marco Peereboom | 2011-08-24 | 1 | -0/+19 | |
| | ||||||
* | in order to allow abort i had to simplify [`'] to [']. if we care we | Marco Peereboom | 2011-08-24 | 1 | -2/+2 | |
| | | | | can add it [`] back in as a seperate regex. | |||||
* | dont tell lies about http_proxy | Marco Peereboom | 2011-08-24 | 1 | -1/+3 | |
| | ||||||
* | allow http_proxy to be set at runtime. | Marco Peereboom | 2011-08-24 | 1 | -5/+48 | |
| | ||||||
* | also handle special int and floats in :set | Marco Peereboom | 2011-08-23 | 1 | -0/+12 | |
| | ||||||
* | Start working on the :set command. | Marco Peereboom | 2011-08-23 | 1 | -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 loaded | Marco Peereboom | 2011-08-23 | 1 | -2/+8 | |
| | | | | | | in webkit. This fixes FS#121 | |||||
* | Sites like flickr REQUIRE HTML5 local storage for the JS popup menus to | Marco Peereboom | 2011-08-23 | 2 | -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 config | Marco Peereboom | 2011-08-23 | 1 | -17/+89 | |
| | | | | file entries or not enough file descriptors. | |||||
* | Add a delay before highlighting the search terms. This delay is only used | Marco Peereboom | 2011-08-23 | 1 | -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 roll | Marco Peereboom | 2011-08-22 | 1 | -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 Peereboom | 2011-08-21 | 3 | -4/+19 | |
| | | | | It is disable by default because we expect xterm to soon fix this bug. | |||||
* | add some more for variety | Todd Fries | 2011-08-11 | 1 | -0/+5 | |
| | ||||||
* | better sbe creation | Michal Mazurek | 2011-08-11 | 1 | -23/+20 | |
| | | | | looks ok - marco | |||||
* | < statusbar_modify_attr(t, XT_COLOR_BLACK, "white"); | Michal Mazurek | 2011-08-10 | 1 | -1/+1 | |
| | | | | | | > statusbar_modify_attr(t, "white", XT_COLOR_BLACK); first foreground, then background. | |||||
* | display certificate exceptions when visiting untrusted site | Marco Peereboom | 2011-08-10 | 1 | -4/+46 | |
| | | | | color address bar white when initial load is called | |||||
* | notify_load_error_cb clobbers perfectly good URLs in uri_entry when a | Marco Peereboom | 2011-08-09 | 1 | -0/+12 | |
| | | | | | | popup fails to resolve dns. I don't get what the point of that functions is anyway so comment it out. Raphael please fix or delete this function. cvs blame said it was you who broke the precious. | |||||
* | missing spaces | Marco Peereboom | 2011-08-07 | 1 | -1/+1 | |
| | ||||||
* | start renaming karg elements to make them more obvious | Marco Peereboom | 2011-08-07 | 1 | -15/+15 | |
| | ||||||
* | fix silly {} in switch. noticed by akfaew | Marco Peereboom | 2011-08-07 | 1 | -10/+6 | |
| | ||||||
* | Fix in buffer commands. | Michal Mazurek | 2011-08-07 | 1 | -0/+1 | |
| | | | | | | the bug is: type in a buffer commad, delete tab - buffer command is not aborted, as it should be. | |||||
* | more copyrights | Marco Peereboom | 2011-08-06 | 3 | -2/+72 | |
| | ||||||
* | no need for this file as it is auto generated | Marco Peereboom | 2011-08-06 | 1 | -12/+0 | |
| | ||||||
* | add some missing copyrights and tags | Marco Peereboom | 2011-08-06 | 6 | -5/+36 | |
| | ||||||
* | default zoom levels should be set on tab creation, | Todd Fries | 2011-08-05 | 1 | -0/+1 | |
| | | | | | not on first post tab creation zoom twiddle ok marco@ | |||||
* | stupid socket bug DIE DIE DIE | Marco Peereboom | 2011-08-05 | 1 | -7/+11 | |
| | ||||||
* | Be much louder when connecting and DONT return success when something | Marco Peereboom | 2011-08-05 | 1 | -13/+28 | |
| | | | | fails in certain cases. This can be toned down once we find the error. |