aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-09-27Allow viewing XHTML served as suchJorge Arellano Cid
2010-09-13bookmarks dpi urlstr leakcorvid
noticed in Jeremy's valgrind logs
2008-12-08#define a_Cookies_set() when DISABLE_COOKIES is setJeremy Henty
Ensure that cookies.h declares the same symbols whether or not DISABLE_COOKIES is set.
2010-09-06mergeJohannes Hofmann
2010-09-06re-indent Html_tag_open_q() for consistencyJeremy Henty
2010-09-06use png_uint_32 for png width and heightcorvid
For libpng-1.2, png_uint_32 is an unsigned long. For libpng-1.4, it's normally an unsigned int. With 1.4, gcc complained because png_get_IHDR() wants a ptr to whatever a png_uint_32 is, and dillo gave a ptr to an unsigned long.
2010-09-06add inheritBackgroundColor () in more casesJohannes Hofmann
This makes background color work for elements for which no new widget is added. It just a workaround until complete style handling for inline elements is implemented. Submitted-by: Jeremy Henty <onepoint@starurchin.org>
2010-09-05consistent screaming quotesJeremy Henty
2010-08-29Removed some obsolete copyright notices that lingered after rewrites.Jorge Arellano Cid
2010-08-27reimplement Rectangle::intersectsWith()Johannes Hofmann
2010-08-25mergeJohannes Hofmann
2010-08-25html.cc cleanupsJeremy Henty
They remove two unused structs and make variable names consistent between function typedefs and function definitions.
2010-08-24filter msg (grows increasingly similar to Jeremy's proposal)corvid
2010-08-24Capi_filters_allow msgcorvid
2010-08-23add lout::misc::roundInt() for double -> int conversionJohannes Hofmann
Add lout::misc::roundInt() and use it for double -> int conversion instead of doing the + 0.5 trick all over the place. It was wrong for negative values and we might even replace roundInt() with rint() from libm in the future. Reported-by: corvid
2010-08-22file dpi close pre tag for empty directory listingcorvid
2010-08-19turn off some cookie MSGscorvid
2010-08-05mention certs dir in man pagecorvid
2010-08-05https clearer language in dialogcorvid
"trust certificate" didn't really suggest that we were going to save it away and trust it _forever_.
2010-08-03spellingcorvid
2010-08-03Show the self-signed cert warning dialog even when no CN given.corvid
I'm still not getting the page afterward -- wrote the request, read zero bytes -- but oh well.
2010-08-03Fix segfault with https and self-signed certscorvid
Crashed when no "/CN=" substring in certificate name. I saw this with calomel.org (which just had "/C=US", if I recall correctly).
2010-07-30clearer Capi_filters_allow msgJeremy Henty, corvid
2010-07-25Based automake directories on top_srcdir and top_builddironepoint
2010-07-17s/space/TABS in src/Makefile.amJorge Arellano Cid
2010-07-17Fix src/Makefile.am to allow a different build directory.onepoint
2010-06-20dillorc more detailed information on fontscorvid
2010-06-19"URW Chancery L" default cursive fontcorvid
http://www.codestyle.org/css/font-family/sampler-Cursive.shtml claims that it is almost always present.
2010-06-06vsource use a_Dpip_dsh_write_str when possiblecorvid
2010-06-06vsource page add title elementcorvid
2010-06-06vsource fix extraneous </pre> with empty source filecorvid
2010-05-28remindercorvid
2010-05-16disallow nameless cookiescorvid
2010-05-10avoid automatic focus of first child when window gets focusJohannes Hofmann
2010-05-10fix focus handlingJohannes Hofmann
Let fltk decide which widget should get the focus when the window regains focus. Unfocus any form widgets when the view area is clicked with the left mouse button. Reported by: Roger http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-May/007486.html
2010-04-29don't need switch anymorecorvid
it became unnecessary when anchors were separated out in November
2010-04-29fix redraw optimizationJohannes Hofmann
When a widget changes it's height, this may affect the position of other words in the same line. Take care by only applying the redraw optimization if there are no other words in the line. This special case is quite common e.g with nested <div>'s or table based layouts and the redraw optimization avoids unnecessary redraws. Reported by: Dennis Nezic
2010-04-28fix dw simple image testcorvid
2010-04-27spellingcorvid
2010-04-27const qualifiercorvid
2010-04-27filter allow if nohost -> nohostcorvid
2010-04-27back out cef38874b78fcorvid
Surprising that it took a week for me to notice anything was wrong.
2010-04-25complete a_Dns_freeall()Johannes Hofmann
This is an attempt to make valgrind a little bit happier.
2010-04-24fix typo in commentJohannes Hofmann
2010-04-23mergeJorge Arellano Cid
2010-04-23Fix referer URL for zero-delay redirections with META refreshJorge Arellano Cid
2010-04-23Add const qualifier to a_History_get_url()Jorge Arellano Cid
2010-04-23use CSS rule position when specificity is equalJohannes Hofmann
When two CSS rules have the same specificity make sure they are applied in the order as they appear in the stylesheets (see [1]). Testcase: <html><head><style> A:link {color: red} A.foo {color: green} </style></head><body> <a class="foo" href=http://www.dillo.org>should be green</a> </body></html> Reported by: corvid [1] http://www.w3.org/TR/CSS2/cascade.html#cascading-order
2010-04-22check for title attr for INPUT elementcorvid
seems reasonably common for INPUT to have one
2010-04-22use belowmouse() as fltk::Widget for tooltipscorvid