summaryrefslogtreecommitdiff
path: root/content/content.h
Commit message (Collapse)AuthorAgeFilesLines
* Add CONTENT_MSG_FAVICON_REFRESH and emit and handle it appropriately. ↵Daniel Silverstone2011-01-071-1/+2
| | | | | | Animated favicons now work svn path=/trunk/netsurf/; revision=11242
* + Refactor input handling from browser window code into contentMichael Drake2010-06-041-0/+5
| | | | | | | | | | | | | handlers. + Disentangle all box tree manipulation from browser window code and put it where it belongs. + Move other content specific and other irrelevant code from browser window handling to appropriate places. + Put mouse state enum in new mouse header, since it's not just used by browser window code, and it is used by treeview windows on the treeview branch. svn path=/trunk/netsurf/; revision=10561
* Add accessor for quirksJohn Mark Bell2010-04-161-0/+1
| | | | svn path=/trunk/netsurf/; revision=10415
* Ensure content can be shared when retrieving from cacheJohn Mark Bell2010-04-111-0/+1
| | | | svn path=/trunk/netsurf/; revision=10361
* Ensure quirks mode matches when retrieving contents from cacheJohn Mark Bell2010-04-111-0/+1
| | | | svn path=/trunk/netsurf/; revision=10360
* Add function to test whether hlcache_handle's content is locked.Michael Drake2010-04-071-0/+2
| | | | svn path=/trunk/netsurf/; revision=10287
* Add mime-type getter.Michael Drake2010-04-071-0/+1
| | | | svn path=/trunk/netsurf/; revision=10259
* Make downloads work again.John Mark Bell2010-04-051-5/+4
| | | | svn path=/trunk/netsurf/; revision=10243
* Remove redundant content message types and associated dataJohn Mark Bell2010-04-051-13/+0
| | | | svn path=/trunk/netsurf/; revision=10241
* Most of a stop implementation.John Mark Bell2010-04-041-4/+6
| | | | | | | | | Remaining work: 1) Clone content_html_data 2) Cloning content_css_data requires the charset of the old content 3) Calling hlcache_handle_abort() before a content has been created must clean up the retrieval context. svn path=/trunk/netsurf/; revision=10236
* Merge jmb/new-cache; r=dsilvers,rs=vinceDaniel Silverstone2010-03-281-234/+61
| | | | svn path=/trunk/netsurf/; revision=10180
* - content/urldb.c(auth_data): Removed;John Tytgat2009-08-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (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
* Merge LibCSS port to trunk.John Mark Bell2009-07-231-1/+2
| | | | svn path=/trunk/netsurf/; revision=8752
* Purge WITH_AUTHJohn Mark Bell2009-02-221-2/+0
| | | | svn path=/trunk/netsurf/; revision=6600
* Purge NETSURF_USE_SSL and WITH_SSLJohn Mark Bell2009-02-221-2/+0
| | | | svn path=/trunk/netsurf/; revision=6599
* Add missing #include.John Mark Bell2009-01-151-2/+3
| | | | | | Fix guard macro -- how long has this been wrong, I wonder? svn path=/trunk/netsurf/; revision=6069
* Revert r5478, I didn't notice content struct had a mime_type field.François Revel2008-10-031-1/+0
| | | | svn path=/trunk/netsurf/; revision=5480
* Add a function to tell the mime type for a content type.François Revel2008-10-031-0/+1
| | | | svn path=/trunk/netsurf/; revision=5478
* 'unsigned long' -> 'colour' where it made sense.John Tytgat2008-09-281-2/+2
| | | | svn path=/trunk/netsurf/; revision=5459
* Add libpng support. Default to off.Daniel Silverstone2008-09-151-0/+10
| | | | svn path=/trunk/netsurf/; revision=5330
* Constify content_type_name & content_status_nameJohn Tytgat2008-07-301-2/+2
| | | | svn path=/trunk/netsurf/; revision=4815
* Performance improvements: rather than calling content_clean() every poll, we ↵Rob Kendrick2008-07-071-0/+1
| | | | | | now call it no more frequently than once every 5 seconds. Additionally, we cache the result of talloc_total_size() in content_clean() rather than calculating it twice. On large documents, this function took 25% of CPU time. This makes the fetching/rendering/scrolling/redrawing of large documents over twice as fast. svn path=/trunk/netsurf/; revision=4527
* Move struct cache_data from fetch to content as it is no longer needed by ↵James Bursa2008-06-031-2/+14
| | | | | | fetch. Make it a member instead of pointer in struct content. svn path=/trunk/netsurf/; revision=4246
* Launch redirects to unsupported URLs in other applications.John Mark Bell2008-04-191-0/+2
| | | | svn path=/trunk/netsurf/; revision=4098
* Implement sprite support for GTK using librospriteJames Shaw2008-03-291-0/+6
| | | | svn path=/trunk/netsurf/; revision=4051
* Change meaning of c->redraw_time to be the earliest time to reflow during ↵Rob Kendrick2008-03-111-3/+3
| | | | | | page asset fetch. Have the time selected vary depending on how long the last reflow took. svn path=/trunk/netsurf/; revision=3925
* Periodically reflow the page while fetching a page's objects. Make buffer ↵Michael Drake2008-02-291-1/+5
| | | | | | all rendering default. svn path=/trunk/netsurf/; revision=3874
* Add url_fragment to extract fragment from URLJohn Mark Bell2008-02-031-2/+3
| | | | | | | | Optionally allow url_compare to ignore fragments in comparison Fix handling of url_compare result in a few places Fix redirects which contain fragments in the Location header svn path=/trunk/netsurf/; revision=3826
* Rework handling of HTTP redirects -- we now count the number of redirects ↵John Mark Bell2008-01-281-1/+1
| | | | | | | | | | | | | | | | | | | | followed for a given item and abort if a fixed limit is reached. This fixes sites which have pages that redirect to themselves. Redirect handling is now transparent to clients of fetchcache. The new scheme works as follows: 1) Request content for URL (fetchcache() 2) Start fetch of content (fetchcache_go() 3) If no redirect, continue through LOADING, READY, DONE etc. states as before If redirect, receive NEWPTR for each redirect that occurs, then continue through LOADING, READY, DONE etc. states as before. The upshot of this is that redirects result in extra contents being created. It also means that, until LOADING has been received, the content (and thus the URL being fetched) may change. Therefore, fetchcache clients should expect to have to deal with transient data prior to LOADING occurring. As a necessary side-effect of this, the HTML object URLs and CSS @import URLs are no longer stored alongside the relevant contents. These URLs can be accessed by interrogating the url member of struct content anyway, so it was a rather redundant scheme before. svn path=/trunk/netsurf/; revision=3787
* Update all source code file headers to reflect GPL version 2 only and ↵Vincent Sanders2007-08-081-3/+14
| | | | | | contain appropriate licence text svn path=/trunk/netsurf/; revision=3486
* Move window scaling from platform-specific code to desktop/browser.c. Modify ↵James Bursa2007-08-071-1/+1
| | | | | | gtk gui to handle scaling in the same way as RO. svn path=/trunk/netsurf/; revision=3478
* Initial work on RSVG image handler. Still a lot to do.Rob Kendrick2007-07-181-0/+6
| | | | svn path=/trunk/netsurf/; revision=3433
* Wrap internal SVG renderer with appropriate #ifdef WITH_NS_SVGRob Kendrick2007-07-181-0/+4
| | | | svn path=/trunk/netsurf/; revision=3432
* Add CONTENT_SVG to content handling.James Bursa2007-07-131-0/+2
| | | | svn path=/trunk/netsurf/; revision=3406
* Remove the netsurf/ from the include paths and rationalise use of <> vs "" ↵Daniel Silverstone2007-05-301-14/+14
| | | | | | | | | | | | | | in includes NetSurf includes are now done with ""s and other system includes with <>s as C intended. The scandeps tool has been updated to only look for ""ed includes, and to verify that the files exist in the tree before adding them to the dependency lines. The depend rule has therefore been augmented to make sure the autogenerated files are built before it is run. This is untested under self-hosted RISC OS builds. All else tested and works. svn path=/trunk/netsurf/; revision=3307
* Dynamically update scale view (implement 1556975) and prevent double redraws.Richard Wilson2007-03-031-0/+1
| | | | svn path=/trunk/netsurf/; revision=3191
* Make time taken that is displayed in status bar use gettimeofday()-based ↵Rob Kendrick2007-01-301-2/+1
| | | | | | time rather than clock()-based time svn path=/trunk/netsurf/; revision=3157
* Fix parsing error when an empty HTML data is returned. Add HTTP status and ↵James Bursa2007-01-131-2/+9
| | | | | | other information to status bar. svn path=/trunk/netsurf/; revision=3140
* Improved tracking of memory usage. c->size is now exclusive of talloc size, ↵James Bursa2006-12-031-1/+2
| | | | | | and the two are added to find the full size. svn path=/trunk/netsurf/; revision=3103
* Update project URL.Michael Drake2006-11-271-1/+1
| | | | svn path=/trunk/netsurf/; revision=3073
* Documentation moved to Docs/01-contentJames Bursa2006-11-111-88/+0
| | | | svn path=/trunk/netsurf/; revision=3050
* [project @ 2006-02-26 02:25:19 by rjw]Richard Wilson2006-02-261-0/+2
| | | | | | Add support for ICO files. svn path=/import/netsurf/; revision=2096
* [project @ 2006-02-25 18:50:34 by rjw]Richard Wilson2006-02-251-0/+6
| | | | | | Support for BMP files svn path=/import/netsurf/; revision=2095
* [project @ 2006-02-23 15:06:53 by jmb]John Mark Bell2006-02-231-2/+11
| | | | | | | | | | Handle invalid SSL certificates better - UI still needs work. Modify fetch callback data parameter type to remove compiler warnings. Constify things. Lose global ssl_verify_certificates option. Fix issue when closing a dialog without input focus. svn path=/import/netsurf/; revision=2092
* [project @ 2006-02-21 20:49:11 by rjw]Richard Wilson2006-02-211-0/+5
| | | | | | Allow any content to be used as a background. Simplify bitmap code. svn path=/import/netsurf/; revision=2087
* [project @ 2006-02-12 23:07:28 by bursa]James Bursa2006-02-121-0/+2
| | | | | | Rewrite handling of text/plain contents. Now rendered directly instead of converting to HTML. svn path=/import/netsurf/; revision=2078
* [project @ 2006-02-06 00:10:09 by jmb]John Mark Bell2006-02-061-0/+3
| | | | | | Implement HTTP caching algorithm; this should avoid stale cache entries being used. svn path=/import/netsurf/; revision=2059
* [project @ 2006-01-25 06:52:38 by jmb]John Mark Bell2006-01-251-0/+5
| | | | | | Meta refresh support svn path=/import/netsurf/; revision=2039
* [project @ 2005-12-10 14:31:32 by adrianl]Adrian Lees2005-12-101-0/+6
| | | | | | ArtWorks support svn path=/import/netsurf/; revision=1891
* [project @ 2005-10-30 21:22:19 by bursa]James Bursa2005-10-301-4/+6
| | | | | | Add index parameter to content_open(). svn path=/import/netsurf/; revision=1872