aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-09-19shorter cookies-not-sent MSGcorvid
2011-09-18rename fncorvid
Trying to make it a little clearer. It's surprising how there isn't a good, brief, clear term for this. Discussion of the concept tends to start using words like "administration" and "control".
2011-09-17add show_quit_dialog dillorc optionJohannes Hofmann
2011-09-17color pref error MSGcorvid
2011-09-16use x,y for tools popupcorvid
2011-09-16position history menu below buttoncorvid
2011-09-16a compromise on tab appearance for the momentcorvid
It looks like plastic just _insists_ on mixing lots and lots of grey in, so if you pick a color that you like in plain/gtk+, it gets seriously washed out in plastic. There is a problem of getting nearly indistinguishable colors.
2011-09-16FL_THIN_UP_BOX for tabscorvid
2011-09-16staticcorvid
2011-09-16update TLDscorvid
What an awful situation it is in general.
2011-09-16don't print ALLOW MSGs in Capi_filters_testcorvid
2011-09-16privacy: never accept cookies in responses to third-party requestscorvid
as mentioned in section 7.1 of RFC 6265
2011-09-16put public suffix comparison directly in url.ccorvid
2011-09-14privacy: never send cookies in third-party requestscorvid
as mentioned in section 7.1 of RFC 6265
2011-09-14Allow key bindings for paging left/rightcorvid
2011-09-14fix up splash pagecorvid
2011-09-13UI theme preferencecorvid
2011-09-13allow fltk scheme experimentationcorvid
2011-09-11more pixmap cleaningcorvid
2011-09-11fix a couple of stray pixels in the tools pixmapcorvid
2011-09-09tiny a_Web_new() cleanupcorvid
2011-09-06Last changes before dillo-3.0 release (rc3)release-3_0Jorge Arellano Cid
2011-09-06remove trailing whitespaceJorge Arellano Cid
2011-09-06avoid redraw loops with ComplexComplexButtonResourceJohannes Hofmann
ComplexButtonResource was creating endless redraws. Testcase: <table> <tr> <td> <div> <button></button> </div> <div> words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words <span style="white-space:nowrap">And words in a span</span> <button></button> </div> </td> </table> This also fixes redraw loops with <button> in combination with limit_text_width=YES, so we no longer need to disable this option. Reported and testcase by: corvid <corvid@lavabit.com>
2011-09-03use Fl::option() when disabling UI tooltipscorvid
2011-09-02Cancel the expected URL after offering a download, part 2 (BUG#982)Jorge Arellano Cid
There was a convoluted way of using an already freed bw: first, one bw asks for a page, and that becomes conn->bw, and then another bw starts also asking for the page, and the first bw closes, invalidating the conn->bw, and then the second bw closes and the cancel expect code tries to use the old bw. Fixed now.
2011-08-29Added a few search options to dillorc. Also switched the default to duckduck.goJorge Arellano Cid
2011-08-29splash wordingcorvid
2011-08-29splash pageJorge Arellano Cid
2011-08-28fix doctree leakJohannes Hofmann
HTML like <div>hello</div> </body> </html> <div>hello</div> currently causes the document tree to be a forest with two root nodes. To ensure we don't leak the first tree, an additional root node is introduced to hold all document trees. Catched by: Jeremy's valgrind logs Reported by: corvid <corvid@lavabit.com>
2011-08-26Start new focused tabs with an empty titleJorge Arellano Cid
2011-08-24add support for CSS adjacent sibling selectorsJohannes Hofmann
2011-08-23Fix a redraw bug introduced by wrong procedure in the previous commitJorge Arellano Cid
This also fixes updating the window tittle.
2011-08-23Implemented a no-frills tab-overflow handlerJorge Arellano Cid
This handler is meant as a simple/extensible solution for the upcoming dillo-3.0 release.
2011-08-23Implemented variable-width tab buttonsJorge Arellano Cid
The width, measured in chars, is hardcoded now. However, it can become a dillorc option easily.
2011-08-22keysrc mention meta==commandcorvid
2011-08-18Set wizard as window resizable intead of UI (valgrind detected bug)Jorge Arellano Cid
2011-08-11save_link MSG only if we have a filenamecorvid
2011-08-07Focus render area after opening a new URLJorge Arellano Cid
2011-08-05Fixed CustLightButton "light" color deactivationJorge Arellano Cid
When hiding, or leaving a highlighted button into another tab, the "light" state lingered. This was specially nasty on deactivated buttons as there was no easy way to recover the normal state. e.g. * Keep the mouse over Stop until the page fully loads. * With mouse over Forw, go forward with keyboard until the end. * Mouse over Home, Ctrl-t, mouse click previous tab. * Start loading a page, mouse over Stop, Ctrl-t, wait for the page to fully load, go back to the loading tab * Mouse ove Home, hide panels, move mouse, show panels. * etc.
2011-08-05Fixed a bug in url.h and also added missing parenthesisJorge Arellano Cid
2011-08-05Added an API to access the expected URL resourceJorge Arellano Cid
This fixes a segfault bug introduced by changeset 350af350b840. By mistake the expected URL got inside the parallel handling of CCC, into a race condition with a segfault path.
2011-08-05mergeJorge Arellano Cid
2011-08-05Fix: Don't confuse FLTK when tabs overflow.Jorge Arellano Cid
When tabs overflow width, FLTK starts resizing the last tab label. This patch handles the case more gracefully.
2011-08-05Fix resize for the corner case of starting dillo in a tiny windowJorge Arellano Cid
FLTK has no problem in resizing from a "fitting" size into a "compressed" one, but if it starts compressed, things go wild.
2011-08-04Fix: include the close-tab tooltip in the workaround to avoid them lingerJorge Arellano Cid
This also removes the unused MenuBar variable.
2011-08-04FindBar cleanup: use the same size(0,0) trick we use for PanelsJorge Arellano Cid
2011-08-04minor cleanupsJorge Arellano Cid
2011-08-04mergeJorge Arellano Cid
2011-08-04Added a close-tab buttonJorge Arellano Cid
Although right-click (or middle-click) is much better, new users don't have an obvious way to find it out.