about summary refs log tree commit diff stats
path: root/xxxterm.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix 2 clever bugsMarco Peereboom2011-11-031-4/+6
| | | | | | | | | 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
|
* stale protomarco2011-11-021-2/+0
|
* move cookies to own filemarco2011-11-021-212/+0
|
* move one more function overMarco Peereboom2011-11-021-50/+0
|
* More file splitsMarco Peereboom2011-11-021-1867/+8
| | | | Add whitelist and settings files.
* Move more stuff into aboutMarco Peereboom2011-11-021-174/+0
|
* damn git never does what it says it doesmarco2011-11-021-1222/+7
| | | | these file remained behind
* Make the inspector not crash on exitmarco2011-11-021-8/+11
| | | | | Turns out that someone else frees resources so don't do that and let gtk handle it all by itself.
* Revert "Merge branch 'master' of opensource.conformal.com:/git/xxxterm"marco2011-11-021-1/+824
| | | | | This reverts commit e562a275ba9277803a4a6fe89e71545268986a7b, reversing changes made to b07b1b86ecd74b3042de4f7eb021ee0e39acb7d1.
* Revert "move some xtp functions over, RB_* prevented all"marco2011-11-021-146/+833
| | | | This reverts commit d831e178524c1f187a96cfdb3738e63e023d6258.
* move some xtp functions over, RB_* prevented allTodd T. Fries2011-11-011-833/+146
|
* Merge branch 'master' of opensource.conformal.com:/git/xxxtermTodd T. Fries2011-11-011-6/+2
|\ | | | | | | | | Conflicts: xxxterm.h
| * hook up all inspector signalsMarco Peereboom2011-11-011-6/+2
| |
* | sort whitelist stuff into whitelist.cTodd T. Fries2011-11-011-824/+1
|/
* Should have been part of the previous commitMarco Peereboom2011-11-011-225/+4
|
* enable web inspectorMarco Peereboom2011-10-311-15/+37
| | | | | Right click a web page to which shows a menu option called "inspect element". Click on that and play play play!
* do some more keybinding docoMarco Peereboom2011-10-291-1/+1
|
* add mechanism to run external JavaScriptMarco Peereboom2011-10-281-0/+78
| | | | | | | | | | Add the :script <filename> command to load and execute a piece of JavaScript in the current tab context. This should enable all kinds of awesome extension for xxxterm. This is also dangerous and not yet properly cordoned off so use with care. This feature is experimental. New things will be added to it as it becomes apparent what else needs to be done to add things such as password managers etc.
* shuffle some more code around to prevent crashesMarco Peereboom2011-10-281-22/+28
| | | | This fixes yet another session open crash.
* Fix crash during session open.Marco Peereboom2011-10-281-15/+13
| | | | | | | This was an out of order race between deleting old tabs and creating new ones. So delete old tabs first before opening the new ones. Found by MALLOC_OPTIONS=S and I am sure jy-p has run into this. Never ignore bus errors from now on ;-)
* shut JS exceptions upMarco Peereboom2011-10-281-2/+2
|
* add autofocus_onload optionMarco Peereboom2011-10-271-2/+7
| | | | | When set the browser will attempt to enable the default input on a website. Off by default
* fix command and search historyMarco Peereboom2011-10-271-6/+16
|
* make sure we initialize the scriptMarco Peereboom2011-10-271-0/+7
|
* shuffle includesMarco Peereboom2011-10-271-4/+2
|
* rewrite hinting code completelyMarco Peereboom2011-10-271-174/+160
| | | | | | | | | | | | | Import new vimprobable JavaScript code. Make hinting mode now print what has been typed. It works along the same lines as '/' and '?' in search mode but it uses '.' and ',' instead. Focus on default input box and unfocus on default input box when ESC is hit. This also adds i and ESC to switch between input/command mode.
* don't crash when toggling mode on pageMarco Peereboom2011-10-261-3/+5
| | | | found by rgouveia
* Add hinting that opens in a new tabMarco Peereboom2011-10-261-1/+14
| | | | Requested by Ingo Feinerer <feinerer@logic.at>
* remove cvs tagMarco Peereboom2011-10-251-1/+0
|
* add plugin whitelistMarco Peereboom2011-10-251-13/+219
| | | | Fixes FS#133
* shut up gcc 4.6.1 warningsMarco Peereboom2011-10-251-2/+2
|
* fix segfault in config file parsingmarco2011-10-251-8/+11
| | | | found by Ingo Feinerer <feinerer@logic.at>
* Don't display empty errors on cert saveMarco Peereboom2011-10-241-1/+1
|
* Another day another thread implementation.Marco Peereboom2011-10-241-9/+86
| | | | | | | | | | | The issue comes down to things like flash player are not playing nice with the gdk mutex. It does not correctly follow the enter/leave protocol. This code now detects this flaw and uses a workaround. There is no telling if this code catches all flash player locking violations but it tries its college best. Flash is such awesome quality that it often crashes on the way out. We can easily ignore that crash so whatever.
* shuffle commentsMarco Peereboom2011-10-211-3/+3
|
* Initialize gcrypt like $deity indentedMarco Peereboom2011-10-211-22/+50
| | | | Nowhere in the doco of gnutls does one find such important info.
* Revert "Make https coloring work in gtk3"Marco Peereboom2011-10-201-5/+1
| | | | This reverts commit 5d59581f05930cdc31b26b0a6d163baa035c0e89.
* Make https coloring work in gtk3Marco Peereboom2011-10-171-1/+5
|
* annotationsMarco Peereboom2011-10-171-3/+3
|
* Shut gcc > 4.2 for real this timeMarco Peereboom2011-10-141-1/+2
|
* Shut gcc > 4.2 up as wellMarco Peereboom2011-10-141-4/+4
| | | | Really worthless warnings but I can't help myself.
* shut clang --analyze up as much as possibleMarco Peereboom2011-10-131-6/+15
| | | | | | Not all of these are actual issues but less is more. It still has the RB false positives :-( Cookie for the one who fixes that.
* remove gdk_threads_init(); for linuxMarco Peereboom2011-10-121-0/+2
| | | | | | | | | It hangs the external flash player. The docs explicitly require this call however tests show that it isn't required and it makes things better. So try using it this way and see if there is some thread fallout. I'll take a cluebat as to why this can't be done on linux.
* fix mime_type on linux that got clobberedMarco Peereboom2011-10-121-6/+10
| | | | found by Ingo Feinerer <feinerer@logic.at>
* bring threads back from deadmarco2011-10-101-36/+95
| | | | IT'S ALIIIIIIIIIVEEEEEEEE
* set encoding to webview not soup-sessionMarco Peereboom2011-10-061-3/+2
| | | | *sigh*
* fix search direction on new pageMarco Peereboom2011-10-061-12/+14
| | | | | When on a new page a search is resumed the search used to go backward instead of forward. This has been plenty irritating for a while.
* add encoding supportMarco Peereboom2011-10-061-1/+25
| | | | | This adds default and per-tab encoding support. FS#149
* delete some dead codeMarco Peereboom2011-10-061-29/+0
| | | | | This code was used when a url failed to load but confused things. It was disabled many moons ago so it is time to kill it.