--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/import.py Sat Sep 27 03:17:30 2003 -0400
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+
+import sys
+import traceback
+sys.path.insert(0, "/home/fabien/lib/python")
+sys.path.insert(0, "./lib")
+sys.stderr = sys.stdout
+
+print "Content-type: text/html; charset=iso-8859-1;"
+print
+
+# import cgitb; cgitb.enable()
+import cgi
+from htmltmpl import TemplateManager, TemplateProcessor
+import os
+
+def main():
+ tmpl = TemplateManager().prepare("import.tmpl")
+ tproc = TemplateProcessor()
+ tproc.set("pagetitle", os.environ["REMOTE_USER"]+"'s XBELWeb Import File")
+ print tproc.process(tmpl)
+
+if (__name__ == "__main__"):
+ main()