Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-10-20 | Fixed a bug in w3c_mode. It wasn't working at all! | Jeremy Henty | |
2009-10-15 | remove "using namespace" statements from header files | Johannes Hofmann | |
"using namespace" in headers also affects all files that include the header which is unwanted and unexpected in most cases. | |||
2009-10-03 | tooltip for A element | corvid | |
2009-10-03 | some tooltips | corvid | |
2009-09-20 | trim some spaces | corvid | |
2009-09-17 | turn off PrevWasSPC for inline widgets | corvid | |
Noticed that there weren't spaces after the math images in http://en.wikipedia.org/wiki/Linear_programming | |||
2009-08-02 | fix segfault in Html_parse_doctype | corvid | |
BUG 918. http://www.freiesmagazin.de/mobil/freiesMagazin-2009-08-bilder.html contained <!DOCTYPE HTML PUBLIC //W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> so the last character in the tag was an open quote. | |||
2009-08-02 | use new addText() in Html_process_space | corvid | |
2009-08-02 | restore constness of word in Html_process_word | corvid | |
2009-08-02 | a Textblock::addText() that takes len arg | corvid | |
2009-08-02 | treat ideographic characters (Chinese/Japanese) as words | corvid | |
2009-08-02 | split words that contain whitespace | corvid | |
e.g. dillo browser | |||
2009-07-28 | css charset | corvid | |
css 2.1 is strict about wanting precisely '@charset "charsetname";' | |||
2009-07-26 | allow collapse of   (space numeric char. ref.) in word | corvid | |
2009-07-16 | Verify dpi URLs for instant redirects. | Jorge Arellano Cid | |
2009-07-15 | Fix segfault from AREA when MAP is missing name attribute | corvid | |
2009-07-06 | use CssLength | Johannes Hofmann | |
2009-06-29 | comment wording | corvid | |
2009-06-29 | fix image size check in a_Html_image_new() | Johannes Hofmann | |
2009-06-29 | use IMAGE_MAX_AREA instead of IMAGE_MAX_W and IMAGE_MAX_H | Johannes Hofmann | |
2009-06-22 | remove system includes | corvid | |
2009-06-19 | Added a limit for PNG image size | Jorge Arellano Cid | |
2009-05-22 | consts | corvid | |
2009-05-22 | use backgroundStyle() to ensure that backgroundColor is set | Johannes Hofmann | |
2009-05-22 | rm current_bg_color | corvid | |
2009-05-21 | DilloHtml Buf_Consumed unneeded | corvid | |
2009-05-15 | Refactor: isolate calls to utf8 functions into a single source file. | corvid | |
2009-05-10 | Fix a memory leak with DilloImage structures | Hofmann Johannes | |
2009-05-09 | [mq]: replace-DW2TB-with-HT2TB | Jeremy Henty | |
2009-05-08 | merge | Jorge Arellano Cid | |
2009-05-08 | spelling | corvid | |
2009-05-07 | Cleanup in a_Image_new() signature | Jeremy Henty | |
2009-05-06 | separate a_Capi_get_flags and a_Capi_get_flags_with_redirection | corvid, Jorge Arellano Cid | |
2009-05-03 | Removed redundant caller NULL checks already in the API | Jeremy Henty | |
2009-05-01 | fix comment to a_Html_image_new() | Jeremy Henty | |
2009-04-24 | dStrdup | corvid | |
2009-04-22 | merge | Johannes Hofmann | |
2009-04-22 | disable forms while stylesheets are pending | Johannes Hofmann | |
To avoid lost user input on repush, we disable forms until all stylesheets have been loaded. Also open select widgets cause crashes on repush. | |||
2009-04-19 | Camel case in src/dillo.cc | Tim Nieradzik | |
2009-04-18 | Implemented Instant client-side redirects (META refresh with delay=0) | Jorge Arellano Cid | |
http://www.w3.org/TR/2008/NOTE-WCAG20-TECHS-20081211/H76.html | |||
2009-04-08 | support CSS @import directive | Johannes Hofmann | |
2009-03-26 | Memory leak fix for 7d3d7c405cf4 | Jorge Arellano Cid | |
2009-03-26 | compiler warning fix: add parenthesis | Jorge Arellano Cid | |
2009-03-26 | Added support for a quoted URL in META refresh | Jorge Arellano Cid | |
2009-03-19 | load <style></style> content only if applicable | Johannes Hofmann | |
2009-03-11 | clear DilloHtmlState stack on destruction | Johannes Hofmann | |
2009-03-10 | replace visited_color dillorc option | Johannes Hofmann | |
to change the color of visited links add a line :visited {color: red} to your ~/.dillo/style.css file instead. | |||
2009-03-06 | remove text_color dillorc option | Johannes Hofmann | |
To change the default text color add a line like body {color: yellow} to your ~/.dillo/style.css file. | |||
2009-03-06 | remove bg_color dillorc option | Johannes Hofmann | |
To set a custom background color add a line like: body {background-color: white} to your ~/.dillo/style.css file. This also works for plain text display and image viewing. | |||
2009-03-05 | reduce number of styleEngine::style0() calls | Johannes Hofmann | |
Rearrange code, so that for each new element, StyleEngine::setNonCssHints() is called before the first call to StyleEngine::style() or StyleEngine::wordStyle(). This avoids unnecessary CSS style computations which are expensive. Add an assertion to ensure this. |