summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update info about AR warning.Michael Drake2009-08-101-3/+2
| | | | svn path=/trunk/netsurf/; revision=9147
* Remove mention of web site's robuild doc.Michael Drake2009-08-101-5/+0
| | | | svn path=/trunk/netsurf/; revision=9142
* Mention native doc.Michael Drake2009-08-101-0/+3
| | | | svn path=/trunk/netsurf/; revision=9141
* First draft of RISC OS native build document.Michael Drake2009-08-101-0/+121
| | | | svn path=/trunk/netsurf/; revision=9140
* Revert r9108, as component order in libnsgif due to be corrected.Chris Young2009-08-094-50/+8
| | | | svn path=/trunk/netsurf/; revision=9137
* Move README from Docs/ to root.Michael Drake2009-08-091-0/+0
| | | | svn path=/trunk/netsurf/; revision=9136
* Say BUILDING docs are in the Docs directory.Michael Drake2009-08-091-2/+2
| | | | svn path=/trunk/netsurf/; revision=9135
* Copy libcurl.so, have built 7.19.5 with a sensible nameChris Young2009-08-091-2/+2
| | | | svn path=/trunk/netsurf/; revision=9133
* Test with -fno-strict-aliasing.Michael Drake2009-08-071-1/+1
| | | | svn path=/trunk/netsurf/; revision=9109
* Support new libnsgif by adding bitmap flag BITMAP_ABGR.Chris Young2009-08-074-9/+59
| | | | | | | | | | | | | | This tells big endian systems that the data is in ABGR instead of RGBA. It should be ignored on little endian systems! Add support in Amiga platform code. -> All platform code that could be compiled for big endian systems will need to be updated to recognise BITMAP_ABGR. This includes GTK and Framebuffer frontends. Both BITMAP_ABGR *and* the endianness of the host will most likely need to be checked and the allocated bitmap format and/or bitmap plotter changed to handle ABGR component order. svn path=/trunk/netsurf/; revision=9108
* Ensure that inline end boxes get the correct height.Michael Drake2009-08-071-0/+1
| | | | svn path=/trunk/netsurf/; revision=9104
* Slightly more useful vertical alignment.Michael Drake2009-08-071-3/+21
| | | | svn path=/trunk/netsurf/; revision=9100
* - content/urldb.c(auth_data): Removed;John Tytgat2009-08-047-71/+241
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (prot_space_data): Added, it lives linked in the leaf host_part struct and together with its scheme and port (which defins canonical root url) and realm this defines a protection space. (path_data): Removed auth_data field and replaced by a prot_space_data pointer. (host_part::prot_space): Added linked list of protection space data structs. (urldb_get_auth_details): Given an URL fetch fetches its auth. (urldb_set_auth_details): Creates or updates the contents of a protection space to which given URL belongs. (urldb_destroy_host_tree): Delete protection data space structures using urldb_destroy_prot_space. (urldb_destroy_prot_space): Added. - content/urldb.h(urldb_get_auth_details): Added realm parameter. - content/fetchers/fetch_curl.c(fetch_curl_set_options): Update urldb_get_auth_details call (we don't know realm at this point). - content/fetchcache.c(fetchcache_callback, fetchcache_auth): At FETCH_AUTH, use realm to determine if we really don't know auth data and if so, refetch content. - content/content.h(struct content): Add content::tried_with_auth. - content/content.c(content_create): Initialize content::tried_with_auth. - riscos/401login.c(ro_gui_401login_open): Show known authentication data in dialogue so user can see what was wrong with it and correct it. Solves bug #2830829. svn path=/trunk/netsurf/; revision=9045
* Add default line-height for form elements. Fixes squashed Google homepage.Michael Drake2009-08-031-2/+2
| | | | svn path=/trunk/netsurf/; revision=9012
* Search pkg-config for libcares, too.John Mark Bell2009-08-031-1/+1
| | | | svn path=/trunk/netsurf/; revision=9004
* C89.John Mark Bell2009-08-021-1/+2
| | | | svn path=/trunk/netsurf/; revision=9000
* Port to modified libcss API.John Mark Bell2009-08-028-53/+53
| | | | svn path=/trunk/netsurf/; revision=8997
* Drop pkg-config on cairo, not needed here. Added const.John Tytgat2009-08-021-2/+2
| | | | svn path=/trunk/netsurf/; revision=8985
* Typo.François Revel2009-08-021-1/+1
| | | | svn path=/trunk/netsurf/; revision=8984
* Update RISC OS cross building notes.John Tytgat2009-08-011-8/+12
| | | | svn path=/trunk/netsurf/; revision=8953
* Disable resize with contents. This should stop the resize lockups once and ↵Chris Young2009-08-011-9/+8
| | | | | | for all. svn path=/trunk/netsurf/; revision=8950
* Prevent negative calculated width of replaced inlines in layout_minmax_line().John Mark Bell2009-08-011-1/+3
| | | | svn path=/trunk/netsurf/; revision=8933
* Actually handle failure to allocate bitmap structure or retrieve its data ↵John Mark Bell2009-07-312-16/+35
| | | | | | buffer pointer. I hope these longjmps are valid -- libpng's documentation is unhelpfully vague on this subject. svn path=/trunk/netsurf/; revision=8924
* Make polling function return after a fetch_free operation, as under certain ↵Chris Young2009-07-301-15/+7
| | | | | | | | | | | (unknown) circumstances it starts wandering off to nodes which don't exist (the same happens when using NetSurf's rings). Remove debug svn path=/trunk/netsurf/; revision=8915
* Correct definitionChris Young2009-07-291-1/+1
| | | | svn path=/trunk/netsurf/; revision=8899
* Keep a copy of the next_fetcher pointer to avoid a situation where the fetch ↵Chris Young2009-07-291-1/+3
| | | | | | | | gets freed during the poll routine and the next pointer can no longer be read. svn path=/trunk/netsurf/; revision=8898
* Make it match the others in style.Michael Drake2009-07-291-58/+67
| | | | svn path=/trunk/netsurf/; revision=8890
* Remove the docs that have been moved to the wiki.Michael Drake2009-07-295-216/+0
| | | | svn path=/trunk/netsurf/; revision=8889
* Remove line that was removed in the other branch.Michael Drake2009-07-291-2/+0
| | | | svn path=/trunk/netsurf/; revision=8887
* Merged revisions 8808,8862-8863 via svnmerge from Michael Drake2009-07-292-173/+183
| | | | | | | | | | | | | | | | | | | | | svn://svn.netsurf-browser.org/branches/paulblokus/textinput ........ r8808 | paulblokus | 2009-07-26 22:52:53 +0100 (Sun, 26 Jul 2009) | 2 lines don't recalculate height already aviable ........ r8862 | paulblokus | 2009-07-28 21:39:06 +0100 (Tue, 28 Jul 2009) | 2 lines added css.c and css.h files which caused svn errors after using svnmerge ........ r8863 | paulblokus | 2009-07-28 21:43:53 +0100 (Tue, 28 Jul 2009) | 3 lines changed textarea redraw logic little fix of KEY_DELETE_LINE_START jandling ........ svn path=/trunk/netsurf/; revision=8886
* Sync with new libcss API. There's huge amounts of room for improvement in ↵John Mark Bell2009-07-291-0/+175
| | | | | | this implementation. svn path=/trunk/netsurf/; revision=8883
* Remove content doc, it's now on the wiki.Michael Drake2009-07-281-127/+0
| | | | svn path=/trunk/netsurf/; revision=8852
* Remove overview document which has already been migrated to the wiki. The ↵Michael Drake2009-07-281-86/+0
| | | | | | rest will follow. svn path=/trunk/netsurf/; revision=8851
* Add README file.Michael Drake2009-07-281-0/+66
| | | | svn path=/trunk/netsurf/; revision=8850
* Remove dead doc.Michael Drake2009-07-281-31/+0
| | | | svn path=/trunk/netsurf/; revision=8847
* Include size of lwc_context in content size.John Mark Bell2009-07-281-0/+2
| | | | svn path=/trunk/netsurf/; revision=8835
* Add stylesheet size + size of imported sheets onto CSS content size.John Mark Bell2009-07-271-1/+31
| | | | | | Remove imported contents once we've fetched them and imported them into their parent (once this has happened, the content object is just an empty shell, so not worth keeping around). svn path=/trunk/netsurf/; revision=8831
* Shrink allocated <style> source data block to minimum.John Mark Bell2009-07-271-14/+29
| | | | svn path=/trunk/netsurf/; revision=8828
* Fix RISC OS and Amiga builds.John Mark Bell2009-07-272-4/+4
| | | | | | The sooner this stuff is in the core, the better. svn path=/trunk/netsurf/; revision=8827
* Port r8808 to trunk.John Mark Bell2009-07-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=8825
* Slight optimisationJohn Mark Bell2009-07-271-3/+9
| | | | svn path=/trunk/netsurf/; revision=8824
* Delete old CSS document, because it's out-of-date. Should we move the other ↵Michael Drake2009-07-271-81/+0
| | | | | | docs to the wiki? svn path=/trunk/netsurf/; revision=8823
* Retrieve charset specified on the HTTP layer.John Mark Bell2009-07-271-2/+9
| | | | svn path=/trunk/netsurf/; revision=8821
* Consider stylesheet media typesJohn Mark Bell2009-07-275-147/+174
| | | | svn path=/trunk/netsurf/; revision=8820
* Fix potential crash when inline replaced elements have percentage width.John Mark Bell2009-07-271-0/+2
| | | | svn path=/trunk/netsurf/; revision=8814
* Respect configured font sizeJohn Mark Bell2009-07-271-0/+3
| | | | svn path=/trunk/netsurf/; revision=8813
* Revert r8804. This is still occuring, on two different XOOPS sites.Chris Young2009-07-261-0/+1
| | | | svn path=/trunk/netsurf/; revision=8807
* Allow the user to disable URL suggestion.Chris Young2009-07-261-0/+3
| | | | svn path=/trunk/netsurf/; revision=8806
* Updated version from Samir HawamdehChris Young2009-07-261-7/+7
| | | | svn path=/trunk/netsurf/; revision=8805
* Remove setting incremental_reflow off by default. Whatever the cause, the ↵Chris Young2009-07-261-1/+0
| | | | | | | | libcss changes appear to have fixed it. svn path=/trunk/netsurf/; revision=8804