Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-27 | Allow viewing XHTML served as such | Jorge Arellano Cid | |
2010-09-13 | bookmarks dpi urlstr leak | corvid | |
noticed in Jeremy's valgrind logs | |||
2008-12-08 | #define a_Cookies_set() when DISABLE_COOKIES is set | Jeremy Henty | |
Ensure that cookies.h declares the same symbols whether or not DISABLE_COOKIES is set. | |||
2010-09-06 | merge | Johannes Hofmann | |
2010-09-06 | re-indent Html_tag_open_q() for consistency | Jeremy Henty | |
2010-09-06 | use png_uint_32 for png width and height | corvid | |
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-06 | add inheritBackgroundColor () in more cases | Johannes 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-05 | consistent screaming quotes | Jeremy Henty | |
2010-08-29 | Removed some obsolete copyright notices that lingered after rewrites. | Jorge Arellano Cid | |
2010-08-27 | reimplement Rectangle::intersectsWith() | Johannes Hofmann | |
2010-08-25 | merge | Johannes Hofmann | |
2010-08-25 | html.cc cleanups | Jeremy Henty | |
They remove two unused structs and make variable names consistent between function typedefs and function definitions. | |||
2010-08-24 | filter msg (grows increasingly similar to Jeremy's proposal) | corvid | |
2010-08-24 | Capi_filters_allow msg | corvid | |
2010-08-23 | add lout::misc::roundInt() for double -> int conversion | Johannes 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-22 | file dpi close pre tag for empty directory listing | corvid | |
2010-08-19 | turn off some cookie MSGs | corvid | |
2010-08-05 | mention certs dir in man page | corvid | |
2010-08-05 | https clearer language in dialog | corvid | |
"trust certificate" didn't really suggest that we were going to save it away and trust it _forever_. | |||
2010-08-03 | spelling | corvid | |
2010-08-03 | Show 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-03 | Fix segfault with https and self-signed certs | corvid | |
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-30 | clearer Capi_filters_allow msg | Jeremy Henty, corvid | |
2010-07-25 | Based automake directories on top_srcdir and top_builddir | onepoint | |
2010-07-17 | s/space/TABS in src/Makefile.am | Jorge Arellano Cid | |
2010-07-17 | Fix src/Makefile.am to allow a different build directory. | onepoint | |
2010-06-20 | dillorc more detailed information on fonts | corvid | |
2010-06-19 | "URW Chancery L" default cursive font | corvid | |
http://www.codestyle.org/css/font-family/sampler-Cursive.shtml claims that it is almost always present. | |||
2010-06-06 | vsource use a_Dpip_dsh_write_str when possible | corvid | |
2010-06-06 | vsource page add title element | corvid | |
2010-06-06 | vsource fix extraneous </pre> with empty source file | corvid | |
2010-05-28 | reminder | corvid | |
2010-05-16 | disallow nameless cookies | corvid | |
2010-05-10 | avoid automatic focus of first child when window gets focus | Johannes Hofmann | |
2010-05-10 | fix focus handling | Johannes 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-29 | don't need switch anymore | corvid | |
it became unnecessary when anchors were separated out in November | |||
2010-04-29 | fix redraw optimization | Johannes 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-28 | fix dw simple image test | corvid | |
2010-04-27 | spelling | corvid | |
2010-04-27 | const qualifier | corvid | |
2010-04-27 | filter allow if nohost -> nohost | corvid | |
2010-04-27 | back out cef38874b78f | corvid | |
Surprising that it took a week for me to notice anything was wrong. | |||
2010-04-25 | complete a_Dns_freeall() | Johannes Hofmann | |
This is an attempt to make valgrind a little bit happier. | |||
2010-04-24 | fix typo in comment | Johannes Hofmann | |
2010-04-23 | merge | Jorge Arellano Cid | |
2010-04-23 | Fix referer URL for zero-delay redirections with META refresh | Jorge Arellano Cid | |
2010-04-23 | Add const qualifier to a_History_get_url() | Jorge Arellano Cid | |
2010-04-23 | use CSS rule position when specificity is equal | Johannes 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-22 | check for title attr for INPUT element | corvid | |
seems reasonably common for INPUT to have one | |||
2010-04-22 | use belowmouse() as fltk::Widget for tooltips | corvid | |