summaryrefslogtreecommitdiff
path: root/render
Commit message (Collapse)AuthorAgeFilesLines
* Add param and return details to layout_solve_width() comment.Michael Drake2008-06-101-0/+10
| | | | svn path=/trunk/netsurf/; revision=4322
* Establish a new block formatting context for blocks with non-visisble ↵Michael Drake2008-06-061-0/+33
| | | | | | overflow style. (9.4.1) svn path=/trunk/netsurf/; revision=4270
* Recurse into <area> and <a>, too.John Mark Bell2008-05-281-3/+5
| | | | svn path=/trunk/netsurf/; revision=4220
* Squash more warnings.John Mark Bell2008-05-261-3/+3
| | | | svn path=/trunk/netsurf/; revision=4210
* Simplify code using xmlDocGetRootElement().James Bursa2008-05-251-4/+1
| | | | svn path=/trunk/netsurf/; revision=4201
* The core code has always assumed a locale of "C".John Mark Bell2008-05-132-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Do not change the locale globally, else things will break in weird and wonderful ways. Introduce utils/locale.[ch], which provide locale-specific wrappers for various functions (currently just the <ctype.h> ones). Fix up the few places I can see that actually require that the underlying locale is paid attention to. Some notes: 1) The GTK frontend code has not been touched. It is possible that reading of numeric values (e.g. from the preferences dialogue) may break with this change, particularly in locales that use something other than '.' as their decimal separator. 2) The search code is left unchanged (i.e. assuming a locale of "C"). This may break case insensitive matching of non-ASCII characters. I doubt that ever actually worked, anyway. In future, it should use Unicode case conversion to achieve the same effect. 3) The text input handling in the core makes use of isspace() to detect word boundaries. This is fine for western languages (even in the C locale, which it's currently assuming). It will, however, break for CJK et. al. (this has always been the case, rather than being a new issue) 4) text-transform uses locale-specific variants of to{lower,upper}. In future this should probably be performing Unicode case conversion. This is the only part of the core code that makes use of locale information. In future, if you require locale-specific behaviour, do the following: setlocale(LC_<whatever>, ""); <your operation(s) here> setlocale(LC_<whatever>, "C"); The first setlocale will change the current locale to the native environment. The second setlocale will reset the current locale to "C". Any value other than "" or "C" is probably a bug, unless there's a really good reason for it. In the long term, it is expected that all locale-dependent code will reside in platform frontends -- the core being wholly locale agnostic (though assuming "C" for things like decimal separators). svn path=/trunk/netsurf/; revision=4153
* Accomodate text area scrollbars in fixed widths. Fix radio button / checkbox ↵Michael Drake2008-04-251-4/+9
| | | | | | issue. svn path=/trunk/netsurf/; revision=4108
* Change handling of form element widths / heights.Michael Drake2008-04-251-12/+57
| | | | svn path=/trunk/netsurf/; revision=4107
* Make floats that follow a cleared float heed the clear. Fixes position of ↵Michael Drake2008-04-232-4/+18
| | | | | | search form on BBC homepage. svn path=/trunk/netsurf/; revision=4104
* Maybe fix table layout problem caused by r4100.Michael Drake2008-04-231-0/+4
| | | | svn path=/trunk/netsurf/; revision=4103
* Fix absolute positioning when there's a float between the box and its ↵Michael Drake2008-04-211-1/+22
| | | | | | containing block. svn path=/trunk/netsurf/; revision=4101
* Improve handling of absolutely positioned table cells. Corrects positioning ↵Michael Drake2008-04-205-11/+38
| | | | | | of "Weather" box contents on BBC homepage. svn path=/trunk/netsurf/; revision=4100
* Launch redirects to unsupported URLs in other applications.John Mark Bell2008-04-191-0/+4
| | | | svn path=/trunk/netsurf/; revision=4098
* Various text selection improvements:Michael Drake2008-04-071-0/+27
| | | | | | | | | + Fix redraw bug where parts of old selections would get left behind + Enable selection of list marker boxes (bullet points and numbers) + Improve formatting of copied-to-clipboard or saved text selections + Select click anywhere outside current selection now clears current selection svn path=/trunk/netsurf/; revision=4079
* - riscos/gui.c(path_to_url): escape the characters which need to be escaped ↵John Tytgat2008-04-021-2/+2
| | | | | | | | | | | | | | when converting the host path to file: URL. - utils/{url.c,url.h}(url_escape): * added parameter 'toskip' to specify number of input characters which need to be skipped in the escape process. This avoids extra malloc buffer juggling. * added parameter 'escexceptions' to specify the characters which need to be excluded from the escape process. Solves SF tracker ID 1910169. Note that when discname in path contains '/' characters (case: "file:///Sunfish#192.168.0.50::/home/joty.$/jo.html") or there is no discname specified at all (case "file:///HostFS:$/jo.htm"), you need an UnixLib fix as in http://www.riscos.info/websvn/listing.php?repname=gccsdk&path=%2Ftrunk%2Fgcc4%2F&rev=3395&sc=1 svn path=/trunk/netsurf/; revision=4069
* Only record that the HTML alignment was set by a table element if it is ↵Michael Drake2008-03-291-6/+7
| | | | | | actually set. svn path=/trunk/netsurf/; revision=4058
* Implement sprite support for GTK using librospriteJames Shaw2008-03-291-1/+1
| | | | svn path=/trunk/netsurf/; revision=4051
* CSS min/max-height overrides height.Michael Drake2008-03-211-1/+1
| | | | svn path=/trunk/netsurf/; revision=4008
* Unsightly hack around flickering to white in nsgtk. This needs to be sorted ↵John Mark Bell2008-03-211-0/+37
| | | | | | out properly as a matter of urgency. svn path=/trunk/netsurf/; revision=4005
* CSS min-height and max-height properties override fixed heights too.Michael Drake2008-03-201-12/+16
| | | | svn path=/trunk/netsurf/; revision=4003
* Re-express table_find_cell algorithm to avoid relying upon side-effects.John Mark Bell2008-03-191-5/+13
| | | | svn path=/trunk/netsurf/; revision=3986
* Lose spurious *John Mark Bell2008-03-191-1/+1
| | | | svn path=/trunk/netsurf/; revision=3985
* Squash "implicit declaration of function 'gui_multitask'" warnings.John Mark Bell2008-03-193-6/+0
| | | | svn path=/trunk/netsurf/; revision=3980
* Ensure that scrollbar foreground is actually visible (black on black, for ↵John Mark Bell2008-03-141-2/+10
| | | | | | example, isn't very usable) svn path=/trunk/netsurf/; revision=3950
* Change meaning of c->redraw_time to be the earliest time to reflow during ↵Rob Kendrick2008-03-111-4/+15
| | | | | | page asset fetch. Have the time selected vary depending on how long the last reflow took. svn path=/trunk/netsurf/; revision=3925
* Insert implied boxes rather than entirely removing empty table/row group ↵John Mark Bell2008-03-101-22/+62
| | | | | | nodes from the box tree. svn path=/trunk/netsurf/; revision=3920
* Fix last pointer manipulation for table and row_group boxes.John Mark Bell2008-03-101-2/+4
| | | | svn path=/trunk/netsurf/; revision=3919
* Take account of any table height specified through CSS or HTML.John Mark Bell2008-03-101-1/+10
| | | | svn path=/trunk/netsurf/; revision=3918
* Apply min/max-height to absolutely positioned elements.Michael Drake2008-03-101-0/+1
| | | | svn path=/trunk/netsurf/; revision=3916
* Adjust y values after seting a min/max-height.Michael Drake2008-03-091-5/+22
| | | | svn path=/trunk/netsurf/; revision=3910
* Initial stab at min/max-height support.Michael Drake2008-03-091-1/+46
| | | | svn path=/trunk/netsurf/; revision=3909
* When floats have clear right or left set, as well as being put below floats ↵Michael Drake2008-03-091-20/+29
| | | | | | on that side, they should still follow normal behaviour with respect to floats on the other side. svn path=/trunk/netsurf/; revision=3904
* Fix clear CSS property support when applied on floats.Michael Drake2008-03-091-5/+20
| | | | svn path=/trunk/netsurf/; revision=3902
* Round percentage width to nearest pixel with integers.Michael Drake2008-03-081-2/+3
| | | | svn path=/trunk/netsurf/; revision=3901
* Fix float wrapping when available space equals space that would be used by ↵Michael Drake2008-03-071-1/+1
| | | | | | float. svn path=/trunk/netsurf/; revision=3898
* No space between rows of floats.Michael Drake2008-03-071-4/+4
| | | | svn path=/trunk/netsurf/; revision=3895
* Round percentage widths to nearest pixel instead of down.Michael Drake2008-03-061-2/+2
| | | | svn path=/trunk/netsurf/; revision=3891
* Centered tables are a special case.Michael Drake2008-03-051-1/+15
| | | | svn path=/trunk/netsurf/; revision=3880
* Squash warning.Michael Drake2008-03-011-1/+1
| | | | svn path=/trunk/netsurf/; revision=3875
* Periodically reflow the page while fetching a page's objects. Make buffer ↵Michael Drake2008-02-291-6/+22
| | | | | | all rendering default. svn path=/trunk/netsurf/; revision=3874
* Fix align attributes on TABLE etc being overridden in the table's cells by ↵Michael Drake2008-02-281-4/+15
| | | | | | the default alignment of cells with no align attribute. svn path=/trunk/netsurf/; revision=3873
* Make content_reset actually do what it's meant to (i.e. reset the ↵John Mark Bell2008-02-271-1/+6
| | | | | | | | appropriate members) Fix up CONTENT_MSG_REFRESH scheduled events to gracefully the refresh URL disappearing from under them. svn path=/trunk/netsurf/; revision=3870
* Don't meddle with blockquote's margins.Michael Drake2008-02-261-2/+3
| | | | svn path=/trunk/netsurf/; revision=3869
* SignednessWarnings.squash()John Mark Bell2008-02-254-66/+77
| | | | | | Aside from a number of instances of const being cast away (mostly relating to the urldb, which is correct to only export const data) this now builds warning-free with GCC 4 on x86, which is nice. svn path=/trunk/netsurf/; revision=3868
* Improve handling of HTML attributes / markup:Michael Drake2008-02-252-216/+392
| | | | | | | | | | | | | | | | | | | | | * Only apply presentational HTML attributes if no more important CSS has been set for the property. (NetSurf used to be a bit hit-and-miss when presentational markup and CSS were mixed.) * Change table cellpadding and border handling to happen as soon the boxes styles are available, rather than after the whole table has been constructed. Also fix default table border colour. * Improve handling of CENTER tag and ALIGN attribute. These could not be correctly supported in the default CSS file, so block level element alignment is now done during box construction. (Fixes #1891379, #1824492, #1723853) Form improvements: * Small MAXLENGTH values on text inputs now reduce element width. (Fixes #1894854) * Prevent select option text from wrapping. svn path=/trunk/netsurf/; revision=3866
* Also flag box as invisible so it'll have no effect on layoutJohn Mark Bell2008-02-251-0/+1
| | | | svn path=/trunk/netsurf/; revision=3864
* Ignore spurious top-level framesets correctly (previously declared memory ↵John Mark Bell2008-02-251-1/+5
| | | | | | exhaustion, which is obviously wrong) svn path=/trunk/netsurf/; revision=3863
* For form gadgets, specified percentage width is inclusive of margin, border ↵Michael Drake2008-02-171-9/+23
| | | | | | and padding space. svn path=/trunk/netsurf/; revision=3859
* Select element width is width of longest option text.Michael Drake2008-02-111-8/+60
| | | | svn path=/trunk/netsurf/; revision=3855
* Prevent tabbing into textfields whose styling is display: none;John Mark Bell2008-02-071-0/+10
| | | | svn path=/trunk/netsurf/; revision=3849