summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2003-07-07 22:10:51 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2003-07-07 22:10:51 +0000
commit133c3ee759bdc27f661390633064d7554027fbcb (patch)
tree5490bd5ef69499dc8d91f1e9c0252196ae0be8c6 /Docs
parent1abf8018a907cd95af01dfe0196786928988a653 (diff)
downloadnetsurf-133c3ee759bdc27f661390633064d7554027fbcb.tar.gz
netsurf-133c3ee759bdc27f661390633064d7554027fbcb.tar.bz2
[project @ 2003-07-07 22:10:51 by jmb]
Rewrite plugin system backend. svn path=/import/netsurf/; revision=210
Diffstat (limited to 'Docs')
-rw-r--r--Docs/TODO-General3
-rw-r--r--Docs/TODO-HTML6
-rw-r--r--Docs/developer7
3 files changed, 9 insertions, 7 deletions
diff --git a/Docs/TODO-General b/Docs/TODO-General
index 4048d4126..93190c501 100644
--- a/Docs/TODO-General
+++ b/Docs/TODO-General
@@ -1,11 +1,10 @@
-$Id: TODO-General,v 1.3 2003/06/01 21:56:27 jmb Exp $
+$Id: TODO-General,v 1.4 2003/07/07 22:10:51 jmb Exp $
TODO-General for NetSurf.
This file documents general things which need doing.
-Browser Redirect
Disk Cache
Saving
Printing
diff --git a/Docs/TODO-HTML b/Docs/TODO-HTML
index bac217d79..66717dc85 100644
--- a/Docs/TODO-HTML
+++ b/Docs/TODO-HTML
@@ -1,4 +1,4 @@
-$Id: TODO-HTML,v 1.2 2003/06/01 01:02:29 jmb Exp $
+$Id: TODO-HTML,v 1.3 2003/07/07 22:10:51 jmb Exp $
TODO-HTML file for NetSurf.
@@ -15,13 +15,13 @@ Text Formatting:
<VAR>, <ABBR> and <ACRONYM> tags
<Q> tag
-Lists
+Lists:
<LI>
<OL>,<UL>
Tables:
Borders,
- row spanning
+ row spanning (only rowspan=0 needs implementing)
column spanning (only colspan=0 needs implementing)
Images:
diff --git a/Docs/developer b/Docs/developer
index 5af1ae8c3..7278dc81c 100644
--- a/Docs/developer
+++ b/Docs/developer
@@ -11,6 +11,7 @@ The source is split at top level as follows:
content -- fetching, caching, and converting content
css -- CSS parser and interfaces
+debug -- defines functions which allow debugging under *nix
desktop -- non-platform specific front-end
render -- HTML processing and layout
riscos -- RISC OS specific code
@@ -33,10 +34,12 @@ The cache stores this converted content. When content is retrieved from the
cache, content_revive() should result in content which can be displayed (eg. by
loading any images and styles required and updating pointers to them).
-Code should not usually use the fetch_* and cache_* functions directly, except
-for cache_free(). Instead use fetchcache(), which checks the cache for a url and
+Code should not usually use the fetch_* and cache_* functions directly.
+Instead use fetchcache(), which checks the cache for a url and
fetches, converts, and caches it if not present.
+See content/overview for more information.
+
________________________________________________________________________________
css -- CSS parser and interfaces