Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-03-02 | use wordStyle() for bullets in Html_tag_open_frame() | Johannes Hofmann | |
This avoids giant bullets if an <iframe> has width or height specified. | |||
2009-03-01 | parse style attr only if needed | corvid | |
2009-02-17 | [mq]: view-stylesheets | Jorge Arellano Cid | |
2009-02-15 | Fixed handling of META's content-type with no MIME type (e.g. only charset). | Jorge Arellano Cid | |
e.g. some links at http://git.kernel.org/gitweb.cgi didn't render. e.g. #2 This page didn't render: <html> <head> <meta http-equiv="content-type" content="; charset=utf-8"/> <title></title> </head> <body> Generating.... </body> </html> | |||
2009-02-12 | Implemented a close-tab button for the GUI | João Ricardo | |
2009-02-11 | Whitespace: re-indented some lines wider than 79 characters | Jorge Arellano Cid | |
2009-02-09 | whitespace cleanup: 's/ +$//g' | Jorge Arellano Cid | |
2009-02-08 | Fixed the load image popup option. Also cleaned up the API a bit. | corvid | |
Introduced a_Bw_get_url_doc(). Mainly for popup menus. | |||
2009-02-08 | API cleanup: a_Html_add_new_image() loses the boolean parameter. | Jeremy Henty | |
This patch cleans things up by renaming a_Html_add_new_image() to a_Html_image_new(), removing the boolean parameter and making the caller add the image (or not) as appropriate. | |||
2009-02-08 | merge | Johannes Hofmann | |
2009-02-08 | Switched load images on/off feature to the Tools menu | corvid | |
2009-02-06 | merge with main | Johannes Hofmann | |
2009-02-06 | add type to CSS properties | Johannes Hofmann | |
2009-02-06 | fix tag length check (noticed by corvid) | Johannes Hofmann | |
2009-02-06 | fix check for name/id mismatch (noticed by corvid) | Johannes Hofmann | |
2009-02-05 | move CssProperty::Name and CssProperty::Value out of CssProperty class | Johannes Hofmann | |
2009-02-03 | merge | Jorge Arellano Cid | |
2009-02-03 | Fix a race condition with charset, and the case of charset after CSS in HEAD | Jorge Arellano Cid | |
Race condition example: www.blisty.cz charset after CSS ex. : http://www.daemonnews.org | |||
2009-02-03 | Minor cleanups | Jorge Arellano Cid | |
2009-02-02 | remove unused order_count parameter | Johannes Hofmann | |
It seems that in dillo-0.8.0-css-3 it was used to make sure that later definitions of the same CSS property have more weight than previous ones. If for example a first stylesheet sets background-color to black, and a second stylesheet sets it to green, green should win. But as we currently parese everything in order (throughing away all parsed CSS data when a new CSS stylesheet has arrived), we don't need to remember the original ordering of stylesheets. | |||
2009-02-01 | Minor function signature cleanup | Jorge Arellano Cid | |
2009-02-01 | Removed a redundant check. | Jorge Arellano Cid | |
2009-02-01 | Fixed a leak in Html_tag_open_link() | Jeremy Henty | |
2009-01-31 | set inheritBackgroundColor for <p> | Johannes Hofmann | |
2009-01-28 | rm FontSizes* | corvid | |
2009-01-27 | Implemented the tools button with CSS options. Also removed nav.h from html.cc | Jorge Arellano Cid | |
2009-01-26 | don't strdup() text passed to ListItem::initWithText() | Johannes Hofmann | |
Memory allocation for text is done within Textblock itself (noticed by Jeremy). | |||
2009-01-26 | merge | Jorge Arellano Cid | |
2009-01-26 | Bug fix: Collapse adjacent "\t\f\n\r" characters into a single space. | Jorge Arellano Cid | |
Test case: http://www.dillo.org/test/weird_pre.html | |||
2009-01-26 | Fixed a regression with PRE characters (square boxes) (fixes d16cec5095be) | corvid | |
Test case: http://www.dillo.org/test/jorgen.html | |||
2009-01-26 | switch to DILLO_HTML_PARSE_MODE_PRE based on style->whiteSpace | Johannes Hofmann | |
2009-01-26 | factor out Html_parse_common_attrs() (by jcid) | Johannes Hofmann | |
2009-01-25 | call inheritBackgroundColor() in Html_tag_open_default() | Johannes Hofmann | |
As Html_tag_open_default() does not create a new dw widget, background color settings would be lost otherwise (noticed by corvid). | |||
2009-01-23 | Cleanup and logic change in a_Cache_set_content_type(). | Jorge Arellano Cid | |
2009-01-23 | Bug fix: stop parsing right after open tag when stop_parser is set. | Jorge Arellano Cid | |
2009-01-22 | Fix url string usage by calling the appropriate macro (2 places). | Jorge Arellano Cid | |
2009-01-22 | Fix for d29cdb5b842e (charset decoding given in HTTP and META). | Jorge Arellano Cid | |
2009-01-21 | Fixed charset decoding given in HTTP and META. (bugs and race condition) | Jorge Arellano Cid | |
2009-01-17 | merge | Jorge Arellano Cid | |
2009-01-17 | Remove unused functions. | Jorge Arellano Cid | |
2009-01-17 | add parse_embedded_css option | Johannes Hofmann | |
2009-01-14 | Fix: inherit bgcolor from parent widget (images). Also cleanups. | Jorge Arellano Cid | |
2009-01-14 | Make now-unused debug messages silent. | Jorge Arellano Cid | |
2009-01-12 | replace fixed break space in Html_tag_open_li() with a user agent style | Johannes Hofmann | |
This changes allows to set the margin of <li> elements to zero via CSS. Subsequent <li> elements then have no spacing in between. Test case: <html> <head> <style type="text/css"> li { border: 1px solid black; margin: 0; } </style> </head> <body> <ul> <li>hello</li> <li>hello</li> </ul> </body> </html> There should be no vertical space between the two boxes. | |||
2009-01-10 | merge with main | Johannes Hofmann | |
2009-01-09 | add load_stylesheets option | Johannes Hofmann | |
Setting load_stylesheets=NO will disable loading of remote CSS stylesheets. CSS style information embedded in the page with <style></style> elements will still be used. | |||
2009-01-09 | avoid warning about uninitialized variables | Johannes Hofmann | |
2009-01-09 | fix float->int cast | Johannes Hofmann | |
2009-01-09 | remove no longer used functions | Johannes Hofmann | |
2009-01-07 | Cleanup of cache.c WRT charset decoders. | Jorge Arellano Cid | |
This patch gets rid of a series of valgrind complains with this page: http://selenic.com/pipermail/mercurial/ |