diff options
-rwxr-xr-x | testservers-gen.sh | 3 | ||||
-rwxr-xr-x | torturetest.py | 4 |
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"><esr@thyrsus.com></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." |