aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-02-25 23:16:33 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-02-25 23:16:33 +0000
commit57c762aebe9561c08fa4b1aea3fd7188161f894d (patch)
tree67adc97f9a21d3548650e044a1c97ebdac54fda1
parent9cdbbebff18603dc9ce6b956577691216639d071 (diff)
downloadfetchmail-57c762aebe9561c08fa4b1aea3fd7188161f894d.tar.gz
fetchmail-57c762aebe9561c08fa4b1aea3fd7188161f894d.tar.bz2
fetchmail-57c762aebe9561c08fa4b1aea3fd7188161f894d.zip
Better table format.
svn path=/trunk/; revision=3152
-rwxr-xr-xtestservers-gen.sh3
-rwxr-xr-xtorturetest.py4
2 files changed, 3 insertions, 4 deletions
diff --git a/testservers-gen.sh b/testservers-gen.sh
index bf1d9052..2c2accbf 100755
--- a/testservers-gen.sh
+++ b/testservers-gen.sh
@@ -25,7 +25,6 @@ Here are the server types on my regression-test list:<p>
<tr>
<td><strong>Protocol & Version:</strong></td>
<td><strong>Special Options:</strong></td>
-<td><strong>Name:</strong></td>
</tr>
EOF
torturetest.py -t
@@ -44,7 +43,7 @@ Microsoft Exchange on here. These are the real robustness tests.
<table width="100%" cellpadding=0><tr>
<td width="30%">Back to <a href="/~esr">Eric's Home Page</a>
<td width="30%" align=center>Up to <a href="/~esr/sitemap.html">Site Map</a>
-<td width="30%" align=right>${dateQ}
+<td width="30%" align=right>${date}
</table>
<P><ADDRESS>Eric S. Raymond <A HREF="mailto:esr@thyrsus.com">&lt;esr@thyrsus.com&gt;</A></ADDRESS>
diff --git a/torturetest.py b/torturetest.py
index e9524409..8f13cbc0 100755
--- a/torturetest.py
+++ b/torturetest.py
@@ -47,8 +47,8 @@ class TestSite:
def tableprint(self):
"Print an HTML server-type table entry."
- return "<tr><td>%s %s</td><td>%s</td><td>%s</td></tr>\n" \
- % (self.proto, self.version, self.capabilities, self.comment)
+ return "<tr><td>%s: %s</td><td>%s</td>\n" \
+ % (self.proto, self.comment, self.capabilities)
def id(self):
"Identify this site."