annotate roundup/templates/extended/html/msg.item @ 718:e10c37f53efd

fixed SCRIPT_NAME in ZRoundup for instances not at top level of Zope (thanks dman) fixed some sorting issues that were breaking some unit tests under py2.2 mailgw test output dir was confusing the init test (but only on 2.2 *shrug*) fixed bug in the init unit test that meant only the bsddb test ran if it could (it clobbered the anydbm test)
author Richard Jones <richard@users.sourceforge.net>
date Wed, 15 May 2002 03:27:16 +0000
parents 6c9d6e7b120b
children 65234f56b250
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
34
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
1 <!-- $Id: msg.item,v 1.1 2001-07-23 04:21:20 richard Exp $-->
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
2 <table border=0 cellspacing=0 cellpadding=2>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
3
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
4 <tr class="strong-header">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
5 <td colspan=2>Message Information</td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
6 </td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
7
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
8 <tr bgcolor="ffffea">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
9 <td width=1% nowrap align=right><span class="form-label">Author</span></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
10 <td class="form-text"><display call="plain('author')"></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
11 </tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
12
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
13 <tr bgcolor="ffffea">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
14 <td width=1% nowrap align=right><span class="form-label">Recipients</span></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
15 <td class="form-text"><display call="plain('recipients')"></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
16 </tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
17
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
18 <tr bgcolor="ffffea">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
19 <td width=1% nowrap align=right><span class="form-label">Date</span></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
20 <td class="form-text"><display call="plain('date')"></td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
21 </tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
22
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
23 <tr bgcolor="ffeaff">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
24 <td colspan=2 class="form-text">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
25 <pre><display call="plain('content')"></pre>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
26 </td>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
27 </tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
28
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
29 <property name="files">
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
30 <tr class="strong-header"><td colspan=2><b>Files</b></td></tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
31 <tr><td colspan=2><display call="list('files')"></td></tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
32 </property>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
33
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
34 <tr class="strong-header"><td colspan=2><b>History</b></td><tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
35 <tr><td colspan=2><display call="history()"></td></tr>
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
36
6c9d6e7b120b moving HTML templates to their own dir
Richard Jones <richard@users.sourceforge.net>
parents:
diff changeset
37 </table>

Roundup Issue Tracker: http://roundup-tracker.org/