Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-04-09 | Preparing 3.0.4 finalrelease-3_0_4 | Jorge Arellano Cid | |
2014-04-09 | Comments and help text for Web search from the location bar | Jorge Arellano Cid | |
2014-04-09 | few splash page changes | corvid | |
2014-04-08 | Updated the splash page for dillo-3.0.4 release. | Jorge Arellano Cid | |
2014-04-08 | Minimal NEWS update | Jorge Arellano Cid | |
2014-04-08 | Minimal updates to README | Jorge Arellano Cid | |
2014-04-07 | update release-3_0_4-rc2 tag | Johannes Hofmann | |
2014-04-07 | prepare 3.0.4-rc2release-3_0_4-rc2 | Johannes Hofmann | |
2014-04-07 | Added tag release-3_0_4-rc2 for changeset acfbb2a63382 | Johannes Hofmann | |
2014-04-07 | switch off background image loading by default | Johannes Hofmann | |
2014-04-05 | dillorc, fix missing '#' in color | corvid | |
2014-04-05 | update user agent example | corvid | |
2014-04-05 | dillorc, for http_language, give an example seen in default firefox rather ↵ | corvid | |
than an arbitrary convoluted one | |||
2014-04-05 | dillorc, mention gleam theme | corvid | |
2014-04-04 | Added tag release-3_0_4-rc1 for changeset 89f2ec463887 | Johannes Hofmann | |
2014-04-04 | prepare dillo-3.0.4-rc1release-3_0_4-rc1 | Johannes Hofmann | |
2014-04-04 | more | corvid | |
2014-04-04 | improve MSG | corvid | |
2014-04-02 | comment detail | corvid | |
2014-04-02 | fix crash and use proper requester URL for CSS images | Johannes Hofmann | |
2014-04-01 | update ChangeLog | Johannes Hofmann | |
2014-04-01 | resolve CSS background-image URLs relative to styleheet URL | Johannes Hofmann | |
2014-03-30 | turn off MSG | corvid | |
2014-03-20 | Fixed a bug related to line breaking. (Originally applied to floats repo.) | Sebastian Geerken | |
2014-03-16 | query string, more of following firefox's pattern | corvid | |
2014-03-16 | Separate 'Accept:' value for stylesheets | corvid | |
2014-03-16 | Separate 'Accept:' values for images and the rest | corvid | |
2014-03-16 | query string, more of following firefox's pattern | corvid | |
2014-03-16 | rm Accept-Charset | corvid | |
As https://developer.mozilla.org/en-US/docs/HTTP/Content_negotiation puts it, "Considering that : * UTF-8 is now well-supported by all relevant user-agents, * the presence of the header increases the configuration-based entropy exposed, * the presence of the header increases the data transmitted for each request * almost no sites are using the value of this header for choosing content during the negotiation, browsers started to stop sending this header in each request, starting with Internet Explorer 8, Safari 5, Opera 11 and Firefox 10. In the absence of Accept-Charset:, servers can simply assume that UTF-8 and the most common characters sets are understood by the client" Chrome still had it, but then took it out in 2013: http://code.google.com/p/chromium/issues/detail?id=112804 | |||
2014-03-16 | http query: resemble firefox somewhat to be less conspicuous for the sake of ↵ | corvid | |
privacy | |||
2014-03-15 | Accept-Encoding: deflate | corvid | |
The httpbis people currently word it as: 'Note: Some non-conformant implementations send the "deflate" compressed data without the zlib wrapper.' | |||
2014-03-05 | use delete[] to delete array | Johannes Hofmann | |
2014-03-05 | use a singe matchCache per CssContext | Johannes Hofmann | |
This fixes a crash with the following HTML: <head> <style type="text/css"> .first .second .third{ border-top-color:#aaa !important; } #n .a, .b{ color: #aaa !important; border:#bbb; } </style> </head> <body> <div id="submit" value="Submit" class="a"> jhu </div> </body> The problem is that CssSelectors can be shared between normal and !important rules. The matchCacheOffset was overwritten in that case causing the crash on access. noticed-by and test-case-by: corvid | |||
2014-03-03 | fix clang warning | Johannes Hofmann | |
2014-03-02 | consts for overriding const functions from Fl_Browser | corvid | |
clang complains about this | |||
2014-02-25 | extend http-equiv parsing to handle redirects without url= | Johannes Hofmann | |
On some site (m.bahn.de) the meta element looked like this: <meta http-equiv="Refresh" content="0;http://www.bahn.de/m/;fitScript=0/"> To handle the missing 'url=' in the content attribute we extend the parsing to skip beyond the ';' in case there is no 'url=' reported-by: Andreas Kemnade | |||
2014-02-18 | fix filetype guessing bug introduced a few years ago by xhtml acceptance | corvid | |
2014-02-16 | css: embed klass into CssSimpleSelector | Johannes Hofmann | |
2014-02-16 | css: embed selectorList in CssSelector | Johannes Hofmann | |
2014-02-16 | lout: provide default initAlloc in SimpleVector constructor | Johannes Hofmann | |
2014-02-16 | css: mark CssStyleSheet::apply() as const | Johannes Hofmann | |
2014-02-16 | lout: mark getters as const | Johannes Hofmann | |
2014-02-16 | merge | Johannes Hofmann | |
2014-02-15 | share user agent style between CssContext's | Johannes Hofmann | |
2014-02-15 | make embed/source/object work with display:none | corvid | |
2014-02-15 | merge | Johannes Hofmann | |
2014-02-15 | css: move cached matching information out of CssStyleSheet | Johannes Hofmann | |
CssStyleSheet::apply() no longer modifies the CssStyleSheet. Cached matching information is now store in a MatchCache object which is part of CssContext. This makes it possible to share CssStyleSheet's between multiple CssContext's. | |||
2014-02-15 | TODO | corvid | |
2014-02-15 | input image shouldn't recognize hspace,vspace,border attrs | corvid | |
2014-02-15 | rudimentary support for html5 video,audio,source,embed | corvid | |