Mercurial > p > roundup > code
annotate roundup/templates/extended/html/msg.item @ 834:568eed5fb4fd
Optimize Class.find so that the propspec can contain a set of ids to match.
This is used by indexer.search so it can do just one find for all the
index matches.
This was already confusing code, but for common terms (lots of index matches),
it is enormously faster.
| author | Gordon B. McMillan <gmcm@users.sourceforge.net> |
|---|---|
| date | Tue, 09 Jul 2002 21:53:38 +0000 |
| parents | 65234f56b250 |
| children |
| rev | line source |
|---|---|
|
733
65234f56b250
changed the default message list in issues to display the message body
Richard Jones <richard@users.sourceforge.net>
parents:
34
diff
changeset
|
1 <!-- $Id: msg.item,v 1.2 2002-05-22 00:32:34 richard Exp $--> |
|
34
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"> |
|
733
65234f56b250
changed the default message list in issues to display the message body
Richard Jones <richard@users.sourceforge.net>
parents:
34
diff
changeset
|
25 <pre><display call="plain('content', escape=1)"></pre> |
|
34
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> |
