summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-18Fix some links, add release daterelease-2_2_1Jorge Arellano Cid
2011-07-18Minor corrections to user_help.htmlJorge Arellano Cid
2011-07-16Fix a keybinding in user_help.htmlJorge Arellano Cid
2011-07-16user_help versioncorvid
2011-07-16README versioncorvid
2011-07-16Updated the README file with build directionsJorge Arellano Cid
2011-07-15Updated README (fltk version) and NEWSJorge Arellano Cid
2011-07-15Updated dillorc and keysrc links in help filesJorge Arellano Cid
2011-07-15Eliminated a pack of compiler warnings (gcc-4.6.1 amd64)Jorge Arellano Cid
2011-07-14wordingcorvid
2011-07-14Update dillorc URL in splash pageJorge Arellano Cid
2011-07-14ChangelogJorge Arellano Cid
2011-07-14Updated READMEJorge Arellano Cid
2011-07-14Updated about:splash page and set VERSION to 2.2.1Jorge Arellano Cid
2011-07-13ChangelogJorge Arellano Cid
2011-07-10rm backslash line continuation from dGetline()corvid
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-June/008461.html and no one objected, so...
2011-07-10MSG giving HTTP status if page was emptycorvid
Sometimes a server will send, say, 500 Internal Server Error with a Content-Length of 0, and Dillo just happily shows the empty page instead of the document that you thought you were going to get, and it's confusing.
2011-07-10MSGscorvid
2011-06-11fix table leak with overlapping spanscorvid
2011-06-07widgets draw their own border and backgroundJohannes Hofmann
Don't draw background for widgets in Textblock::drawLine(). This fixes the border_background_margin.html test in css_compat.
2011-06-07support !important in style attributesJohannes Hofmann
2011-06-05Don't allocate gif->linebuf so soon.corvid
Occasionally, linebuf leaks have appeared in Jeremy's valgrind logs. linebuf is used in Gif_literal() and Gif_sequence(). They are called by Gif_process_code(), which is called by Gif_decode(). In Gif_process_bytes(), you have to be in state 3 to call it. linebuf is allocated inside Gif_do_img_desc(), which is called by GIF_Block(). In Gif_process_bytes(), you have to be in state 2 to call it. After the allocation, there are a couple of cases where the code can return while still in state 2, which would mean coming back to Gif_do_img_desc() later and leaking the linebuf by allocating another. Jeremy has kindly run on this patch for ten days or so without incident.
2011-06-03smallcaps use the proper enum valuecorvid
2011-06-03cookies doccorvid
2011-05-27ChangeLogcorvid
2011-05-20free content/transfer decoder in Cache_entry_freecorvid
This leak had long made occasional appearances in Jeremy's valgrind logs, and I supposed it was some complicated CCC interaction, and didn't want to put a band-aid over the problem without knowing why it's happening first. But now I finally dug into it, and I see it coming from aborting in Cache_process_queue() (not viewable, for instance), and then a_Cache_process_dbuf() never gets IOClose, which makes a lot of sense!
2011-05-02indentationcorvid
2011-05-02findtext search msgcorvid
2011-05-01fix handling of CSS length values of 0 without unitJohannes Hofmann
Reported by: "Rob S." <mr_semantics@hotmail.com> Submitted by: corvid <corvid@lavabit.com>
2011-04-20catch up on ChangeLog a bitcorvid
2011-04-14https dpi: error strings for certificate error code 19 and 20corvid
I was tired of those meaningless numbers.
2011-04-04clearer MSG for suspicious image sizecorvid
I saw a MSG with size 0x[something], and of course I thought it was complaining that a size was given in hex notation.
2011-04-03flush the Textblock we last added toJohannes Hofmann
In Html_write_raw() the current textblock can change while parsing HTML. Instead of flushing the Textblock we started with, we now flush the current one. This fixes a long standing drawing bug where text was not positioned initially.
2011-04-02dlib/Makefile.am: clean up whitespaceJeremy Henty
2011-03-31html.cc: Html_tag_open_meta(): check that the URL exists before redirecting.Jeremy Henty
2011-03-27dw/style.cc: drawBorder*(): use the correct border colors.Jeremy Henty
2011-02-11downloads dpi: init some time variablescorvid
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-February/008058.html
2011-02-07dpi/downloads.cc: make the indentation consistent.Jeremy Henty
2011-01-08configure.in: define the {int,uint}*_t types with AC_TYPE_*.Jeremy Henty
* * * drop d_size
2011-01-28**/Makefile.am: #include $(top_srcdir).Jeremy Henty
2011-01-28**/Makefile.am: replace .. paths with absolute paths using $(top_builddir).Jeremy Henty
2011-01-08configure.in: fix the test code alignment.Jeremy Henty
2011-01-08configure.in: replace obsolete AC_TRY_LINK_FUNC with ↵Jeremy Henty
AC_LINK_IFELSE/AC_LANG_CALL.
2011-01-08configure.in: replace obsolete AC_TRY_COMPILE with ↵Jeremy Henty
AC_COMPILE_IFELSE/AC_LANG_PROGRAM.
2011-01-08configure.in: replace obsolete AC_ERROR with AC_MSG_ERROR.Jeremy Henty
2011-01-08configure.in: replace AC_CANONICAL_SYSTEM with AC_CANONICAL_TARGET.Jeremy Henty
2011-01-08Add some missing entries to .hgignore.Jeremy Henty
2011-01-09don't need --use-images with fltk2-configcorvid
This brings fltk's image/* files into the equation (which turn into libfltk2_images.a). Since dillo doesn't use them, ld seems to have the good sense not to add any of it in, but we can save it the trouble of looking through it...
2011-01-07fix Pointer::hashValue() by including config.hJohannes Hofmann
Submitted by: Sebastian Geerken <sgeerken@dillo.org>
2011-01-05configure.in: remove obsolescent AC_HEADER_STDC.Jeremy Henty