summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-01-09cookies use server date to interpret Expires attrcorvid
2010-01-09timestamps a little less strictcorvid
2010-01-09cookies follow draft spec's simple parsingcorvid
2010-01-09cookies follow draft spec for domainscorvid
2010-01-09cookies follow draft spec for pathscorvid
2010-01-09cookies: rm version, comment, comment url, port, Cookie2corvid
2010-01-09rm support for ancient ~/.dillo/cookies filecorvid
2010-01-07make Doctree a non-virtual classJohannes Hofmann
Doctree now is a proper class with it's own implementation. StyleEngine no longer needs to provide the Doctree interface itself. This hopefully make the code easier to understand and should also be a bit faster as no virtual methods are involved.
2010-01-07also try bindir when looking for dpidcorvid
2010-01-05check cursor in StyleAttrs::equals() and StyleAttrs::hashValue()Johannes Hofmann
Noticed by corvid, see: http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-January/007146.html
2010-01-02cookies don't leak extra domain/path attrscorvid
2010-01-01MSGcorvid
2009-12-31silence a MSGcorvid
2009-12-31cookie domainscorvid
2009-12-31only strip path when generating defaultcorvid
Having seen the pre-existing strip call in Cookies_get() -- and thinking unixly of paths -- I did the wrong thing. I was set straight when google gave me a path attribute of /search and the URL path was /search.
2009-12-31cookie pathscorvid
2009-12-30cookies with longer paths go first in headercorvid
2009-12-30domain comparison not case-sensitivecorvid
2009-12-30handle max-age + expires error casecorvid
2009-12-28clean up cookie expiration/replacement and sessionscorvid
2009-12-27handle whitespace following cookie attribute valuecorvid
This isn't beautiful, but I don't want to make sweeping changes in cookie parsing if I don't expect to test it much myself. I think leading whitespace would be legal, too, but I won't worry about that for now.
2009-12-25adjust findLineIndexcorvid
I noticed that when I was highlighting text in line n, Dillo was also redrawing line n-1. Incidentally, it seems that the default arrow cursor points with the tip of the black arrow itself, and not with the tip of the white border surrounding it.
2009-12-23little more spelling/grammarcorvid
2009-12-23typocorvid
2009-12-22spellingcorvid
2009-12-20recognize text-{top,bottom} as vertical-align valuescorvid
2009-12-19mergeJohannes Hofmann
2009-12-19ChangeLogJohannes Hofmann
2009-12-19fix CSS_SHORTHAND_DIRECTIONS case in CssParserJohannes Hofmann
* Don't modify type parameter in tokenMatchesProperty() if there is no match. * Use correct type for each of the values parsed in a CSS_SHORTHAND_DIRECTIONS-style declaration.
2009-12-18mergeJorge Arellano Cid
2009-12-18Changed the default background color when allow_white_bg=NOJorge Arellano Cid
2009-12-18mergeJorge Arellano Cid
2009-12-18support border-width: thin | medium | thickJohannes Hofmann
2009-12-17focus main on enterJohannes Hofmann
submitted by furaisanjin <furaisanjin@gmail.com>
2009-12-10msgcorvid
2009-12-09remove DISPLAY_LASTJohannes Hofmann
2009-12-08add DISPLAY_NONEJohannes Hofmann
2009-12-08add support for CSS property list-style-positionJohannes Hofmann
2009-12-07adjust comments (submitted by Tim Nieradzik)Johannes Hofmann
2009-12-05initialize fontAttrs.letterSpacing in test programsJohannes Hofmann
It would be a good idea to add a proper constructor to FontAttrs, but my attempts to do so while avoiding unnecessary initialization before attrs are copied over anyway resulted in pretty complicated c++ stuff which I want to avoid. We might find a sane way to do it some day. Reported by: Tim Nieradzik <tim.nieradzik@gmx.de>
2009-12-04add dummy word for empty lines in plain.ccJohannes Hofmann
2009-12-02set style.display in StyleEngineJohannes Hofmann
2009-11-30documentation: no more multiple viewscorvid
2009-11-30typocorvid
2009-11-30more of samecorvid
2009-11-30documentation: update references to LinkReceivercorvid
2009-11-30documentation: anchorcorvid
2009-11-30Separate Anchors out from Wordscorvid
The reason for this is that they were in the way when adding parbreaks. http://lists.auriga.wearlab.de/pipermail/dillo-dev/2009-November/007044.html
2009-11-29respect UTF-8 when splitting long lines in plain.cc (noticed by corvid)Johannes Hofmann
When splitting long lines in plain text to avoid X11 coordinate overflows we need to make sure that multibyte UTF-8 chars are not split. Additionally combining chars like accents should stay together with their base char.
2009-11-27use a_UIcmd_open_url() instead of a_Nav_push() in dillo.ccJohannes Hofmann