about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge branch 'master' of opensource.conformal.com:/git/xxxtermMarco Peereboom2011-11-161-1/+1
|\
| * webkit 1.4 doesn't do dom right so use 1.5 as the cutoffmarco2011-11-151-1/+1
| |
* | add F2 here tooMarco Peereboom2011-11-161-0/+1
| |
* | Add proxy command.Marco Peereboom2011-11-164-2/+69
|/ | | | | We can now toggle a proxy with F2 and we also look at HTTP_PROXY environment variable. This is handy for toggling Tor on and off.
* add vi mode that eats ctrl/mod commands in inputMarco Peereboom2011-11-152-3/+9
|
* print build versionMarco Peereboom2011-11-151-0/+5
|
* bring back old keyboard behaviormarco2011-11-152-57/+48
|
* add a hybrid input modemarco2011-11-153-0/+43
|
* add webkit 1.2 codeMarco Peereboom2011-11-113-7/+53
|
* Move focus stuff into it's own file.Marco Peereboom2011-11-114-222/+277
| | | | This will enable us to support webkit 1.2 as well.
* focus nitsmarco2011-11-111-6/+15
|
* Modify some entry box overrides.Marco Peereboom2011-11-101-8/+8
| | | | | | | | Ass a side effect of all the keyboard changes some keys lost their override in address and search entry. Bring some of those back (like ctrl-t etc). I am not sure I captured all the right ones so come debate me if you think other changes need to be made to the defaults. One can always do their own by using the ! in a keybinding.
* silence autorun js for nowMarco Peereboom2011-11-091-1/+2
|
* only set mode if focus succeedsMarco Peereboom2011-11-091-2/+4
|
* Add funky workaround for fancy rich edit boxes in RTMarco Peereboom2011-11-091-0/+17
| | | | | | | | HTML5 defines a new property called "editable". None of the old textarea or input properties has that so I never keyed off it. Turn out that it is used so treat these as editable things as well. This works around an issue in the RT rich text editor which is special in it's own way.
* fix some sites that screw with keyboard focusMarco Peereboom2011-11-091-4/+12
| | | | | | | This changes the behavior buffercommands by returning USED vs PASSTHROUGH on non ascii characters. This seems to work but I don't know if this affects non-US keyboards in any way. Please test this a lot!
* dont run JS_HINTING as oftenMarco Peereboom2011-11-091-11/+4
| | | | and clean up some debug
* handle frames and iframes as wellMarco Peereboom2011-11-091-10/+101
| | | | | | | | So now the heuristic is: focus on something in frame or iframe if nothing is found there then focus on input or textarea. This code does NOT take tabindex into account! It simply picks the first occurrence. This is deliberate!
* kill focusInput and clearFocus JSmarco2011-11-091-54/+93
| | | | | | We are way smart and do it all directly in the dom. This was the last stumbling block screwing with running auto js a bit nicer and I think we have working insert or command mode.
* cleanup and fix hintingmarco2011-11-091-96/+8
| | | | missed debug
* first attemp at doing a true keyboard modeMarco Peereboom2011-11-082-18/+184
|
* delete unused variableMarco Peereboom2011-11-051-2/+0
|
* be more quietMarco Peereboom2011-11-051-9/+3
|
* Add autorun JavaScript after page loadsMarco Peereboom2011-11-054-0/+182
| | | | | | | | | | It tries to open a default.js file followed by host.domain.js. If the host.domain.js file does not exist it tries to open domain.js. It reads the content of the default AND host/domain file and executes it. All scripts go in the ~/.xxxterm/js/ directory.
* Prepare for release 1.8.1.Marco Peereboom2011-11-051-1/+1
|
* kill a -Wshadow debugMarco Peereboom2011-11-051-2/+0
|
* Add stop commandMarco Peereboom2011-11-052-0/+10
| | | | Fixes FS#186
* Add M-p to toggle pluginsMarco Peereboom2011-11-052-1/+4
|
* Add ctrl-p to toggle pluginsMarco Peereboom2011-11-051-0/+1
|
* move common warnings to common areaMarco Peereboom2011-11-041-2/+1
|
* better warningsMarco Peereboom2011-11-041-4/+4
|
* fix a shadowed varMarco Peereboom2011-11-041-4/+4
|
* add -Wshadow to clang targetMarco Peereboom2011-11-041-2/+6
|
* Fix command bar not disappearing when status bar is enabledMarco Peereboom2011-11-041-5/+7
| | | | | | | | Found by Feinerer <feinerer@logic.at> To the status bar maintainers, you guys need to take better care making sure you don't alter signal behavior when it is enabled. That is bad juju.
* Add useful tab_id to debugMarco Peereboom2011-11-041-12/+15
|
* one more filemarco2011-11-031-1/+3
|
* use install instead of cp and mkdir for installmarco2011-11-031-7/+8
|
* set default encoding to UTF-8 as requestedmarco2011-11-032-2/+2
|
* document zzmarco2011-11-031-0/+2
|
* add zz command to center pagemarco2011-11-031-0/+6
|
* Missed one more cmd_hide.marco2011-11-031-1/+2
|
* Fix a warning that was an actual issue.Marco Peereboom2011-11-031-5/+8
| | | | Found by gcc!
* fix extra <li>, pointed out by rgouveiaMarco Peereboom2011-11-031-1/+1
|
* fix a clang warningMarco Peereboom2011-11-031-1/+3
|
* add uninstall target and install icon alreadyMarco Peereboom2011-11-031-0/+19
|
* Fix 2 clever bugsMarco Peereboom2011-11-032-12/+27
| | | | | | | | | First :js/pl/cookie domain save wasn't saving the actual domain. I tried being clever to save a switch statement. FAIL. Second I tried to save an else statement. Again FAIL. Next time I am doing clever things please yell at me.
* enter was busted in link followingMarco Peereboom2011-11-031-2/+2
|
* Update .gitignore with generated deps and tags.Dave Collins2011-11-031-0/+2
|
* Add automatic dependency generation for linux.Dave Collins2011-11-031-4/+16
| | | | Also improve the makefile to use dynamic sources and objects.
* dang it i disabled threads by accidentMarco Peereboom2011-11-031-1/+1
|