summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/cache.c7
-rw-r--r--content/cache.h7
-rw-r--r--content/content.h8
-rw-r--r--content/fetch.c10
-rw-r--r--content/fetch.h9
-rw-r--r--content/fetchcache.c7
-rw-r--r--content/fetchcache.h7
-rw-r--r--content/other.c7
-rw-r--r--content/other.h7
-rw-r--r--css/css.c7
-rw-r--r--css/css.h7
-rwxr-xr-xcss/makeenum7
-rw-r--r--css/parser.y7
-rw-r--r--css/ruleset.c7
-rw-r--r--css/scanner.l7
-rw-r--r--debug/filetyped.c7
-rw-r--r--debug/fontd.c7
-rw-r--r--debug/fontd.h7
-rw-r--r--debug/netsurfd.c7
-rw-r--r--debug/optionsd.c7
-rw-r--r--desktop/browser.c8
-rw-r--r--desktop/browser.h8
-rw-r--r--desktop/gui.h8
-rw-r--r--desktop/netsurf.c8
-rw-r--r--desktop/netsurf.h7
-rw-r--r--desktop/options.h7
-rw-r--r--makefile6
-rw-r--r--render/box.c9
-rw-r--r--render/box.h8
-rw-r--r--render/html.c10
-rw-r--r--render/html.h7
-rw-r--r--render/layout.c8
-rw-r--r--render/layout.h7
-rw-r--r--render/textplain.c7
-rw-r--r--render/textplain.h7
-rw-r--r--riscos/filetype.c7
-rw-r--r--riscos/font.c8
-rw-r--r--riscos/font.h8
-rw-r--r--riscos/gif.c8
-rw-r--r--riscos/gif.h7
-rw-r--r--riscos/gui.c9
-rw-r--r--riscos/gui.h7
-rw-r--r--riscos/jpeg.c9
-rw-r--r--riscos/jpeg.h7
-rw-r--r--riscos/options.c8
-rw-r--r--riscos/options.h7
-rw-r--r--riscos/plugin.c7
-rw-r--r--riscos/plugin.h7
-rw-r--r--riscos/png.c7
-rw-r--r--riscos/png.h7
-rw-r--r--riscos/theme.c7
-rw-r--r--riscos/theme.h7
-rw-r--r--utils/log.h7
-rw-r--r--utils/utils.c9
-rw-r--r--utils/utils.h7
55 files changed, 305 insertions, 106 deletions
diff --git a/content/cache.c b/content/cache.c
index cdb7cf881..033c65909 100644
--- a/content/cache.c
+++ b/content/cache.c
@@ -1,5 +1,8 @@
-/**
- * $Id: cache.c,v 1.5 2003/06/24 23:22:00 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <assert.h>
diff --git a/content/cache.h b/content/cache.h
index ae1ab503f..4bc64d6e3 100644
--- a/content/cache.h
+++ b/content/cache.h
@@ -1,5 +1,8 @@
-/**
- * $Id: cache.h,v 1.3 2003/06/17 19:24:20 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
/**
diff --git a/content/content.h b/content/content.h
index 571e23ab2..724e9305e 100644
--- a/content/content.h
+++ b/content/content.h
@@ -1,5 +1,9 @@
-/**
- * $Id: content.h,v 1.13 2003/06/26 11:41:26 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2003 Philip Pemberton <philpem@users.sourceforge.net>
*/
#ifndef _NETSURF_DESKTOP_CONTENT_H_
diff --git a/content/fetch.c b/content/fetch.c
index 714aff555..2fb31e923 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -1,6 +1,12 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
+ */
+
/**
- * $Id: fetch.c,v 1.12 2003/06/26 11:41:26 bursa Exp $
- *
* This module handles fetching of data from any url.
*
* Implementation:
diff --git a/content/fetch.h b/content/fetch.h
index af1414a77..7bf144f44 100644
--- a/content/fetch.h
+++ b/content/fetch.h
@@ -1,6 +1,11 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ */
+
/**
- * $Id: fetch.h,v 1.4 2003/06/26 11:41:26 bursa Exp $
- *
* This module handles fetching of data from any url.
*
* Usage:
diff --git a/content/fetchcache.c b/content/fetchcache.c
index da5d65e13..5a371960f 100644
--- a/content/fetchcache.c
+++ b/content/fetchcache.c
@@ -1,5 +1,8 @@
-/**
- * $Id: fetchcache.c,v 1.11 2003/06/26 11:41:26 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <assert.h>
diff --git a/content/fetchcache.h b/content/fetchcache.h
index c9b3d182c..ddfc2fa76 100644
--- a/content/fetchcache.h
+++ b/content/fetchcache.h
@@ -1,5 +1,8 @@
-/**
- * $Id: fetchcache.h,v 1.5 2003/06/17 19:24:20 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_DESKTOP_FETCHCACHE_H_
diff --git a/content/other.c b/content/other.c
index 2374aa679..638cedcd3 100644
--- a/content/other.c
+++ b/content/other.c
@@ -1,5 +1,8 @@
-/**
- * $Id: other.c,v 1.1 2003/06/17 19:24:20 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <assert.h>
diff --git a/content/other.h b/content/other.h
index 66d69a7ae..7471a21f8 100644
--- a/content/other.h
+++ b/content/other.h
@@ -1,5 +1,8 @@
-/**
- * $Id: other.h,v 1.1 2003/06/17 19:24:20 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_RISCOS_OTHER_H_
diff --git a/css/css.c b/css/css.c
index 41c7d25db..781999a40 100644
--- a/css/css.c
+++ b/css/css.c
@@ -1,5 +1,8 @@
-/**
- * $Id: css.c,v 1.10 2003/06/26 11:41:26 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <assert.h>
diff --git a/css/css.h b/css/css.h
index 2e89345c5..e5f36039d 100644
--- a/css/css.h
+++ b/css/css.h
@@ -1,5 +1,8 @@
-/**
- * $Id: css.h,v 1.6 2003/04/13 12:50:10 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_CSS_CSS_H_
diff --git a/css/makeenum b/css/makeenum
index fb1354866..516e2c06b 100755
--- a/css/makeenum
+++ b/css/makeenum
@@ -1,5 +1,10 @@
#!/usr/bin/perl -W
-# $Id: makeenum,v 1.3 2003/06/05 14:39:54 bursa Exp $
+#
+# This file is part of NetSurf, http://netsurf.sourceforge.net/
+# Licensed under the GNU General Public License,
+# http://www.opensource.org/licenses/gpl-license
+# Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+#
$out = shift or die "usage: makeenum leafname";
diff --git a/css/parser.y b/css/parser.y
index 81414e5d0..63b01e264 100644
--- a/css/parser.y
+++ b/css/parser.y
@@ -1,5 +1,8 @@
-/**
- * $Id: parser.y,v 1.7 2003/04/13 12:50:10 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
/*
diff --git a/css/ruleset.c b/css/ruleset.c
index 0fa366f3e..36e1a03cf 100644
--- a/css/ruleset.c
+++ b/css/ruleset.c
@@ -1,5 +1,8 @@
-/**
- * $Id: ruleset.c,v 1.7 2003/04/13 12:50:10 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <assert.h>
diff --git a/css/scanner.l b/css/scanner.l
index 9849665b4..820f7cb5d 100644
--- a/css/scanner.l
+++ b/css/scanner.l
@@ -1,5 +1,8 @@
-/**
- * $Id: scanner.l,v 1.2 2003/04/01 21:33:08 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
%{
diff --git a/debug/filetyped.c b/debug/filetyped.c
index 853e1e57e..1695a1c18 100644
--- a/debug/filetyped.c
+++ b/debug/filetyped.c
@@ -1,5 +1,8 @@
-/**
- * $Id: filetyped.c,v 1.1 2003/06/21 13:18:00 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <stdlib.h>
diff --git a/debug/fontd.c b/debug/fontd.c
index 44440a930..89ae8ed75 100644
--- a/debug/fontd.c
+++ b/debug/fontd.c
@@ -1,5 +1,8 @@
-/**
- * $Id: fontd.c,v 1.1 2003/06/21 13:18:00 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <assert.h>
diff --git a/debug/fontd.h b/debug/fontd.h
index e63af6de6..562e2d69f 100644
--- a/debug/fontd.h
+++ b/debug/fontd.h
@@ -1,5 +1,8 @@
-/**
- * $Id: fontd.h,v 1.1 2003/06/21 13:18:00 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_RISCOS_FONT_H_
diff --git a/debug/netsurfd.c b/debug/netsurfd.c
index dcb2150ab..48c1a2d26 100644
--- a/debug/netsurfd.c
+++ b/debug/netsurfd.c
@@ -1,3 +1,10 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ */
+
#include <string.h>
#include "netsurf/content/fetch.h"
#include "netsurf/content/cache.h"
diff --git a/debug/optionsd.c b/debug/optionsd.c
index 493218cb6..2490c1f2f 100644
--- a/debug/optionsd.c
+++ b/debug/optionsd.c
@@ -1,5 +1,8 @@
-/**
- * $Id: optionsd.c,v 1.1 2003/06/21 13:18:00 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include "netsurf/desktop/options.h"
diff --git a/desktop/browser.c b/desktop/browser.c
index cc7f651a9..67d931b16 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -1,5 +1,9 @@
-/**
- * $Id: browser.c,v 1.41 2003/06/26 11:41:26 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include "netsurf/content/cache.h"
diff --git a/desktop/browser.h b/desktop/browser.h
index 10613bcd4..d7bd0781b 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -1,5 +1,9 @@
-/**
- * $Id: browser.h,v 1.13 2003/06/17 19:24:21 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_DESKTOP_BROWSER_H_
diff --git a/desktop/gui.h b/desktop/gui.h
index fcff4f382..1a44cf980 100644
--- a/desktop/gui.h
+++ b/desktop/gui.h
@@ -1,5 +1,9 @@
-/**
- * $Id: gui.h,v 1.7 2003/06/01 23:02:56 monkeyson Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_DESKTOP_GUI_H_
diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index a9912061a..aacb657d9 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -1,5 +1,9 @@
-/**
- * $Id: netsurf.c,v 1.10 2003/06/05 13:17:55 philpem Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include "netsurf/desktop/options.h"
diff --git a/desktop/netsurf.h b/desktop/netsurf.h
index 7acab2537..dba94927a 100644
--- a/desktop/netsurf.h
+++ b/desktop/netsurf.h
@@ -1,5 +1,8 @@
-/**
- * $Id: netsurf.h,v 1.2 2003/02/09 12:58:15 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
*/
#ifndef _NETSURF_DESKTOP_NETSURF_H_
diff --git a/desktop/options.h b/desktop/options.h
index f6487cebc..415279b36 100644
--- a/desktop/options.h
+++ b/desktop/options.h
@@ -1,5 +1,8 @@
-/**
- * $Id: options.h,v 1.2 2003/06/06 02:14:28 jmb Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
*/
diff --git a/makefile b/makefile
index e71527794..7a31893ca 100644
--- a/makefile
+++ b/makefile
@@ -1,4 +1,8 @@
-# $Id: makefile,v 1.37 2003/06/24 23:32:39 bursa Exp $
+#
+# This file is part of NetSurf, http://netsurf.sourceforge.net/
+# Licensed under the GNU General Public License,
+# http://www.opensource.org/licenses/gpl-license
+#
CC = riscos-gcc
CC_DEBUG = gcc
diff --git a/render/box.c b/render/box.c
index 5d44a305c..0f6a7ca9f 100644
--- a/render/box.c
+++ b/render/box.c
@@ -1,5 +1,10 @@
-/**
- * $Id: box.c,v 1.51 2003/06/17 19:24:21 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
+ * Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
*/
#include <assert.h>
diff --git a/render/box.h b/render/box.h
index dbff18cf2..e8c7bc58a 100644
--- a/render/box.h
+++ b/render/box.h
@@ -1,5 +1,9 @@
-/**
- * $Id: box.h,v 1.26 2003/06/17 19:24:21 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
*/
#ifndef _NETSURF_RENDER_BOX_H_
diff --git a/render/html.c b/render/html.c
index 1517e89a5..c9932f6a4 100644
--- a/render/html.c
+++ b/render/html.c
@@ -1,5 +1,8 @@
-/**
- * $Id: html.c,v 1.20 2003/06/26 11:41:26 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <assert.h>
@@ -260,6 +263,9 @@ void html_find_stylesheets(struct content *c, xmlNode *head)
if (!(href = (char *) xmlGetProp(node, (const xmlChar *) "href")))
continue;
+ /* TODO: only the first preferred stylesheets (ie. those with a
+ * title attribute) should be loaded (see HTML4 14.3) */
+
url = url_join(href, c->url);
LOG(("linked stylesheet %i '%s'", i, url));
xmlFree(href);
diff --git a/render/html.h b/render/html.h
index 7135dec1a..2d46f0a05 100644
--- a/render/html.h
+++ b/render/html.h
@@ -1,5 +1,8 @@
-/**
- * $Id: html.h,v 1.3 2003/06/17 19:24:21 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_RENDER_HTML_H_
diff --git a/render/layout.c b/render/layout.c
index ccfb0db76..56cc2f12d 100644
--- a/render/layout.c
+++ b/render/layout.c
@@ -1,5 +1,9 @@
-/**
- * $Id: layout.c,v 1.42 2003/06/21 13:18:00 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
*/
#include <assert.h>
diff --git a/render/layout.h b/render/layout.h
index cae352b1a..6e8ea6481 100644
--- a/render/layout.h
+++ b/render/layout.h
@@ -1,5 +1,8 @@
-/**
- * $Id: layout.h,v 1.3 2002/08/11 23:04:02 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_RENDER_LAYOUT_H_
diff --git a/render/textplain.c b/render/textplain.c
index f6e157466..55d1a604f 100644
--- a/render/textplain.c
+++ b/render/textplain.c
@@ -1,5 +1,8 @@
-/**
- * $Id: textplain.c,v 1.3 2003/03/15 15:53:20 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <assert.h>
diff --git a/render/textplain.h b/render/textplain.h
index 7221ab0b8..80f428e86 100644
--- a/render/textplain.h
+++ b/render/textplain.h
@@ -1,5 +1,8 @@
-/**
- * $Id: textplain.h,v 1.1 2003/02/09 12:58:15 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_RENDER_TEXTPLAIN_H_
diff --git a/riscos/filetype.c b/riscos/filetype.c
index ca50daf3b..4b3de879a 100644
--- a/riscos/filetype.c
+++ b/riscos/filetype.c
@@ -1,5 +1,8 @@
-/**
- * $Id: filetype.c,v 1.5 2003/06/05 13:17:55 philpem Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <stdlib.h>
diff --git a/riscos/font.c b/riscos/font.c
index a6f023445..25db522fc 100644
--- a/riscos/font.c
+++ b/riscos/font.c
@@ -1,5 +1,9 @@
-/**
- * $Id: font.c,v 1.14 2003/05/23 11:09:12 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
*/
#include <assert.h>
diff --git a/riscos/font.h b/riscos/font.h
index d582d0ab9..1576311c7 100644
--- a/riscos/font.h
+++ b/riscos/font.h
@@ -1,5 +1,9 @@
-/**
- * $Id: font.h,v 1.7 2003/04/04 15:19:32 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_RISCOS_FONT_H_
diff --git a/riscos/gif.c b/riscos/gif.c
index 881d8fd74..1382b63c8 100644
--- a/riscos/gif.c
+++ b/riscos/gif.c
@@ -1,3 +1,9 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Philip Pemberton <philpem@users.sourceforge.net>
+ */
/*******************
* GIF loader for Netsurf
* Developed by Philip Pemberton for the Netsurf project
@@ -9,8 +15,6 @@
* Add support for GIF transparency
* Add better error handling
* - especially where bad GIFs are concerned.
- *
- * $Id: gif.c,v 1.7 2003/06/17 19:24:21 bursa Exp $
*/
#include <assert.h>
diff --git a/riscos/gif.h b/riscos/gif.h
index 4f98ecded..b1a0cfc7c 100644
--- a/riscos/gif.h
+++ b/riscos/gif.h
@@ -1,5 +1,8 @@
-/**
- * $Id: gif.h,v 1.1 2003/06/05 13:24:28 philpem Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Philip Pemberton <philpem@users.sourceforge.net>
*/
#ifndef _NETSURF_RISCOS_GIF_H_
diff --git a/riscos/gui.c b/riscos/gui.c
index 16a9d4eb8..6f3973ad7 100644
--- a/riscos/gui.c
+++ b/riscos/gui.c
@@ -1,5 +1,10 @@
-/**
- * $Id: gui.c,v 1.34 2003/06/24 23:22:00 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
*/
#include "netsurf/desktop/options.h"
diff --git a/riscos/gui.h b/riscos/gui.h
index fbfb9b0e6..e447eb278 100644
--- a/riscos/gui.h
+++ b/riscos/gui.h
@@ -1,5 +1,8 @@
-/**
- * $Id: gui.h,v 1.7 2003/06/24 23:22:00 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
*/
#ifndef _NETSURF_RISCOS_GUI_H_
diff --git a/riscos/jpeg.c b/riscos/jpeg.c
index db5cc9a22..6f091a904 100644
--- a/riscos/jpeg.c
+++ b/riscos/jpeg.c
@@ -1,6 +1,11 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ */
+
/**
- * $Id: jpeg.c,v 1.6 2003/06/17 19:24:21 bursa Exp $
- *
* This is just a temporary implementation using the JPEG renderer
* available in some versions of RISC OS.
*/
diff --git a/riscos/jpeg.h b/riscos/jpeg.h
index db6371959..d2ba94214 100644
--- a/riscos/jpeg.h
+++ b/riscos/jpeg.h
@@ -1,5 +1,8 @@
-/**
- * $Id: jpeg.h,v 1.2 2003/05/10 11:13:34 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_RISCOS_JPEG_H_
diff --git a/riscos/options.c b/riscos/options.c
index 71c4f3221..9dad0859d 100644
--- a/riscos/options.c
+++ b/riscos/options.c
@@ -1,5 +1,9 @@
-/**
- * $Id: options.c,v 1.6 2003/06/30 11:47:36 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
+ * Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
*/
#include "netsurf/desktop/options.h"
diff --git a/riscos/options.h b/riscos/options.h
index c8e0daf97..6615edec5 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -1,5 +1,8 @@
-/**
- * $ID$
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
*/
#ifndef _NETSURF_RISCOS_OPTIONS_H_
diff --git a/riscos/plugin.c b/riscos/plugin.c
index 2497294b7..821d9d82e 100644
--- a/riscos/plugin.c
+++ b/riscos/plugin.c
@@ -1,5 +1,8 @@
-/**
- * $Id: plugin.c,v 1.10 2003/06/17 19:24:21 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
*/
#include <assert.h>
diff --git a/riscos/plugin.h b/riscos/plugin.h
index 824141337..392bf0016 100644
--- a/riscos/plugin.h
+++ b/riscos/plugin.h
@@ -1,5 +1,8 @@
-/**
- * $Id: plugin.h,v 1.3 2003/06/06 03:12:28 jmb Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
*/
#ifndef _NETSURF_RISCOS_PLUGIN_H_
diff --git a/riscos/png.c b/riscos/png.c
index 4ce4f5d9c..8845fd02f 100644
--- a/riscos/png.c
+++ b/riscos/png.c
@@ -1,5 +1,8 @@
-/**
- * $Id: png.c,v 1.4 2003/06/17 19:24:21 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <assert.h>
diff --git a/riscos/png.h b/riscos/png.h
index 7f79a9a68..370fa6ba3 100644
--- a/riscos/png.h
+++ b/riscos/png.h
@@ -1,5 +1,8 @@
-/**
- * $Id: png.h,v 1.1 2003/05/10 11:15:49 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_RISCOS_PNG_H_
diff --git a/riscos/theme.c b/riscos/theme.c
index e00c0a5a7..2fc91bfcb 100644
--- a/riscos/theme.c
+++ b/riscos/theme.c
@@ -1,5 +1,8 @@
-/**
- * $Id: theme.c,v 1.5 2003/06/06 02:14:28 jmb Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
*/
#include "netsurf/riscos/theme.h"
diff --git a/riscos/theme.h b/riscos/theme.h
index 40edb83d2..54ccf3f58 100644
--- a/riscos/theme.h
+++ b/riscos/theme.h
@@ -1,5 +1,8 @@
-/**
- * $Id: theme.h,v 1.3 2003/06/06 02:14:28 jmb Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
*/
#ifndef _MIGRATE_RISCOS_THEME_H_
diff --git a/utils/log.h b/utils/log.h
index b1bebde34..62911b454 100644
--- a/utils/log.h
+++ b/utils/log.h
@@ -1,5 +1,8 @@
-/**
- * $Id: log.h,v 1.2 2003/02/09 12:58:15 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#include <stdio.h>
diff --git a/utils/utils.c b/utils/utils.c
index bfe089fac..a62f7256a 100644
--- a/utils/utils.c
+++ b/utils/utils.c
@@ -1,5 +1,10 @@
-/**
- * $Id: utils.c,v 1.9 2003/05/22 13:21:45 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
+ * Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
+ * Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
*/
#include <ctype.h>
diff --git a/utils/utils.h b/utils/utils.h
index 0a3540938..3e491648e 100644
--- a/utils/utils.h
+++ b/utils/utils.h
@@ -1,5 +1,8 @@
-/**
- * $Id: utils.h,v 1.7 2003/04/11 21:06:51 bursa Exp $
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
*/
#ifndef _NETSURF_UTILS_UTILS_H_