Tim Bishop [Sun, 1 Aug 2004 17:09:28 +0000 (17:09 +0000)]
Rsync uses a different URL. I did ponder a generic download.uk address,
but after some thought it wouldn't match the master site. Maybe changing
the whole lot and having download.i-scream.org as the master is the way
to go - who knows :-)
Tim Bishop [Wed, 24 Mar 2004 23:56:07 +0000 (23:56 +0000)]
Add a static copy of the menu. By static I mean doesn't use SSI like the
proper menu does. This solves a handful of issues with making that image
at the top both dynamic and cacheable. Downside is we have to keep both
menu files in sync... but that's something we can cope with for now.
Tim Bishop [Wed, 24 Mar 2004 23:29:21 +0000 (23:29 +0000)]
Urg - now the image is generated using SSI the things that include the
include manually won't work. We can kludge these CGI's... but what about
the viewcvs stuff?
Tim Bishop [Wed, 24 Mar 2004 23:16:19 +0000 (23:16 +0000)]
Pretty much the last set of changes I'm going to make:
- Make top-left image more friendly to caches by randomising the URL,
rather than having the URL point to a CGI that returns a random image.
- Change the whole left side bar to use lists for the links, as they should
be, rather than lines of text seperated by <br>'s.
- Add valid XHTML and CSS logos, because we now comply.
Tim Bishop [Wed, 24 Mar 2004 20:57:27 +0000 (20:57 +0000)]
Final round of XHTML/tidy'ing CGI scripts. They both produce XHTML that
validates correctly. The code is a little better, but a touch more messy
in a few places.
Tim Bishop [Wed, 24 Mar 2004 13:11:42 +0000 (13:11 +0000)]
Make docs.cgi XHTML 1.1 compliant (and tidied up the layout).
Problem with this doc is it doesn't have a .xhtml extension, so will
always have to be served as text/html - until I come up with a solution.
Tim Bishop [Tue, 23 Mar 2004 20:22:45 +0000 (20:22 +0000)]
Move to .xhtml files instead of .shtml. They still use SSI.
We're now validating as XHTML 1.1 (or, at least we will be when I've tested
every page of the site to make sure it validates). I've put the necessary
frigs in the webserver so it returns the content-type as text/html if the
web browser doesn't make any claims to know about application/xhtml+xml
(which is the content type defined by the XHTML standards).
Tim Bishop [Fri, 16 Jan 2004 15:54:57 +0000 (15:54 +0000)]
Alter the licensing of libstatgrab. The library part is now under the
LGPL, whilst the tools/examples are under the GPL. Both licenses are
included in the distribution (and are both now in CVS). Also made a
minor alteration to the webpage where it said everything was licensed
under the GPL.
Tim Bishop [Sat, 27 Sep 2003 17:21:32 +0000 (17:21 +0000)]
Update scripts that use cvs2cl. Now using cvs2cl 2.49, still with some
custom patches (but less than before). Diff included here.
--- cvs2cl.bak Sat Sep 27 16:57:59 2003
+++ cvs2cl Sat Sep 27 17:10:55 2003
@@ -1036,7 +1036,8 @@
elsif ($No_Wrap && !$Summary)
{
$msg = &preprocess_msg_text ($msg);
- $files = wrap ("\t", "\t", "* $files");
+# tdb: no-wrap shouldn't wrap ANYTHING!
+ #$files = wrap ("\t", "\t", "* $files");
$msg =~ s/\n(.+)/\n\t$1/g;
unless ($After_Header eq " ") {
$msg =~ s/^(.+)/\t$1/g;
@@ -1328,7 +1329,8 @@
# there are multiple qunks in the first place!
if ((scalar (@qunkrefs)) > 1) {
foreach my $tag (keys (%non_unanimous_tags)) {
- my $everyone_has_this_tag = 1;
+# tdb: we don't want to have unanimous tags
+ my $everyone_has_this_tag = 0;
foreach my $qunkref (@qunkrefs) {
if ((! (defined ($$qunkref{'tags'})))
or (! (grep ($_ eq $tag, @{$$qunkref{'tags'}})))) {
@@ -1521,7 +1523,8 @@
unless ( exists $fileinfo_printed{$b} ) {
if ($fbegun) {
- $beauty .= ", ";
+# tdb: hacked to put a newline after each one
+ $beauty .= ",\n";
} else {
$fbegun = 1;
}
Tim Bishop [Wed, 4 Jun 2003 18:59:03 +0000 (18:59 +0000)]
Move bug tracking to top section, and drop sourceforge section. I hope to
have our own bug tracking soon, which would make the sourceforge pages
redundant. Whether or not we delete the project is another matter...