Rob Kendrick
4ec38922ac
Change meaning of c->redraw_time to be the earliest time to reflow during page asset fetch. Have the time selected vary depending on how long the last reflow took.
...
svn path=/trunk/netsurf/; revision=3925
2008-03-11 00:14:39 +00:00
Rob Kendrick
fed99c2cb5
jmb's rework of data: URL handling
...
svn path=/trunk/netsurf/; revision=3890
2008-03-06 11:28:00 +00:00
Rob Kendrick
58ee433b67
Add another check for malformed data: URLs
...
svn path=/trunk/netsurf/; revision=3889
2008-03-05 23:09:36 +00:00
Rob Kendrick
b168d636d0
Many data: fixes. Acid2 no longer crashes NetSurf.
...
svn path=/trunk/netsurf/; revision=3888
2008-03-05 22:57:46 +00:00
Rob Kendrick
c9bd38f5dd
Check for calloc() failing
...
svn path=/trunk/netsurf/; revision=3885
2008-03-05 15:01:42 +00:00
Rob Kendrick
0e43415013
Use curl_free() when freeing data: URLs that are URL-encoded instead of using free()
...
svn path=/trunk/netsurf/; revision=3884
2008-03-05 14:57:33 +00:00
Rob Kendrick
8e79665248
Initial attempt at implementing data: URLs. Needs cleaning and verifying that I'm using the fetcher API correctly. Appears to work, though.
...
svn path=/trunk/netsurf/; revision=3882
2008-03-05 14:21:29 +00:00
John Mark Bell
3986abd20b
Add testcase for non-fqdn -- already passes, but may as well keep it for regression testing.
...
svn path=/trunk/netsurf/; revision=3877
2008-03-03 13:21:02 +00:00
Michael Drake
bae61d9224
Periodically reflow the page while fetching a page's objects. Make buffer all rendering default.
...
svn path=/trunk/netsurf/; revision=3874
2008-02-29 23:03:26 +00:00
John Mark Bell
85bb19c93d
Mark old contents as stale if a conditional request succeeded so they'll be flushed from the cache as soon as they're unused.
...
svn path=/trunk/netsurf/; revision=3872
2008-02-27 19:13:35 +00:00
John Mark Bell
3a79bcb3da
Explicitly mark error pages as non-fresh so they'll get purged from the cache ASAP.
...
svn path=/trunk/netsurf/; revision=3871
2008-02-27 18:48:35 +00:00
John Mark Bell
89793c2171
Make content_reset actually do what it's meant to (i.e. reset the appropriate members)
...
Fix up CONTENT_MSG_REFRESH scheduled events to gracefully the refresh URL disappearing from under them.
svn path=/trunk/netsurf/; revision=3870
2008-02-27 18:38:41 +00:00
John Mark Bell
7f70acaca6
Silence noisy logging
...
svn path=/trunk/netsurf/; revision=3830
2008-02-03 18:21:49 +00:00
John Mark Bell
ad6fcea6b0
Add url_fragment to extract fragment from URL
...
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
2008-02-03 12:04:48 +00:00
John Mark Bell
cc3481a2ff
Make core fetching code handle verifiability of transactions
...
Make core fetching code be responsible for inserting cookies into the urldb
Provide accessor to a fetch's parent url (this is defined as being the URL of the verifiable fetch which caused this one to occur)
Make fetchcache's 3xx handling use the parent url when spawning new fetches
svn path=/trunk/netsurf/; revision=3809
2008-01-30 19:56:41 +00:00
John Mark Bell
9164f247c2
Ensure plq is terminated when looking for an URL path.
...
Ensure fetchcache_redirect() normalizes the redirect destination.
svn path=/trunk/netsurf/; revision=3807
2008-01-30 01:44:57 +00:00
John Mark Bell
78d194cb77
Rework handling of HTTP redirects -- we now count the number of redirects 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
2008-01-28 01:35:00 +00:00
John Mark Bell
02e2fab6a3
More work on cookie parser. Our junk value handling is now significantly closer to that of other browsers.
...
+ Fix infinite loop when encountering a spurious \r
+ Values are only treated as quoted if the first non-whitespace character is "
+ Cookies are inserted into the db in the order of receipt. This brings our
Cookie: header ordering closer to other browsers (though this strictly
shouldn't matter -- no ordering is defined, other than by path specificity)
+ Fix testcase assertions to cope with new output ordering
svn path=/trunk/netsurf/; revision=3709
2008-01-19 01:51:39 +00:00
John Mark Bell
e5e2eb09f6
Work on cookies to bring our behaviour closer to the spec and other browsers:
...
+ Improve handling of quoted cookies -- now processes nested quotes correctly
+ Improve cookie output -- now knows which version it's outputting for and
processes things appropriately
+ Add assertion that we're dealing with a domain cookie in the case where the
cookie domain and URL host part don't match during validation.
+ Tidy up fix for broken domain cookie setting -- it's now less confusing to
read.
+ Preserve cookie value quoting, regardless of its necessity.
+ Modify Cookie file format to save value_was_quoted flag -- version number
bumped to 101.
+ Add more testcases.
svn path=/trunk/netsurf/; revision=3708
2008-01-17 20:00:55 +00:00
John Mark Bell
2fa8e656a1
The previous fix was broken -- URI paths include the leafname.
...
Make url_path() return the full path (including the leafname).
Defaulted cookie path attributes have the leafname and trailing slash stripped.
Add testcase for defaulted path.
Fix testcase conditions for paths with leafnames.
svn path=/trunk/netsurf/; revision=3693
2008-01-07 12:01:11 +00:00
John Mark Bell
74078b6e36
Fix potential crash in urldb_dump()
...
Relax 4.3.2(i) checking (Cookie path must be a prefix of URL path). We now permit a cookie path containing the document leafname -- we strip the leafname from the path.
Make testsuite build again.
Add tests for cookie path checking.
svn path=/trunk/netsurf/; revision=3692
2008-01-07 04:58:06 +00:00
John Mark Bell
d1bf94dc4d
Work around sites sending domain cookies for .foo.com from hosts such as bar.bat.foo.com, then expecting domain matching to succeed. This causes me pain.
...
svn path=/trunk/netsurf/; revision=3637
2007-10-30 23:19:03 +00:00
Vincent Sanders
2f864eeecc
Update all source code file headers to reflect GPL version 2 only and contain appropriate licence text
...
svn path=/trunk/netsurf/; revision=3486
2007-08-08 16:16:03 +00:00
James Bursa
07c54283e3
Move window scaling from platform-specific code to desktop/browser.c. Modify gtk gui to handle scaling in the same way as RO.
...
svn path=/trunk/netsurf/; revision=3478
2007-08-07 03:55:18 +00:00
John Mark Bell
81f3fcbafd
Fix crash when building error page -- fetch will be NULL, so fetch_get_referer will fail.
...
svn path=/trunk/netsurf/; revision=3476
2007-08-06 22:17:04 +00:00
John Mark Bell
40b1c80896
Ensure option strings aren't blank before setting headers: previously, a blank option string could result in "Accept-Language: , *;q=0.1" being sent, for example.
...
svn path=/trunk/netsurf/; revision=3450
2007-07-21 08:53:00 +00:00
Michael Drake
d2c3d22f52
Change ArtWorks file MIME type to "image/x-artworks".
...
svn path=/trunk/netsurf/; revision=3449
2007-07-21 00:20:04 +00:00
John Mark Bell
04fb714f8e
Add SVG content name to content_type_name array.
...
svn path=/trunk/netsurf/; revision=3448
2007-07-21 00:14:15 +00:00
Rob Kendrick
1522bfeed6
Add incremental parsing of SVG data to librsvg content handler.
...
svn path=/trunk/netsurf/; revision=3441
2007-07-19 13:47:59 +00:00
Rob Kendrick
04292695be
Initial work on RSVG image handler. Still a lot to do.
...
svn path=/trunk/netsurf/; revision=3433
2007-07-18 17:58:35 +00:00
Rob Kendrick
59f358eb0f
Wrap internal SVG renderer with appropriate #ifdef WITH_NS_SVG
...
svn path=/trunk/netsurf/; revision=3432
2007-07-18 14:49:26 +00:00
James Bursa
afc9517fbd
Add CONTENT_SVG to content handling.
...
svn path=/trunk/netsurf/; revision=3406
2007-07-13 03:54:47 +00:00
John Mark Bell
17ab65e69a
Fix uninitialised fetch structure entries.
...
This was causing the Referer header to be sent regardless (assuming the referer string was non-NULL).
svn path=/trunk/netsurf/; revision=3387
2007-07-08 11:35:53 +00:00
James Bursa
594eb74c4c
Fix deadlock when fetching stylesheets when max_fetchers_per_host is reached by splitting fetch_can_be_freed() into fetch_remove_from_queues() and fetch_free().
...
svn path=/trunk/netsurf/; revision=3380
2007-07-04 18:44:13 +00:00
James Bursa
960c11de1a
Rename register_curl_fetchers() to fetch_curl_register(). Add declarations for static functions and reorder functions.
...
svn path=/trunk/netsurf/; revision=3379
2007-07-04 18:05:16 +00:00
Daniel Silverstone
e2d0019119
Add option_suppress_curl_debug and default it to true
...
svn path=/trunk/netsurf/; revision=3373
2007-06-27 16:27:52 +00:00
Daniel Silverstone
82c4458689
Only pass option_ca_bundle and option_ca_path to cURL if they are non-empty.
...
svn path=/trunk/netsurf/; revision=3372
2007-06-27 16:13:54 +00:00
Daniel Silverstone
e91cfc8e47
Add ca_path option which sets CURLOPT_CAPATH.
...
svn path=/trunk/netsurf/; revision=3369
2007-06-27 15:39:56 +00:00
Daniel Silverstone
18edcf5a40
Move the p->parent check in urldb to before the cookie loop. Prevents the cookie stuff exploding on domain cookies with no path. Fixes breakage with visiting launchpad.net
...
svn path=/trunk/netsurf/; revision=3368
2007-06-27 15:35:30 +00:00
John Mark Bell
92fd7ff871
Fix cookie domain matching in unverifiable transactions.
...
Minor tidying.
svn path=/trunk/netsurf/; revision=3337
2007-06-10 19:59:29 +00:00
Daniel Silverstone
e671fe3707
Add debug about ring sizes. Ensure we dispatch queued jobs when a job is freed.
...
svn path=/trunk/netsurf/; revision=3333
2007-06-10 18:12:30 +00:00
John Mark Bell
87ca206e13
Warning fixes.
...
svn path=/trunk/netsurf/; revision=3332
2007-06-10 18:08:22 +00:00
Daniel Silverstone
e6d754cc96
Remove a time consuming LOG(()) and add some whitespace to help me think
...
svn path=/trunk/netsurf/; revision=3331
2007-06-10 17:55:07 +00:00
Daniel Silverstone
1dd7e97eb3
Merge scheme switcher branch in.
...
svn path=/trunk/netsurf/; revision=3330
2007-06-10 17:46:44 +00:00
Daniel Silverstone
6807b4208a
Remove the netsurf/ from the include paths and rationalise use of <> vs "" 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
2007-05-30 22:39:54 +00:00
Daniel Silverstone
25e22eb1f5
Add a -v option to enable debug logging. Pass -v by default to the RO runimage.
...
svn path=/trunk/netsurf/; revision=3306
2007-05-30 22:27:58 +00:00
James Bursa
5d2a2c42b2
Log curl_version() in fetch_init().
...
svn path=/trunk/netsurf/; revision=3267
2007-05-06 05:55:13 +00:00
James Bursa
d0db5ed413
Fix warning: field precision should have type 'int', but argument 4 has type 'long int'.
...
svn path=/trunk/netsurf/; revision=3262
2007-05-02 03:06:52 +00:00
James Bursa
21407fe8ab
Fix some warnings in recent gcc.
...
svn path=/trunk/netsurf/; revision=3261
2007-05-02 02:47:39 +00:00
James Bursa
0547422534
Move user-agent generation into fetch.c and simplify.
...
svn path=/trunk/netsurf/; revision=3260
2007-05-02 02:38:38 +00:00
John Mark Bell
b229c41e9c
1) Fix corruption of history data structure on cloning
...
2) Only destroy urldb's thumbnail bitmap if it's not the same as the new
one. This needs revisiting at a later date such that the mess
surrounding who owns bitmap objects is sorted (and so that urldb
doesn't need to know about bitmaps)
svn path=/trunk/netsurf/; revision=3243
2007-04-07 20:30:39 +00:00
John Mark Bell
f059818d74
Squash memory leak
...
svn path=/trunk/netsurf/; revision=3235
2007-04-05 12:33:12 +00:00
John Mark Bell
ccfc0e7516
Fix abort on attempted destruction of CONTENT_DIRECTORY (1690222)
...
svn path=/trunk/netsurf/; revision=3228
2007-03-28 22:56:54 +00:00
John Mark Bell
91cfb11592
Fix crash on WWW-Authenticate header with no realm (1686714)
...
svn path=/trunk/netsurf/; revision=3216
2007-03-23 22:39:10 +00:00
John Mark Bell
f261e4426a
Lose noisy logging
...
svn path=/trunk/netsurf/; revision=3213
2007-03-18 23:48:12 +00:00
John Mark Bell
947ab0dcd2
Ensure content structures are zero initialised.
...
Make css_destroy check that the stylesheet pointer exists (content
destructors may be called whilst the content is still loading - e.g. if
the content type isn't permissable in the context it was loaded from).
Fixes 1627413, 1580980.
svn path=/trunk/netsurf/; revision=3212
2007-03-18 20:19:13 +00:00
John Mark Bell
0d750eac73
Improve debug output so that content usage may be traced
...
svn path=/trunk/netsurf/; revision=3210
2007-03-18 17:04:18 +00:00
John Mark Bell
6d0795b923
Handle redirects with partial bodies.
...
svn path=/trunk/netsurf/; revision=3209
2007-03-18 13:02:07 +00:00
John Mark Bell
9cf5122797
Content handlers should not call warn_user - they should broadcast the
...
error using content_broadcast and leave it to the content owner(s) to
decide what to do about it.
Only use warn_user for top-level contents.
svn path=/trunk/netsurf/; revision=3204
2007-03-11 22:08:57 +00:00
Richard Wilson
7368688642
Dynamically update scale view (implement 1556975) and prevent double redraws.
...
svn path=/trunk/netsurf/; revision=3191
2007-03-03 19:46:20 +00:00
John Mark Bell
cf17b38065
Ensure handle options are reset appropriately (fixes 1668354)
...
svn path=/trunk/netsurf/; revision=3189
2007-02-25 16:52:53 +00:00
Daniel Silverstone
657e384a84
Fix RING_FINDBYHOST to actually find things. jmb found the bug, I verified his patch and committed it
...
svn path=/trunk/netsurf/; revision=3186
2007-02-22 11:48:39 +00:00
John Mark Bell
25213dca24
Fix handling of cookies in unverifiable transactions caused by a redirect from a fetch into a browser window which was varifiable.
...
svn path=/trunk/netsurf/; revision=3165
2007-02-02 23:08:13 +00:00
John Mark Bell
8cf2e40daa
Bring handling of submission of blank file inputs in line with other browsers.
...
Tidy up fetch_post_convert while I'm at it.
svn path=/trunk/netsurf/; revision=3159
2007-01-30 23:19:21 +00:00
Rob Kendrick
5426a708a9
Generates and use a User-Agent: string based on new netsurf_version_major/minor values, and results of uname().
...
svn path=/trunk/netsurf/; revision=3158
2007-01-30 19:51:54 +00:00
Rob Kendrick
7c88381a59
Make time taken that is displayed in status bar use gettimeofday()-based time rather than clock()-based time
...
svn path=/trunk/netsurf/; revision=3157
2007-01-30 15:32:31 +00:00
James Bursa
a0b6661eb6
Make GTK build compile on FreeBSD.
...
svn path=/trunk/netsurf/; revision=3154
2007-01-29 22:27:15 +00:00
John Mark Bell
b76283f3d5
Handle strdup failure
...
svn path=/trunk/netsurf/; revision=3153
2007-01-28 23:53:20 +00:00
John Mark Bell
9612b35de1
Improve domain matching of referer and host.
...
Lose comparison of schemes - this was spurious and wrong.
Fixes 1646417.
svn path=/trunk/netsurf/; revision=3152
2007-01-28 16:34:50 +00:00
John Mark Bell
df4dbaf4cf
Handle cookies in unverifiable transactions
...
svn path=/trunk/netsurf/; revision=3151
2007-01-27 20:58:20 +00:00
John Mark Bell
f629a4f00f
Revert hack around broken pipe (not caching fetch handles used for SSL
...
connections).
Ignore SIGPIPE completely as nothing other than OpenSSL is expected to
generate it.
svn path=/trunk/netsurf/; revision=3145
2007-01-18 01:26:58 +00:00
James Bursa
bda01b3135
Fix parsing error when an empty HTML data is returned. Add HTTP status and other information to status bar.
...
svn path=/trunk/netsurf/; revision=3140
2007-01-13 00:21:15 +00:00
James Bursa
e76140557d
Add fetch_http_code() to retrieve the HTTP status code of a fetch.
...
svn path=/trunk/netsurf/; revision=3139
2007-01-13 00:19:02 +00:00
Daniel Silverstone
cf0718f649
Update the file comment for fetch.c as requested.
...
svn path=/trunk/netsurf/; revision=3133
2007-01-02 13:07:28 +00:00
John Mark Bell
98b451ffae
Add option to set Accept-Charset header (Stefaan Claes)
...
svn path=/trunk/netsurf/; revision=3124
2006-12-28 00:42:14 +00:00
John Mark Bell
abcce3dfe7
Fix typo.
...
Default type -> text/plain
svn path=/trunk/netsurf/; revision=3123
2006-12-28 00:36:37 +00:00
John Mark Bell
5b3f0755f6
Add URLdb destruction functionality
...
svn path=/trunk/netsurf/; revision=3115
2006-12-08 22:38:46 +00:00
John Mark Bell
016dc5270a
Further fixes and tidying to urldb. Also squash some memory leaks.
...
svn path=/trunk/netsurf/; revision=3104
2006-12-04 02:10:40 +00:00
James Bursa
b6b768f521
Improved tracking of memory usage. c->size is now exclusive of talloc size, and the two are added to find the full size.
...
svn path=/trunk/netsurf/; revision=3103
2006-12-03 22:34:26 +00:00
Richard Wilson
55ed73bf02
Lose debug.
...
svn path=/trunk/netsurf/; revision=3088
2006-12-01 21:13:27 +00:00
Richard Wilson
ef65cb38bd
Fix 1535120, 1528673
...
svn path=/trunk/netsurf/; revision=3087
2006-12-01 21:09:49 +00:00
Richard Wilson
c9d76ba242
Fix 1597646
...
svn path=/trunk/netsurf/; revision=3086
2006-12-01 19:07:28 +00:00
Richard Wilson
9bb9194a7d
Fix 1563546, plug possible memory leak.
...
svn path=/trunk/netsurf/; revision=3085
2006-12-01 18:38:04 +00:00
Michael Drake
ba23e4b693
Update project URL.
...
svn path=/trunk/netsurf/; revision=3073
2006-11-27 15:35:18 +00:00
James Bursa
65b356ba75
Documentation moved to Docs/01-content
...
svn path=/trunk/netsurf/; revision=3050
2006-11-11 19:46:51 +00:00
John Mark Bell
fbc0ac49e6
Log hostname on insertion failure.
...
svn path=/trunk/netsurf/; revision=3000
2006-10-12 14:10:18 +00:00
Chris Williams
f4e4ec00b7
Ignore body data from 401 replies to prevent disruption of auth login handling
...
svn path=/trunk/netsurf/; revision=2972
2006-10-01 13:17:52 +00:00
John Mark Bell
09d2b99973
Ensure urldb_add_path always has a path.
...
Extract hostname from url authority returned by url_get_components.
svn path=/trunk/netsurf/; revision=2958
2006-09-17 23:10:42 +00:00
Richard Wilson
1086d53b89
Lower overhead of urldb calls by using url component calls.
...
svn path=/trunk/netsurf/; revision=2908
2006-09-02 18:51:33 +00:00
Richard Wilson
74fa727509
Experimental new frames code.
...
svn path=/trunk/netsurf/; revision=2906
2006-09-02 15:52:41 +00:00
John Mark Bell
89f760a3e7
Detect attempted fetches using protocols we can't handle.
...
Mark content in error in a couple of cases that I'd missed ages ago.
svn path=/trunk/netsurf/; revision=2816
2006-08-06 17:51:23 +00:00
John Mark Bell
ca154b54c0
Fix edge case in cookie search code when handling Path=/foo
...
svn path=/trunk/netsurf/; revision=2776
2006-07-17 23:19:43 +00:00
Richard Wilson
0309e937e6
Allow the user to delete cookies.
...
svn path=/trunk/netsurf/; revision=2770
2006-07-16 21:42:37 +00:00
Richard Wilson
9294938976
Extent cookie_update API to allow notification of deleted domains. Fix nodes not being re-calculated.
...
svn path=/trunk/netsurf/; revision=2765
2006-07-16 16:10:43 +00:00
John Mark Bell
4c564c28bf
Display session cookies' expiry correctly
...
Fix urldb debug build
Fix GTK build's cookie_update API
svn path=/trunk/netsurf/; revision=2752
2006-07-15 11:59:25 +00:00
Richard Wilson
652f594cbb
Further url completion fixes
...
svn path=/trunk/netsurf/; revision=2744
2006-07-13 21:28:07 +00:00
Richard Wilson
1fcceb72f6
Fix url completion
...
svn path=/trunk/netsurf/; revision=2743
2006-07-13 19:48:45 +00:00
Richard Wilson
a836591435
Add basic cookie viewer, make trees use textarea components for UTF8 editing, trim headers, fix tree redraw issues.
...
svn path=/trunk/netsurf/; revision=2739
2006-07-13 12:46:02 +00:00
John Mark Bell
5bbd5f259e
Don't cache curl handles that were used to fetch https URLs; with any
...
luck, this should fix broken pipe crashes.
svn path=/trunk/netsurf/; revision=2723
2006-07-09 01:25:06 +00:00
Richard Wilson
badad073ec
Generate directory listings (fix 1397934)
...
svn path=/trunk/netsurf/; revision=2719
2006-07-06 00:07:11 +00:00
John Mark Bell
b7af14b591
Implement component-wise URL comparison
...
svn path=/trunk/netsurf/; revision=2697
2006-07-02 22:34:04 +00:00
John Mark Bell
bc2d96368f
Fix conversion of URLs beginning "file://". Additionally,
...
file://host/... isn't likely, so assume file://path & convert to
file:///path
svn path=/trunk/netsurf/; revision=2685
2006-07-01 22:27:10 +00:00
John Mark Bell
28a7ed4989
Relax domain matching to allow host a.com to match .a.com
...
svn path=/trunk/netsurf/; revision=2684
2006-07-01 21:35:30 +00:00
John Mark Bell
8c3e9b882b
Fix crash when url_* fails
...
svn path=/trunk/netsurf/; revision=2678
2006-06-29 22:04:56 +00:00
John Mark Bell
83ef76adc7
Only accept cookies from cookie-enabled transactions
...
svn path=/trunk/netsurf/; revision=2668
2006-06-29 00:01:24 +00:00
John Mark Bell
a63221a624
Rewrite cookie parser to be more tolerant of junk input
...
No longer need urldb_init; remove it.
svn path=/trunk/netsurf/; revision=2643
2006-06-24 15:44:48 +00:00
John Mark Bell
bb91584f7c
Strip day names from date strings before parsing; these are too variable
...
to bother with (and carry no information useful to us)
Make expires avpair handling cater for dates after 2038.
svn path=/trunk/netsurf/; revision=2642
2006-06-24 00:01:55 +00:00
John Mark Bell
5f10c6277a
Remove assertion of invalid assumption ( fixes #1509118 )
...
svn path=/trunk/netsurf/; revision=2637
2006-06-20 12:05:19 +00:00
John Mark Bell
dcb3caf1eb
Make cookie file parser more strict (cookies with spaces in the value
...
have been seen in the wild).
Fix lookup of cookies for top-level paths (i.e. a path segment of "/")
svn path=/trunk/netsurf/; revision=2636
2006-06-20 11:45:41 +00:00
John Mark Bell
8ac57593b8
Fix handling of broken Expires avpairs
...
svn path=/trunk/netsurf/; revision=2633
2006-06-19 23:40:27 +00:00
John Mark Bell
4f249f9d0a
Merge cookies changes into head - unvalidated transactions and a UI
...
still need implementing.
svn path=/trunk/netsurf/; revision=2632
2006-06-19 21:49:25 +00:00
John Mark Bell
026ba672ae
Fix handling of hosts with no paths attached ( fixes #1505891 )
...
svn path=/trunk/netsurf/; revision=2620
2006-06-15 15:06:59 +00:00
John Mark Bell
c1dbdad995
Provide persistent flag for urldb entries.
...
Make hotlist use this, rather than abusing the last visited date.
This fixes the hotlist being copied to global history issue.
svn path=/trunk/netsurf/; revision=2619
2006-06-14 22:46:12 +00:00
John Mark Bell
217e59aebe
Fix off-by-one error in search routines which caused crashes with
...
(invalid) host names ending in a '.'.
svn path=/trunk/netsurf/; revision=2618
2006-06-14 21:47:23 +00:00
Richard Wilson
a2465c779f
Remove RISC OS dependencies from filename code.
...
svn path=/trunk/netsurf/; revision=2540
2006-04-21 23:49:52 +00:00
James Bursa
312bece1d0
Make static function names consistent.
...
svn path=/trunk/netsurf/; revision=2537
2006-04-16 10:30:51 +00:00
John Mark Bell
faf76f5f5f
Ignore scheme when performing partial match
...
svn path=/trunk/netsurf/; revision=2535
2006-04-15 18:57:57 +00:00
John Mark Bell
e5912fedd1
Use database's copy of URL for new global history entries
...
svn path=/trunk/netsurf/; revision=2534
2006-04-15 18:53:20 +00:00
John Mark Bell
037fb6d91d
Fix host match functions
...
svn path=/trunk/netsurf/; revision=2532
2006-04-15 17:48:47 +00:00
John Mark Bell
5873160a8b
Fix undersized buffer for reading port number into
...
Detect no URLs for a host before adding host to database.
svn path=/trunk/netsurf/; revision=2530
2006-04-15 13:59:53 +00:00
John Mark Bell
1b48febd2f
Fix issues with authentication storage/lookup in database
...
svn path=/trunk/netsurf/; revision=2527
2006-04-12 23:23:47 +00:00
John Mark Bell
ef301b8619
Fix URL file loading and add support for file:/// URLs to urldb
...
Convert file:/... to file:///... (the former isn't a valid URL)
svn path=/trunk/netsurf/; revision=2524
2006-04-12 08:09:27 +00:00
John Mark Bell
4ecbfb483c
Handle memory exhaustion for version 1.06 URL files
...
Log failure to insert from version 1.05 URL files for debugging purposes
svn path=/trunk/netsurf/; revision=2523
2006-04-11 17:00:26 +00:00
John Mark Bell
e0ba508992
Store URLs explicitly in URL database for faster access.
...
Iteration callbacks now passed url_data struct to remove need to look up
svn path=/trunk/netsurf/; revision=2522
2006-04-11 02:39:55 +00:00
John Mark Bell
1ee3d620b8
New URL file format more suited to urldb implementation
...
svn path=/trunk/netsurf/; revision=2520
2006-04-10 08:43:30 +00:00
John Mark Bell
c09eb457df
Unify information databases
...
svn path=/trunk/netsurf/; revision=2519
2006-04-09 23:21:13 +00:00
Daniel Silverstone
7ddb6b6f19
[project @ 2006-03-14 15:01:57 by dsilvers]
...
Urgh, unconditional variables made my brain hurt
svn path=/import/netsurf/; revision=2129
2006-03-14 15:01:57 +00:00
Daniel Silverstone
40260f177a
[project @ 2006-03-14 14:21:00 by dsilvers]
...
Multi-parallel fetch. Needs documenting, works in basic GTK tests, makes things way faster on GTK port. Needs testing on RO and in general more testing is good.
svn path=/import/netsurf/; revision=2127
2006-03-14 14:21:01 +00:00
Richard Wilson
25a995931d
[project @ 2006-03-04 20:46:35 by rjw]
...
Continue work towards favicon support.
svn path=/import/netsurf/; revision=2104
2006-03-04 20:46:35 +00:00
Michael Drake
b48ed604f5
[project @ 2006-03-04 10:48:40 by tlsa]
...
Tweak timeouts.
svn path=/import/netsurf/; revision=2103
2006-03-04 10:48:40 +00:00
Richard Wilson
60ea34ad48
[project @ 2006-02-26 02:25:19 by rjw]
...
Add support for ICO files.
svn path=/import/netsurf/; revision=2096
2006-02-26 02:25:19 +00:00
Richard Wilson
da4a9313f1
[project @ 2006-02-25 18:50:34 by rjw]
...
Support for BMP files
svn path=/import/netsurf/; revision=2095
2006-02-25 18:51:51 +00:00
John Mark Bell
d4d3e5ee1c
[project @ 2006-02-23 15:06:53 by jmb]
...
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
2006-02-23 15:06:54 +00:00
Richard Wilson
4cc85469cb
[project @ 2006-02-21 20:49:11 by rjw]
...
Allow any content to be used as a background. Simplify bitmap code.
svn path=/import/netsurf/; revision=2087
2006-02-21 20:49:12 +00:00
John Mark Bell
5ce5fe084c
[project @ 2006-02-19 18:26:23 by jmb]
...
Rewrite HTTP authentication.
Fix extraction of realm from WWW-Authenticate header.
Tidy up login dialog code.
svn path=/import/netsurf/; revision=2085
2006-02-19 18:26:23 +00:00
James Bursa
07d55db910
[project @ 2006-02-13 23:04:32 by bursa]
...
Disable sending of Expect: 100-continue for POSTs (fixes using the bug tracker). Remove unnecessary setting of Host header.
svn path=/import/netsurf/; revision=2080
2006-02-13 23:04:32 +00:00
James Bursa
415254c326
[project @ 2006-02-12 23:07:28 by bursa]
...
Rewrite handling of text/plain contents. Now rendered directly instead of converting to HTML.
svn path=/import/netsurf/; revision=2078
2006-02-12 23:07:28 +00:00
John Mark Bell
e724672302
[project @ 2006-02-08 00:35:05 by jmb]
...
Handle case where no cache expiry headers are sent; use (now - last_modified) / 10. This should reduce the frequency of cache entry validation.
svn path=/import/netsurf/; revision=2064
2006-02-08 00:35:05 +00:00
John Mark Bell
6be0b8e60c
[project @ 2006-02-07 00:44:52 by jmb]
...
Squash leaks and fake ETag header for local objects.
svn path=/import/netsurf/; revision=2060
2006-02-07 00:44:52 +00:00
John Mark Bell
0f228ada91
[project @ 2006-02-06 00:10:09 by jmb]
...
Implement HTTP caching algorithm; this should avoid stale cache entries being used.
svn path=/import/netsurf/; revision=2059
2006-02-06 00:10:09 +00:00
John Mark Bell
0f77b057a1
[project @ 2006-01-25 06:52:38 by jmb]
...
Meta refresh support
svn path=/import/netsurf/; revision=2039
2006-01-25 06:52:38 +00:00
Richard Wilson
37fbf489d4
[project @ 2006-01-24 23:04:07 by rjw]
...
Minor optimisations to start-up
svn path=/import/netsurf/; revision=2027
2006-01-24 23:04:07 +00:00
John Mark Bell
745deb7a9d
[project @ 2006-01-08 01:51:33 by jmb]
...
Make data file locations user-configurable (no UI for this as yet)
Reduce intrusiveness of ncos modifications
Fix GTK build
Remove Cookies file details from Messages (this data never belonged in there anyway)
Make gui_init more robust against memory exhaustion.
svn path=/import/netsurf/; revision=2014
2006-01-08 01:51:33 +00:00
John Mark Bell
07d4f5c57b
[project @ 2006-01-07 02:33:36 by jmb]
...
Fix 1347726.
svn path=/import/netsurf/; revision=2011
2006-01-07 02:33:36 +00:00
Richard Wilson
dee8928366
[project @ 2006-01-06 05:32:45 by rjw]
...
Remove bad data. Optimise loading of URL data. Massively decrease the time taken to save URL data.
svn path=/import/netsurf/; revision=1989
2006-01-06 05:32:45 +00:00
Richard Wilson
43f8d0048c
[project @ 2006-01-05 02:05:34 by rjw]
...
Massively increase efficiency of URL completion.
svn path=/import/netsurf/; revision=1985
2006-01-05 02:05:34 +00:00
Richard Wilson
075c6e98b6
[project @ 2006-01-04 23:03:00 by rjw]
...
Make URL file loading handle invalid thumbnail filenames better. Decrease time taken to find a hostname.
svn path=/import/netsurf/; revision=1983
2006-01-04 23:03:00 +00:00
John Mark Bell
aa76fb1754
[project @ 2006-01-03 23:26:58 by jmb]
...
Detect and prevent self-referential redirects.
This is not a complete solution as it does not handle the likes of page1 -> page2 -> page1 -> ...
To solve that probably requires counting the number of redirects a given fetch has made and then bailing once it exceeds some fixed value. From what I can see at present, this will have to be done at the top-level (i.e. browser_window_callback and suchlike).
svn path=/import/netsurf/; revision=1978
2006-01-03 23:26:58 +00:00
John Mark Bell
05bb6641e1
[project @ 2006-01-03 17:01:17 by jmb]
...
Fix 1371902.
fetch_filetype now receives the unix path with the leading / (which it always should have done, tbh).
svn path=/import/netsurf/; revision=1976
2006-01-03 17:01:17 +00:00
Richard Wilson
e68f319778
[project @ 2006-01-02 23:03:07 by rjw]
...
Quickly match repeated hostname calls.
svn path=/import/netsurf/; revision=1968
2006-01-02 23:03:07 +00:00
James Bursa
cb04ca9640
[project @ 2006-01-02 13:18:32 by bursa]
...
Fix documentation comments. Change types of some members of struct url_content. Fix possible leak in url_store_find_hostname().
svn path=/import/netsurf/; revision=1947
2006-01-02 13:18:32 +00:00
John Mark Bell
43d4cfecf7
[project @ 2005-12-31 05:35:59 by jmb]
...
Fix attempted read/write to NULL pointer
svn path=/import/netsurf/; revision=1923
2005-12-31 05:35:59 +00:00
Richard Wilson
e6f311f97c
[project @ 2005-12-31 04:30:49 by rjw]
...
Updates to work with new url_store system.
svn path=/import/netsurf/; revision=1909
2005-12-31 04:30:49 +00:00
Richard Wilson
579d8ff0b6
[project @ 2005-12-31 04:27:53 by rjw]
...
Store more URL data centrally.
svn path=/import/netsurf/; revision=1907
2005-12-31 04:27:53 +00:00
James Bursa
ad13eb98af
[project @ 2005-12-19 21:54:51 by bursa]
...
Fix busy polling in gtk build.
svn path=/import/netsurf/; revision=1900
2005-12-19 21:54:51 +00:00
James Bursa
666cdaf8dd
[project @ 2005-12-11 21:54:30 by bursa]
...
Disable some log messages.
svn path=/import/netsurf/; revision=1896
2005-12-11 21:54:30 +00:00
Adrian Lees
1efd4796a2
[project @ 2005-12-10 14:31:32 by adrianl]
...
ArtWorks support
svn path=/import/netsurf/; revision=1891
2005-12-10 14:31:33 +00:00
James Bursa
972392ef66
[project @ 2005-10-30 21:22:19 by bursa]
...
Add index parameter to content_open().
svn path=/import/netsurf/; revision=1872
2005-10-30 21:22:19 +00:00
Adrian Lees
8a88130630
[project @ 2005-10-01 23:27:22 by adrianl]
...
Pedantic corrections
svn path=/import/netsurf/; revision=1868
2005-10-01 23:27:22 +00:00
James Bursa
08e8ee3ed1
[project @ 2005-08-21 12:04:17 by bursa]
...
Change void * parameters to intptr_t to make them correct for storing integers or pointers.
svn path=/import/netsurf/; revision=1852
2005-08-21 12:04:18 +00:00
Adrian Lees
dbcfa470c4
[project @ 2005-07-16 16:23:08 by adrianl]
...
Bounds checking in Content-Length handling
svn path=/import/netsurf/; revision=1799
2005-07-16 16:23:08 +00:00
James Bursa
9741deb831
[project @ 2005-07-05 22:43:38 by bursa]
...
Add locked attribute to content structure and use it to ignore content_redraw() during _convert() or _reformat().
svn path=/import/netsurf/; revision=1787
2005-07-05 22:43:38 +00:00
Richard Wilson
b88a81b9d9
[project @ 2005-06-23 17:22:28 by rjw]
...
Allow images to be unloaded to disk or compressed in memory. Provide thumbnails in all tree windows (hotlist, history). Optimise the application initialisation times. Part 1 of 2.
svn path=/import/netsurf/; revision=1761
2005-06-23 17:22:28 +00:00
John Mark Bell
79c3c60a19
[project @ 2005-05-01 22:20:40 by jmb]
...
Work around invalid Content-Type headers
svn path=/import/netsurf/; revision=1707
2005-05-01 22:20:40 +00:00
Richard Wilson
8a85a57965
[project @ 2005-04-27 00:01:17 by rjw]
...
Improve the speed of URL matching
svn path=/import/netsurf/; revision=1686
2005-04-27 00:01:17 +00:00
James Bursa
d9575d3bd5
[project @ 2005-04-18 21:40:29 by bursa]
...
Fix bug with redirected contents being reused (as triggered by looping redirects).
svn path=/import/netsurf/; revision=1670
2005-04-18 21:40:29 +00:00
James Bursa
c4d3ac1d8f
[project @ 2005-04-09 10:00:00 by bursa]
...
Serialize fetches with no host (should fix multiple local files not loading in certain cases).
svn path=/import/netsurf/; revision=1611
2005-04-09 10:00:00 +00:00
James Bursa
8728712699
[project @ 2005-04-08 22:18:28 by bursa]
...
Fix dump of URLs containing a %.
svn path=/import/netsurf/; revision=1607
2005-04-08 22:18:28 +00:00
Richard Wilson
9acf6d31cf
[project @ 2005-04-05 17:19:58 by rjw]
...
Add sanity checks to Sprite file handling and simplify code.
svn path=/import/netsurf/; revision=1600
2005-04-05 17:19:58 +00:00
Richard Wilson
92743be24d
[project @ 2005-04-05 02:36:33 by rjw]
...
Reduce re-allocation of memory when receiving files (drastically increases the speed of loading large files locally). Sprite files no longer require two copies of their data.
svn path=/import/netsurf/; revision=1598
2005-04-05 02:36:33 +00:00
James Bursa
a7a0048c0d
[project @ 2005-04-03 10:58:24 by bursa]
...
Use talloc for content structures.
svn path=/import/netsurf/; revision=1592
2005-04-03 10:58:49 +00:00
John Mark Bell
92fa1133c9
[project @ 2005-04-01 02:25:11 by jmb]
...
application/xhtml+xml -> CONTENT_HTML
Fix minor issue with mimetype matching regexp.
svn path=/import/netsurf/; revision=1587
2005-04-01 02:25:11 +00:00
Richard Wilson
105b2dbb04
[project @ 2005-02-08 01:06:03 by rjw]
...
More efficient URL storage format for faster loading.
svn path=/import/netsurf/; revision=1502
2005-02-08 01:06:03 +00:00
Richard Wilson
db41dc3dac
[project @ 2005-02-07 14:28:43 by rjw]
...
Initial work for global history (currently incomplete)
svn path=/import/netsurf/; revision=1497
2005-02-07 14:28:43 +00:00
Richard Wilson
2affb76944
[project @ 2005-02-03 13:18:22 by rjw]
...
Implementation of URL suggestion
svn path=/import/netsurf/; revision=1488
2005-02-03 13:18:22 +00:00
James Bursa
3612f22ea5
[project @ 2005-01-29 14:11:21 by bursa]
...
Remove obsolete file.
svn path=/import/netsurf/; revision=1474
2005-01-29 14:11:21 +00:00
James Bursa
04f0525fbf
[project @ 2005-01-24 23:02:37 by bursa]
...
Reformat pages loaded from memory cache to window width.
svn path=/import/netsurf/; revision=1467
2005-01-24 23:02:37 +00:00
Richard Wilson
422df90089
[project @ 2005-01-23 16:09:05 by rjw]
...
Further work on theme installing
svn path=/import/netsurf/; revision=1463
2005-01-23 16:09:05 +00:00
James Bursa
1fb2e5f2c3
[project @ 2005-01-22 22:42:48 by bursa]
...
Fix proxy authentication bug (libcurl does not copy string options)
svn path=/import/netsurf/; revision=1461
2005-01-22 22:42:48 +00:00
James Bursa
f0b264670e
[project @ 2005-01-13 22:42:38 by bursa]
...
Start on theme auto-install. Fix content_add_user() not to broadcast error on memory exhaustion.
svn path=/import/netsurf/; revision=1448
2005-01-13 22:42:39 +00:00
James Bursa
a76404dfd0
[project @ 2005-01-13 20:28:50 by bursa]
...
Fix some compilation warnings in the debug build. Update nsgtk_plot_rectangle() with the new parameters.
svn path=/import/netsurf/; revision=1447
2005-01-13 20:29:24 +00:00
James Bursa
2f19e15e33
[project @ 2005-01-13 20:26:16 by bursa]
...
Strengthen entry conditions of content_broadcast() to help detect bugs.
svn path=/import/netsurf/; revision=1446
2005-01-13 20:26:16 +00:00
John Mark Bell
5b57548a6c
[project @ 2005-01-03 16:09:11 by jmb]
...
Fix race condition caused by introduction of downloads
svn path=/import/netsurf/; revision=1431
2005-01-03 16:09:11 +00:00
John Mark Bell
77de9c1336
[project @ 2005-01-03 02:09:20 by jmb]
...
Shift + Click == download
svn path=/import/netsurf/; revision=1429
2005-01-03 02:09:20 +00:00
John Mark Bell
8334683068
[project @ 2005-01-02 03:58:20 by jmb]
...
xcalloc/xrealloc/xstrdup-purge - Lose remaining calls (and purge the relevant functions from utils.c)
svn path=/import/netsurf/; revision=1419
2005-01-02 03:58:21 +00:00
James Bursa
143d756fcf
[project @ 2005-01-01 22:26:34 by bursa]
...
xcalloc/xrealloc/xstrdup-purge week.
svn path=/import/netsurf/; revision=1418
2005-01-01 22:27:05 +00:00
John Mark Bell
e6de2f8b1d
[project @ 2004-12-31 15:54:15 by jmb]
...
Fix scrollbar issue when fetching cached HTML contents.
svn path=/import/netsurf/; revision=1414
2004-12-31 15:54:15 +00:00
Richard Wilson
32db7e04d0
[project @ 2004-12-09 10:30:43 by rjw]
...
Re-implementation of hotlist via general tree code. Animations can be stopped once more. Purged a few xcalloc() calls.
svn path=/import/netsurf/; revision=1394
2004-12-09 10:30:44 +00:00
John Mark Bell
1105d9c397
[project @ 2004-11-22 00:33:04 by jmb]
...
Improve plain text rendering (converts occurrences of '<' with '<')
svn path=/import/netsurf/; revision=1369
2004-11-22 00:33:04 +00:00
John Mark Bell
efce778a9e
[project @ 2004-11-11 23:55:23 by jmb]
...
Fix for redirects causing crashes
svn path=/import/netsurf/; revision=1360
2004-11-11 23:55:23 +00:00
James Bursa
63a4269651
[project @ 2004-10-17 21:12:32 by bursa]
...
Replace bitmap_redraw() with plot.bitmap().
svn path=/import/netsurf/; revision=1316
2004-10-17 21:12:32 +00:00
Richard Wilson
403f12872d
[project @ 2004-10-04 23:54:42 by rjw]
...
Moved GIF file reading to image/, optimisation of plotting for GIFs, JNGs, PNGs and JPEGs, initial work for toolbar customisation. Possibly some other things too.
svn path=/import/netsurf/; revision=1301
2004-10-04 23:54:42 +00:00
John Mark Bell
49ce807e3c
[project @ 2004-10-01 21:31:55 by jmb]
...
A somewhat better implementation of referrers which no longer sends the referer if the URL schemes don't match.
Things to do:
1) Preservation of referer across redirects (see comment in browser.c:284)
2) GUI templates/code for configuration of referer sending (simple on/off toggle only)
3) Make referer sending when fetching objects/stylesheets for a page pay attention to option_send_referer?
4) Handle the case where the referer is in the form of http://moo:foo@mysite.com/ (ie the login details embedded in the referer - not good).
svn path=/import/netsurf/; revision=1297
2004-10-01 21:31:55 +00:00
James Bursa
3371a27391
[project @ 2004-09-03 22:44:47 by bursa]
...
Add generic bitmap functions. Move jpeg and mng code from riscos/ to image/ and update to use bitmap. Note: background tiling and drawfile export for jpeg and mng/png are broken.
svn path=/import/netsurf/; revision=1265
2004-09-03 22:44:48 +00:00
James Bursa
fb5082605c
[project @ 2004-09-03 22:33:05 by bursa]
...
Fix bugs relating to aborting fetches.
svn path=/import/netsurf/; revision=1264
2004-09-03 22:33:05 +00:00
John Mark Bell
006344401c
[project @ 2004-08-15 19:06:23 by jmb]
...
Rationalise image redraw.
Supply background colour when redrawing contents
Reenable printing of background images
Require Tinct 0.07
svn path=/import/netsurf/; revision=1234
2004-08-15 19:06:24 +00:00
John Tytgat
7264ae50e5
[project @ 2004-08-14 15:07:19 by joty]
...
- Rename len() to css_len2px().
- Less compiler warnings concerning float/int implicit casts.
- More stddef.h type usuage.
svn path=/import/netsurf/; revision=1232
2004-08-14 15:07:21 +00:00
John Tytgat
402c4ca66c
[project @ 2004-08-14 14:30:10 by joty]
...
Removed a chunk of Norcroft compiler warnings. Re-ident some pieces.
svn path=/import/netsurf/; revision=1231
2004-08-14 14:30:12 +00:00
John Mark Bell
d7627ceceb
[project @ 2004-08-13 00:55:59 by jmb]
...
Rewrite of plugin handling. This is now much nicer than before although it has about the same amount of functionality.
Note: This is now configurable via an option (defaults to OFF)
This has only really been tested with the Flash plugin and seems to work reasonably.
svn path=/import/netsurf/; revision=1216
2004-08-13 00:55:59 +00:00
James Bursa
acfb4c0adb
[project @ 2004-08-11 22:08:25 by bursa]
...
Remove content_add_instance(), content_remove_instance(), content_reshape_instance(). Add content_open(), content_close(). Implement for CONTENT_HTML.
svn path=/import/netsurf/; revision=1213
2004-08-11 22:08:26 +00:00
James Bursa
bc727dda1c
[project @ 2004-08-11 19:02:32 by bursa]
...
Start work on removing instances and making content types non-shareable. Clean up some #includes.
svn path=/import/netsurf/; revision=1211
2004-08-11 19:02:32 +00:00
John Mark Bell
912d09b1cb
[project @ 2004-08-11 16:26:13 by jmb]
...
Make content_redraw return a bool
Printing of foreground images now uses OS_SpriteOp
Printing of background images disabled
Mega-paranoid SWI result checking in htmlredraw.c
Rearranged GIF data structure slightly - updates to reflect this.
Other stuff I've probably forgotten
svn path=/import/netsurf/; revision=1208
2004-08-11 16:26:13 +00:00
John Mark Bell
c9bd6fa9fc
[project @ 2004-08-09 16:11:58 by jmb]
...
Rework the interface of the URL handing module to allow for multiple error types.
Modify save_complete URL rewriting appropriately.
svn path=/import/netsurf/; revision=1206
2004-08-09 16:11:58 +00:00
James Bursa
54d25de371
[project @ 2004-07-30 16:16:07 by bursa]
...
Implement content_quit() and ro_gui_window_quit() to free resources on quit.
svn path=/import/netsurf/; revision=1164
2004-07-30 16:16:07 +00:00
James Bursa
f0c6cb6d1a
[project @ 2004-07-30 16:14:43 by bursa]
...
Plug some minor leaks.
svn path=/import/netsurf/; revision=1163
2004-07-30 16:14:44 +00:00
James Bursa
534b464bec
[project @ 2004-07-27 15:49:28 by bursa]
...
Implement proxy authentication. Bring templates in line with style guide (icon sizes and fill display fields), and remove dead icons. Clean up choices dialog code. Fix persistent dialog code. Make browser choices the default pane.
svn path=/import/netsurf/; revision=1153
2004-07-27 15:49:28 +00:00
Richard Wilson
de4d151285
[project @ 2004-07-25 20:45:15 by rjw]
...
Support for MNGs and JNGs. Bug fix for help token regression. Minor GUI fixes.
svn path=/import/netsurf/; revision=1144
2004-07-25 20:45:16 +00:00
John Mark Bell
a0d23659b6
[project @ 2004-07-16 20:57:14 by jmb]
...
Fix silly rjwness
svn path=/import/netsurf/; revision=1090
2004-07-16 20:57:14 +00:00
Richard Wilson
b94318ca32
[project @ 2004-07-16 20:02:28 by rjw]
...
Fix for broken content type changes.
svn path=/import/netsurf/; revision=1084
2004-07-16 20:02:28 +00:00
Richard Wilson
b7bb766e95
[project @ 2004-07-16 19:47:02 by rjw]
...
Fix for hotlist menu selection. Interface for MNG/JNG display.
svn path=/import/netsurf/; revision=1083
2004-07-16 19:47:03 +00:00
James Bursa
48130c473b
[project @ 2004-07-10 10:05:16 by bursa]
...
Fix crash related to aborting fetches.
svn path=/import/netsurf/; revision=1067
2004-07-10 10:05:16 +00:00
John Mark Bell
ba22b4e753
[project @ 2004-07-10 02:35:30 by jmb]
...
Use libcurl's progress callback functionality to display fetch status.
This will update the status line once a second, more frequently requires hacking libcurl.
svn path=/import/netsurf/; revision=1066
2004-07-10 02:35:31 +00:00
James Bursa
a1d73ecd11
[project @ 2004-06-27 23:24:11 by bursa]
...
Rewritten download window. Now downloads direct to file. New download window gui.
svn path=/import/netsurf/; revision=1020
2004-06-27 23:24:11 +00:00
James Bursa
6720beb2c1
[project @ 2004-06-23 15:41:50 by bursa]
...
Fix fetchcache_go() treatment of contents which the initiator loses interest in (eg. wrong content-type).
svn path=/import/netsurf/; revision=997
2004-06-23 15:41:50 +00:00
James Bursa
ecc3e59fdc
[project @ 2004-06-23 11:40:29 by bursa]
...
Fix destroying of contents after redirects.
svn path=/import/netsurf/; revision=996
2004-06-23 11:40:29 +00:00
James Bursa
fdaf72417a
[project @ 2004-06-22 17:37:51 by bursa]
...
Fix aborting of fetches.
svn path=/import/netsurf/; revision=990
2004-06-22 17:37:51 +00:00
James Bursa
1fa1786d83
[project @ 2004-06-21 15:49:59 by bursa]
...
Remove obsolete files and some dead code.
svn path=/import/netsurf/; revision=989
2004-06-21 15:49:59 +00:00
James Bursa
b4723c1d05
[project @ 2004-06-21 15:09:58 by bursa]
...
Merge memory cache into content module.
svn path=/import/netsurf/; revision=986
2004-06-21 15:09:59 +00:00
John Mark Bell
930f49238d
[project @ 2004-06-20 23:16:02 by jmb]
...
Fixup missing initialiser
svn path=/import/netsurf/; revision=984
2004-06-20 23:16:02 +00:00
James Bursa
f8825b81e4
[project @ 2004-06-20 23:09:51 by bursa]
...
Implement content_stop() and html_stop().
svn path=/import/netsurf/; revision=982
2004-06-20 23:09:52 +00:00
James Bursa
d938fe135b
[project @ 2004-06-10 23:55:23 by bursa]
...
Split fetchcache() into fetchcache() and fetchcache_go() to solve problems of callbacks being called before fetchcache() returns. Fix <style> breakage. Error handling fixes & improvements.
svn path=/import/netsurf/; revision=957
2004-06-10 23:55:23 +00:00
John Mark Bell
e6cec7dbe8
[project @ 2004-06-10 22:40:56 by jmb]
...
Allow configuration of SSL certificate verification
svn path=/import/netsurf/; revision=955
2004-06-10 22:40:56 +00:00
John Mark Bell
bd6ec25190
[project @ 2004-06-10 22:39:56 by jmb]
...
Compiler warning purge
svn path=/import/netsurf/; revision=954
2004-06-10 22:39:56 +00:00
James Bursa
08177fa581
[project @ 2004-06-10 20:41:26 by bursa]
...
Add global content list. Better error handling in content code. Improved code documentation. Remove some obsolete functions. Implement debug window listing contents.
svn path=/import/netsurf/; revision=951
2004-06-10 20:41:26 +00:00
John Tytgat
6790d477d5
[project @ 2004-06-08 20:25:04 by joty]
...
- fetchcache_error_page() : small optimisation.
- removed compiler warning
svn path=/import/netsurf/; revision=936
2004-06-08 20:25:04 +00:00
John Tytgat
dc65374aa6
[project @ 2004-06-05 15:03:59 by joty]
...
Created content_set_status() : one centralised place where status_message
in the content struct is updated in a fail safe way.
svn path=/import/netsurf/; revision=928
2004-06-05 15:03:59 +00:00
James Bursa
e18bc32952
[project @ 2004-06-02 20:58:40 by bursa]
...
Remove some #ifdef riscos.
svn path=/import/netsurf/; revision=909
2004-06-02 20:58:40 +00:00
James Bursa
1f28aad336
[project @ 2004-06-02 20:58:16 by bursa]
...
Remove some #ifdef riscos. Use floats for animation area.
svn path=/import/netsurf/; revision=908
2004-06-02 20:58:16 +00:00
James Bursa
9da0a16ac3
[project @ 2004-06-02 20:57:50 by bursa]
...
Remove some #ifdef riscos.
svn path=/import/netsurf/; revision=907
2004-06-02 20:57:50 +00:00
James Bursa
8b78a7803d
[project @ 2004-05-21 14:26:59 by bursa]
...
Improved handling of objects and frames; some work on malloc() failure in box conversion.
svn path=/import/netsurf/; revision=880
2004-05-21 14:26:59 +00:00
James Bursa
bb41604045
[project @ 2004-05-05 16:33:15 by bursa]
...
Fix some compiler warnings. Ignore size attribute for file inputs.
svn path=/import/netsurf/; revision=828
2004-05-05 16:33:15 +00:00
John Mark Bell
8cb321ec78
[project @ 2004-05-02 00:21:40 by jmb]
...
Minimal fixes to allow compilation with Norcroft
svn path=/import/netsurf/; revision=813
2004-05-02 00:21:41 +00:00
John Tytgat
49ac08e2e4
[project @ 2004-05-01 21:37:29 by joty]
...
fetch_curl_header() : better protection against malformed header lines;
realm data line is now properly terminated with NUL character.
svn path=/import/netsurf/; revision=810
2004-05-01 21:37:29 +00:00
James Bursa
199eee4b0b
[project @ 2004-04-26 13:47:51 by bursa]
...
Fix scaled GIF animations.
svn path=/import/netsurf/; revision=805
2004-04-26 13:47:51 +00:00
Matthew Hambley
d44ab700d0
[project @ 2004-04-25 11:40:05 by matthewh]
...
A more human face to download bytecounts. Needs someone who can speak French to correct the fr messages file.
svn path=/import/netsurf/; revision=803
2004-04-25 11:40:05 +00:00
James Bursa
1f07fc6de5
[project @ 2004-04-24 23:42:31 by bursa]
...
Replace void pointer in content callbacks with union content_msg_data. Fix animated gif flickering (except for scaled or masked gifs). Add gif to the debug builds.
svn path=/import/netsurf/; revision=801
2004-04-24 23:42:32 +00:00
James Bursa
83a61530dc
[project @ 2004-04-20 18:27:46 by bursa]
...
Make Content-Type type comparison case-insensitive (reported by Rien Mertens).
svn path=/import/netsurf/; revision=795
2004-04-20 18:27:46 +00:00
James Bursa
282629daa1
[project @ 2004-04-14 13:48:18 by bursa]
...
Remove obsolete include.
svn path=/import/netsurf/; revision=785
2004-04-14 13:48:18 +00:00
James Bursa
a168eaaed6
[project @ 2004-04-14 12:53:14 by bursa]
...
Merge css_create() into css_convert().
svn path=/import/netsurf/; revision=782
2004-04-14 12:53:14 +00:00
James Bursa
9978864c34
[project @ 2004-04-14 12:47:40 by bursa]
...
Remove obsolete files.
svn path=/import/netsurf/; revision=781
2004-04-14 12:47:40 +00:00
John Mark Bell
7218268567
[project @ 2004-04-10 12:57:17 by jmb]
...
Remove download contents from the cache
svn path=/import/netsurf/; revision=742
2004-04-10 12:57:17 +00:00
John Mark Bell
29578a4fd8
[project @ 2004-04-07 19:19:31 by jmb]
...
Take account of file path when creating POST data.
svn path=/import/netsurf/; revision=738
2004-04-07 19:19:31 +00:00
James Bursa
c08ffc97c5
[project @ 2004-04-03 14:58:46 by bursa]
...
Request only gzip compression, since deflate is broken on many servers (see http://www.gzip.org/zlib/zlib_faq , 36).
svn path=/import/netsurf/; revision=712
2004-04-03 14:58:46 +00:00
James Bursa
27562bf838
[project @ 2004-04-02 13:51:13 by bursa]
...
Implement fetch_can_fetch().
svn path=/import/netsurf/; revision=699
2004-04-02 13:51:13 +00:00
James Bursa
697be91e3b
[project @ 2004-03-28 17:18:52 by bursa]
...
Fix for errors with compressed content.
svn path=/import/netsurf/; revision=689
2004-03-28 17:18:52 +00:00
James Bursa
8052ed8c6c
[project @ 2004-03-28 15:41:50 by bursa]
...
Disable some excess logging.
svn path=/import/netsurf/; revision=688
2004-03-28 15:41:50 +00:00
James Bursa
043d1e58c6
[project @ 2004-03-27 23:19:34 by bursa]
...
Replace in_callback with locked counter to fix crash.
svn path=/import/netsurf/; revision=683
2004-03-27 23:19:34 +00:00
James Bursa
b0fdba3f59
[project @ 2004-03-27 00:53:19 by bursa]
...
Add imagemap and jpeg to the debug build.
svn path=/import/netsurf/; revision=675
2004-03-27 00:54:03 +00:00
James Bursa
48c8934431
[project @ 2004-03-27 00:50:58 by bursa]
...
Add fetch_blank_curl, break out fetch_set_options(), fetch_free(), fetch_done(), recover from errors more cleanly, enable compression.
svn path=/import/netsurf/; revision=674
2004-03-27 00:50:58 +00:00
John Mark Bell
2d42fc01f9
[project @ 2004-03-24 00:03:38 by jmb]
...
Improve handling of filename generation.
svn path=/import/netsurf/; revision=658
2004-03-24 00:03:38 +00:00
John Mark Bell
083d96493e
[project @ 2004-03-21 23:44:53 by jmb]
...
Add a couple of assertions.
svn path=/import/netsurf/; revision=649
2004-03-21 23:44:53 +00:00
John Mark Bell
7f2d86b2f6
[project @ 2004-03-21 23:36:05 by jmb]
...
Make the filename unixified and leafnamelike
svn path=/import/netsurf/; revision=648
2004-03-21 23:36:05 +00:00
John Mark Bell
7e922c290f
[project @ 2004-03-21 21:32:15 by jmb]
...
Fix for SparkFS causing problems with uploading zip files.
Map filetypes to mimetype properly.
svn path=/import/netsurf/; revision=646
2004-03-21 21:32:15 +00:00
John Mark Bell
3aeafecd7b
[project @ 2004-03-21 20:07:14 by jmb]
...
<input type="file" support>
Broken in places.
svn path=/import/netsurf/; revision=645
2004-03-21 20:07:14 +00:00
James Bursa
15537fb20d
[project @ 2004-03-21 12:50:10 by bursa]
...
Animation support, not yet optimised.
svn path=/import/netsurf/; revision=641
2004-03-21 12:50:10 +00:00
John Mark Bell
cbd74e24d7
[project @ 2004-03-16 00:51:34 by jmb]
...
Add content mapping for image/pjpeg
svn path=/import/netsurf/; revision=628
2004-03-16 00:51:34 +00:00
James Bursa
a25c9bb1c3
[project @ 2004-03-13 20:45:00 by bursa]
...
Remove unescaping on redirect.
svn path=/import/netsurf/; revision=617
2004-03-13 20:45:00 +00:00
James Bursa
fba46de9cb
[project @ 2004-03-11 02:19:13 by bursa]
...
Add source_data to content structure and remove equivalents from individual contents.
svn path=/import/netsurf/; revision=606
2004-03-11 02:19:14 +00:00
James Bursa
7d9bf053b4
[project @ 2004-03-08 00:03:58 by bursa]
...
Implement Accept-Language option.
svn path=/import/netsurf/; revision=591
2004-03-08 00:03:58 +00:00
James Bursa
1c85bf0429
[project @ 2004-03-02 18:02:17 by bursa]
...
Add new url functions and modify to use them.
svn path=/import/netsurf/; revision=578
2004-03-02 18:02:41 +00:00
James Bursa
7f68e012cc
[project @ 2004-02-27 17:45:19 by bursa]
...
Move English text to Messages file for translation.
svn path=/import/netsurf/; revision=576
2004-02-27 17:45:19 +00:00
James Bursa
7897a98a4c
[project @ 2004-02-25 15:12:57 by bursa]
...
Implement scaling; rewrite desktop/browser; add riscos/thumbnail; rewrite history.
svn path=/import/netsurf/; revision=566
2004-02-25 15:12:58 +00:00
James Bursa
1319ff78c8
[project @ 2004-02-13 16:09:12 by bursa]
...
Clean up and rewrite options code.
svn path=/import/netsurf/; revision=536
2004-02-13 16:09:12 +00:00
John Mark Bell
e8290de904
[project @ 2004-02-02 23:38:02 by jmb]
...
Fix issues highlighted by teoma.com
svn path=/import/netsurf/; revision=531
2004-02-02 23:38:02 +00:00
James Bursa
658084359d
[project @ 2004-01-26 14:16:23 by bursa]
...
Fix crashes related to content_destroy() by adding lock, implement no_error_pages.
svn path=/import/netsurf/; revision=508
2004-01-26 14:16:23 +00:00
John Mark Bell
986b650983
[project @ 2004-01-25 20:13:51 by jmb]
...
Add jpeglib 6b based rendering. Attempts to use the OS routines first as
they're faster.
svn path=/import/netsurf/; revision=503
2004-01-25 20:13:51 +00:00
James Bursa
1bdcb44639
[project @ 2004-01-24 17:08:15 by bursa]
...
Add permitted_types to html_fetch_object().
svn path=/import/netsurf/; revision=500
2004-01-24 17:08:16 +00:00
James Bursa
8755ceb0c8
[project @ 2004-01-23 20:46:29 by bursa]
...
Add error pages for fetch failures.
svn path=/import/netsurf/; revision=498
2004-01-23 20:46:29 +00:00
John Mark Bell
0dab93fe76
[project @ 2004-01-20 19:08:34 by jmb]
...
Allow toggling of POST support.
Add new toolbar icon numbers to riscos/gui.h
svn path=/import/netsurf/; revision=490
2004-01-20 19:08:34 +00:00
John Mark Bell
62245d13ec
[project @ 2004-01-05 02:10:59 by jmb]
...
Add ability to turn off browser features in build.
This may be useful when hunting down bugs.
svn path=/import/netsurf/; revision=480
2004-01-05 02:10:59 +00:00
James Bursa
ce0d5294d5
[project @ 2003-12-27 20:15:22 by bursa]
...
Use charset from Content-Type header.
svn path=/import/netsurf/; revision=460
2003-12-27 20:15:23 +00:00
John Mark Bell
02915bb583
[project @ 2003-12-27 02:23:10 by jmb]
...
Fix a couple more warnings
svn path=/import/netsurf/; revision=457
2003-12-27 02:23:10 +00:00
James Bursa
894703b53b
[project @ 2003-12-26 16:20:57 by bursa]
...
Enable cookies.
svn path=/import/netsurf/; revision=443
2003-12-26 16:20:57 +00:00
James Bursa
f1b59814f8
[project @ 2003-12-26 00:17:55 by bursa]
...
New url_join using liburi, <base href=...>.
svn path=/import/netsurf/; revision=441
2003-12-26 00:17:55 +00:00
James Bursa
9328a742f6
[project @ 2003-11-08 19:18:37 by bursa]
...
Fix queueing bugs.
svn path=/import/netsurf/; revision=413
2003-11-08 19:18:37 +00:00
James Bursa
b212e59a20
[project @ 2003-11-06 19:41:41 by bursa]
...
Mask null polls and use PollIdle when appropriate.
svn path=/import/netsurf/; revision=406
2003-11-06 19:41:41 +00:00
John Mark Bell
f07a47d252
[project @ 2003-10-26 00:09:27 by jmb]
...
Fix bug involving while loop exiting early.
Move the xstrdup of the realm into riscos/401login.c
svn path=/import/netsurf/; revision=389
2003-10-26 00:09:27 +00:00
John Mark Bell
ab8edd9da4
[project @ 2003-10-25 22:51:45 by jmb]
...
Fix bug relating to
http://www.mw-software.com/software/artworks2/aw2support.html
svn path=/import/netsurf/; revision=388
2003-10-25 22:51:45 +00:00
James Bursa
43145ba6e4
[project @ 2003-10-25 21:50:16 by bursa]
...
Temporary workaround for libcurl bug.
svn path=/import/netsurf/; revision=384
2003-10-25 21:50:16 +00:00
John Mark Bell
ad6185490d
[project @ 2003-10-25 19:21:42 by jmb]
...
Turn on support for other http auth methods (other than Basic).
This is untested.
svn path=/import/netsurf/; revision=383
2003-10-25 19:21:42 +00:00
John Mark Bell
c9e188a4d1
[project @ 2003-10-25 19:20:13 by jmb]
...
HTTP Auth login improved (greatly).
Addresses all three issues in the previous version.
svn path=/import/netsurf/; revision=382
2003-10-25 19:20:13 +00:00
James Bursa
146011f919
[project @ 2003-10-25 16:22:11 by bursa]
...
Implement multipart/formdata POST.
svn path=/import/netsurf/; revision=377
2003-10-25 16:22:11 +00:00
James Bursa
28f974f00f
[project @ 2003-10-25 14:13:49 by bursa]
...
URL encoded POST support.
svn path=/import/netsurf/; revision=375
2003-10-25 14:13:49 +00:00
John Mark Bell
caac2628a7
[project @ 2003-10-23 00:09:16 by jmb]
...
Enable logging into sites which require Basic Authentication
Has a couple of issues:
1) Opens the page in the first window in the list
2) Doesn't save the login details so you have to log in to each page.
3) The call to ro_gui_401login_open shouldn't be there.
svn path=/import/netsurf/; revision=372
2003-10-23 00:09:17 +00:00
James Bursa
43736de996
[project @ 2003-10-08 20:49:26 by bursa]
...
Plug memory leaks.
svn path=/import/netsurf/; revision=353
2003-10-08 20:49:26 +00:00
James Bursa
63822e9469
[project @ 2003-09-30 20:33:45 by bursa]
...
Document more files.
svn path=/import/netsurf/; revision=335
2003-09-30 20:33:45 +00:00
James Bursa
4e67d451a7
[project @ 2003-09-17 23:27:33 by bursa]
...
Documented fetch.
svn path=/import/netsurf/; revision=303
2003-09-17 23:27:33 +00:00
James Bursa
1d8100be6f
[project @ 2003-09-17 17:54:39 by bursa]
...
Fix last checkin.
svn path=/import/netsurf/; revision=300
2003-09-17 17:54:39 +00:00
James Bursa
6dc14a06b7
[project @ 2003-09-17 17:44:12 by bursa]
...
Fix aborting fetches.
svn path=/import/netsurf/; revision=299
2003-09-17 17:44:12 +00:00
James Bursa
763f186705
[project @ 2003-09-17 12:57:33 by bursa]
...
Poll queuing fix, backup redraw code.
svn path=/import/netsurf/; revision=296
2003-09-17 12:57:43 +00:00
James Bursa
d0d3e96cbb
[project @ 2003-09-17 12:56:43 by bursa]
...
Fix memory corruption when content destroyed from CONTENT_MSG_LOADING.
svn path=/import/netsurf/; revision=295
2003-09-17 12:56:43 +00:00
John Mark Bell
b858507d90
[project @ 2003-09-10 22:27:15 by jmb]
...
Add support for Draw and Sprite files
svn path=/import/netsurf/; revision=281
2003-09-10 22:27:15 +00:00
James Bursa
f33b3e6f52
[project @ 2003-09-10 21:44:10 by bursa]
...
Reformat page when browser window is resized.
svn path=/import/netsurf/; revision=280
2003-09-10 21:44:11 +00:00
James Bursa
9c2e649290
[project @ 2003-09-10 17:10:25 by bursa]
...
Set graphics window when rendering objects.
svn path=/import/netsurf/; revision=279
2003-09-10 17:10:25 +00:00
James Bursa
9fa8f4037a
[project @ 2003-09-07 21:08:13 by bursa]
...
Document cache and content, split struct content up.
svn path=/import/netsurf/; revision=270
2003-09-07 21:08:13 +00:00
John Mark Bell
b19462e1ff
[project @ 2003-09-03 21:58:54 by jmb]
...
Call content_reshape_instance
svn path=/import/netsurf/; revision=265
2003-09-03 21:58:54 +00:00
James Bursa
cdf0601420
[project @ 2003-08-30 21:45:03 by bursa]
...
Make page background colour work properly.
svn path=/import/netsurf/; revision=263
2003-08-30 21:45:03 +00:00
James Bursa
5c310d84dc
[project @ 2003-08-29 12:57:14 by bursa]
...
Better handling of server HTTP errors.
svn path=/import/netsurf/; revision=259
2003-08-29 12:57:14 +00:00
James Bursa
3ce4ce9653
[project @ 2003-08-28 20:04:35 by bursa]
...
Use Content-Length to give percentage downloads.
svn path=/import/netsurf/; revision=256
2003-08-28 20:04:35 +00:00
James Bursa
b444025e28
[project @ 2003-08-28 19:20:40 by bursa]
...
Bug fix.
svn path=/import/netsurf/; revision=254
2003-08-28 19:20:40 +00:00
James Bursa
05891b85d2
[project @ 2003-08-28 19:20:23 by bursa]
...
Add transfer time outs.
svn path=/import/netsurf/; revision=253
2003-08-28 19:20:23 +00:00
James Bursa
294fa48d3d
[project @ 2003-08-25 16:17:11 by bursa]
...
Fix 774165 (redirects with empty body).
svn path=/import/netsurf/; revision=249
2003-08-25 16:17:11 +00:00
John Mark Bell
3c0daf429a
[project @ 2003-07-22 22:13:44 by jmb]
...
Enable viewing HTML source when F8 is pressed
svn path=/import/netsurf/; revision=241
2003-07-22 22:13:44 +00:00
James Bursa
c3c1fb916b
[project @ 2003-07-18 21:02:29 by bursa]
...
New GIF renderer using animlib (jmb).
svn path=/import/netsurf/; revision=235
2003-07-18 21:02:29 +00:00
James Bursa
5031b80b33
[project @ 2003-07-17 23:01:02 by bursa]
...
Fix 670947, tidy gui code, move some headers.
svn path=/import/netsurf/; revision=231
2003-07-17 23:01:02 +00:00
John Mark Bell
33cc86a8bb
[project @ 2003-07-17 14:26:15 by jmb]
...
create parameters file for plugins
svn path=/import/netsurf/; revision=227
2003-07-17 14:26:15 +00:00
James Bursa
c7520629b0
[project @ 2003-07-16 17:38:46 by bursa]
...
Make fetchcache return 0 on failure to parse URL.
svn path=/import/netsurf/; revision=225
2003-07-16 17:38:46 +00:00
James Bursa
9fec06838d
[project @ 2003-07-15 18:05:28 by bursa]
...
Implement other_destroy().
svn path=/import/netsurf/; revision=219
2003-07-15 18:05:28 +00:00
James Bursa
5911578eaf
[project @ 2003-07-15 14:37:34 by bursa]
...
Implement html_redraw.
svn path=/import/netsurf/; revision=218
2003-07-15 14:37:34 +00:00
James Bursa
889ae885c6
[project @ 2003-07-14 22:57:45 by bursa]
...
Add content instances.
svn path=/import/netsurf/; revision=216
2003-07-14 22:57:45 +00:00
James Bursa
9317e33d0b
[project @ 2003-07-09 21:33:01 by bursa]
...
More work on <object> and plugins.
svn path=/import/netsurf/; revision=213
2003-07-09 21:33:01 +00:00
John Mark Bell
133c3ee759
[project @ 2003-07-07 22:10:51 by jmb]
...
Rewrite plugin system backend.
svn path=/import/netsurf/; revision=210
2003-07-07 22:10:51 +00:00
James Bursa
1abf8018a9
[project @ 2003-07-07 21:53:15 by bursa]
...
Fix header handling for reused connections.
svn path=/import/netsurf/; revision=209
2003-07-07 21:53:15 +00:00
James Bursa
484eaf8297
[project @ 2003-07-01 20:36:28 by bursa]
...
Handle relative redirects.
svn path=/import/netsurf/; revision=197
2003-07-01 20:36:28 +00:00
James Bursa
f13643d704
[project @ 2003-06-30 22:21:33 by bursa]
...
Strip fragment identifiers from URLs
svn path=/import/netsurf/; revision=194
2003-06-30 22:21:33 +00:00
James Bursa
4496d3cdbd
[project @ 2003-06-30 15:57:08 by bursa]
...
Fix interlaced PNG display.
svn path=/import/netsurf/; revision=192
2003-06-30 15:57:08 +00:00
James Bursa
017fc4eb4b
[project @ 2003-06-30 12:44:02 by bursa]
...
New file headers.
svn path=/import/netsurf/; revision=190
2003-06-30 12:44:03 +00:00
James Bursa
1145b231d4
[project @ 2003-06-26 11:41:26 by bursa]
...
Implement HTTP redirects.
svn path=/import/netsurf/; revision=187
2003-06-26 11:41:26 +00:00
James Bursa
9903df5654
[project @ 2003-06-24 23:22:00 by bursa]
...
Change cache to use current content sizes.
svn path=/import/netsurf/; revision=183
2003-06-24 23:22:00 +00:00
James Bursa
0c0ff3c596
[project @ 2003-06-17 19:24:20 by bursa]
...
Change fetchcache system to store loading contents in cache.
svn path=/import/netsurf/; revision=180
2003-06-17 19:24:21 +00:00
Philip Pemberton
97dea9f287
[project @ 2003-06-05 13:17:55 by philpem]
...
Added GIF decode support
svn path=/import/netsurf/; revision=160
2003-06-05 13:17:55 +00:00
John Mark Bell
3ca51179c9
[project @ 2003-06-02 01:09:50 by jmb]
...
Make proxy work
svn path=/import/netsurf/; revision=150
2003-06-02 01:09:50 +00:00
Phil Mellor
9f81422aea
[project @ 2003-06-01 23:02:56 by monkeyson]
...
Configuration windows added. HTTP Proxy support (untested).
svn path=/import/netsurf/; revision=145
2003-06-01 23:02:56 +00:00
James Bursa
27d93c182c
[project @ 2003-05-10 11:13:34 by bursa]
...
Partial PNG support.
svn path=/import/netsurf/; revision=129
2003-05-10 11:15:49 +00:00
James Bursa
0285c2984f
[project @ 2003-04-25 08:03:15 by bursa]
...
Various memory fixes.
svn path=/import/netsurf/; revision=128
2003-04-25 08:03:15 +00:00
James Bursa
58c28f9c1a
[project @ 2003-04-17 21:35:02 by bursa]
...
Max one fetch from each host at once, fix multiple fetches of same url.
svn path=/import/netsurf/; revision=127
2003-04-17 21:35:02 +00:00
James Bursa
09b1ede5a3
[project @ 2003-04-15 17:53:00 by bursa]
...
Inline images and related.
svn path=/import/netsurf/; revision=125
2003-04-15 17:53:00 +00:00
James Bursa
63b6455f73
[project @ 2003-04-13 12:50:10 by bursa]
...
style element, CSS fixes, id selectors.
svn path=/import/netsurf/; revision=124
2003-04-13 12:50:10 +00:00
James Bursa
7c94cf8be9
[project @ 2003-04-10 21:44:45 by bursa]
...
Memory usage cleaning.
svn path=/import/netsurf/; revision=121
2003-04-10 21:44:45 +00:00
James Bursa
230cb5f01f
[project @ 2003-04-09 21:57:09 by bursa]
...
Table layout fixes, allowed type list.
svn path=/import/netsurf/; revision=119
2003-04-09 21:57:09 +00:00
James Bursa
46edb645e1
[project @ 2003-04-06 18:09:34 by bursa]
...
@import, more status messages.
svn path=/import/netsurf/; revision=116
2003-04-06 18:09:34 +00:00
James Bursa
2253e38be8
[project @ 2003-04-05 21:38:06 by bursa]
...
External stylesheets.
svn path=/import/netsurf/; revision=115
2003-04-05 21:38:06 +00:00
James Bursa
4421b2e633
[project @ 2003-04-04 15:19:31 by bursa]
...
New CSS parser.
svn path=/import/netsurf/; revision=112
2003-04-04 15:19:32 +00:00
James Bursa
91f8a679db
[project @ 2003-03-15 15:53:20 by bursa]
...
MIME types for local files, new test files.
svn path=/import/netsurf/; revision=107
2003-03-15 15:53:20 +00:00
James Bursa
d3265936b9
[project @ 2003-03-08 20:26:31 by bursa]
...
Fix coordinates, sprite area.
svn path=/import/netsurf/; revision=105
2003-03-08 20:26:31 +00:00
James Bursa
e2efda19df
[project @ 2003-03-04 11:59:35 by bursa]
...
More compiler warning fixes.
svn path=/import/netsurf/; revision=104
2003-03-04 11:59:36 +00:00
James Bursa
817421cb0f
[project @ 2003-02-28 11:49:13 by bursa]
...
More status messages, bug fixes.
svn path=/import/netsurf/; revision=102
2003-02-28 11:49:13 +00:00
James Bursa
8edb43af7d
[project @ 2003-02-25 21:00:27 by bursa]
...
Bug fixes, experimental JPEG support.
svn path=/import/netsurf/; revision=100
2003-02-25 21:00:27 +00:00
James Bursa
a4c5929a2f
[project @ 2003-02-09 12:58:14 by bursa]
...
Reorganization and rewrite of fetch, cache, and content handling.
svn path=/import/netsurf/; revision=96
2003-02-09 12:58:15 +00:00