[wwwsearch-commits] r26884 - wwwsearch/ClientTable/trunk
jjlee at codespeak.net
jjlee at codespeak.net
Sat May 6 20:21:22 CEST 2006
Author: jjlee
Date: Sat May 6 20:21:21 2006
New Revision: 26884
Modified:
wwwsearch/ClientTable/trunk/README.html.in
Log:
Don't emit BASE tag unless required
Modified: wwwsearch/ClientTable/trunk/README.html.in
==============================================================================
--- wwwsearch/ClientTable/trunk/README.html.in (original)
+++ wwwsearch/ClientTable/trunk/README.html.in Sat May 6 20:21:21 2006
@@ -1,10 +1,17 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
+@# This file is processed by EmPy to colorize Python source code
@# http://wwwsearch.sf.net/bits/colorize.py
-@{from colorize import colorize}
-@{import time}
-@{import release}
-@{last_modified = release.svn_id_to_time("$Id$")}
+@{
+from colorize import colorize
+import time
+import release
+last_modified = release.svn_id_to_time("$Id$")
+try:
+ base
+except NameError:
+ base = False
+}
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@@ -13,7 +20,7 @@
<meta name="keywords" content="table,parser,HTML,Python,client,client-side">
<title>ClientTable</title>
<style type="text/css" media="screen">@@import "../styles/style.css";</style>
- <base href="http://wwwsearch.sourceforge.net/ClientTable/">
+ @[if base]<base href="http://wwwsearch.sourceforge.net/ClientTable/">@[end if]
</head>
<body>
More information about the wwwsearch-commits
mailing list