From e6d7cae40de8eb8935bcb10ffdbe3bd93948143d Mon Sep 17 00:00:00 2001 From: guest Date: Sat, 11 May 2002 00:25:15 +0000 Subject: Picture of me --- Main/JoachimNilsson/crash.jpg | Bin 0 -> 1847 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Main/JoachimNilsson/crash.jpg (limited to 'Main') diff --git a/Main/JoachimNilsson/crash.jpg b/Main/JoachimNilsson/crash.jpg new file mode 100644 index 00000000..a91fafff Binary files /dev/null and b/Main/JoachimNilsson/crash.jpg differ -- cgit v1.2.3 From 121d90575d035e7c91b23956ee45e8f8d1961d92 Mon Sep 17 00:00:00 2001 From: SolidForm Date: Mon, 1 Jul 2002 04:13:26 +0000 Subject: ODBC-driver för mysql MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Main/MySQL/myodbc-2.50.39-nt.zip | Bin 0 -> 1529264 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Main/MySQL/myodbc-2.50.39-nt.zip (limited to 'Main') diff --git a/Main/MySQL/myodbc-2.50.39-nt.zip b/Main/MySQL/myodbc-2.50.39-nt.zip new file mode 100644 index 00000000..38db1c1b Binary files /dev/null and b/Main/MySQL/myodbc-2.50.39-nt.zip differ -- cgit v1.2.3 From 94d062cad2d02d599cb8127a9993f3e8cad4bf4a Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Fri, 12 Jul 2002 14:22:15 +0000 Subject: Better picture of me. --- Main/JoachimNilsson/jo.jpg | Bin 0 -> 61759 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Main/JoachimNilsson/jo.jpg (limited to 'Main') diff --git a/Main/JoachimNilsson/jo.jpg b/Main/JoachimNilsson/jo.jpg new file mode 100644 index 00000000..ff19de28 Binary files /dev/null and b/Main/JoachimNilsson/jo.jpg differ -- cgit v1.2.3 From 9dfcda648080a5d5bdd7d855e04439813d056deb Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Sat, 9 Nov 2002 18:57:25 +0000 Subject: Trial Hurd-Wiki logo --- Main/WebPreferences/logo.png | Bin 0 -> 17674 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Main/WebPreferences/logo.png (limited to 'Main') diff --git a/Main/WebPreferences/logo.png b/Main/WebPreferences/logo.png new file mode 100644 index 00000000..2090f9db Binary files /dev/null and b/Main/WebPreferences/logo.png differ -- cgit v1.2.3 From 919a9183bd90dc075b335aa59a2bf93fda9ea7dd Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Sat, 9 Nov 2002 19:18:02 +0000 Subject: Cool python script ... --- Main/HurdGnuFansOrgDiscuss/hurdwikigen.cgi | 81 ++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 Main/HurdGnuFansOrgDiscuss/hurdwikigen.cgi (limited to 'Main') diff --git a/Main/HurdGnuFansOrgDiscuss/hurdwikigen.cgi b/Main/HurdGnuFansOrgDiscuss/hurdwikigen.cgi new file mode 100644 index 00000000..feea04d0 --- /dev/null +++ b/Main/HurdGnuFansOrgDiscuss/hurdwikigen.cgi @@ -0,0 +1,81 @@ +#!/usr/bin/python +# This is a crude python script used to cut out the contents of +# a wiki page for use in an ordinary page. +# +# Original version for WikiMoinMoin by +# Refined and added caching including conversion to TWiki, but +# still a big hack, by +# +# This script can be used freely under the traditional BSD license, +# without the advertising clause. +# + + +import fileinput +import string +import os +import os.path +from os.path import getmtime, exists +import sys +import cgi +from types import ListType + + +# Set an appropriate CGI header. +print "Content-type: text/html\r\n\r\n" + +## +# Creates a HTML page, filename, from the given URL. +# The HTML is extracted with lynx and parsed for the occurrence of +# the comment tag. All HTML between the +# first and last tag is written to filename. +# +def create_html (filename, url): + f = open (filename, 'w') + raw_data = os.popen ('/usr/bin/lynx -source ' + url).read () + cooked_data = string.replace (raw_data, "PageTop", "PageBottom") + raw_data = string.split (cooked_data, "") + f.write (raw_data[1]) + f.close () + return + +form = cgi.FieldStorage () +web = form.getvalue ("web", "") +page = form.getvalue ("topic", "") +#page = sys.argv[1] + +wiki_file = '/home/virtual/gnufans.org/hurd/data/' + web + '/' + page + '.txt' +wiki_url = 'http://hurd.gnufans.org/bin/view/' + web +'/' + page + '?skin=plain' +html_file = '/home/virtual/gnufans.org/hurd/spool/' + web + "-" + page + +#print "" +#print 'wiki_file="' + wiki_file + '"' +#print 'wiki_url="' + wiki_url + '"' +#print 'html_file=' + html_file + '"' + + +if not exists (wiki_file): + print "The page " + wiki_url + "does not exist!" + exit + +if not exists (html_file): +# print "Creating html file." + create_html (html_file, wiki_url) +else: +# print "Reading file modification times." + wiki_file_time = getmtime (wiki_file) + html_file_time = getmtime (html_file) + +# print wiki_file_time +# print html_file_time + + if wiki_file_time > html_file_time: +# print "Wiki file newer than html file." + create_html (html_file, wiki_url) + +# Print contents of spool file to stdout +document = open (html_file, 'r') +content = document.read () + +print content + -- cgit v1.2.3 From 1a78a3b76e9e487e7e0eb72a60614d73f3aba206 Mon Sep 17 00:00:00 2001 From: Grant Bowman Date: Wed, 20 Nov 2002 15:11:11 +0000 Subject: TWiki Logo --- Main/HurdGnuFansOrg/twikiRobot121x54.gif | Bin 0 -> 5320 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Main/HurdGnuFansOrg/twikiRobot121x54.gif (limited to 'Main') diff --git a/Main/HurdGnuFansOrg/twikiRobot121x54.gif b/Main/HurdGnuFansOrg/twikiRobot121x54.gif new file mode 100644 index 00000000..832c5498 Binary files /dev/null and b/Main/HurdGnuFansOrg/twikiRobot121x54.gif differ -- cgit v1.2.3 From fc61f6442e296b40de3723c6842ac864e6c9ee51 Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Sat, 23 Nov 2002 13:11:54 +0000 Subject: JPEG version for the front page ... for NS 4.xx --- Main/WebPreferences/logo.jpg | Bin 0 -> 7785 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Main/WebPreferences/logo.jpg (limited to 'Main') diff --git a/Main/WebPreferences/logo.jpg b/Main/WebPreferences/logo.jpg new file mode 100644 index 00000000..b8ff2779 Binary files /dev/null and b/Main/WebPreferences/logo.jpg differ -- cgit v1.2.3