Mercurial > p > roundup > code
view roundup/templates/classic/html/msg.item @ 818:254b8d112eec
cleaned up the indexer code:
- it splits more words out (much simpler, faster splitter)
- removed code we'll never use (roundup.roundup_indexer has the full
implementation, and replaces roundup.indexer)
- only index text/plain and rfc822/message (ideas for other text formats to
index are welcome)
- added simple unit test for indexer. Needs more tests for regression.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 08 Jul 2002 06:58:15 +0000 |
| parents | 65234f56b250 |
| children | 5643abab70ed |
line wrap: on
line source
<!-- $Id: msg.item,v 1.3 2002-05-22 00:32:34 richard Exp $--> <table border=0 cellspacing=0 cellpadding=2> <tr bgcolor="ffffea"> <td width=1% nowrap align=right><span class="form-label">Author</span></td> <td class="form-text"><display call="plain('author')"></td> </tr> <tr bgcolor="ffffea"> <td width=1% nowrap align=right><span class="form-label">Recipients</span></td> <td class="form-text"><display call="plain('recipients')"></td> </tr> <tr bgcolor="ffffea"> <td width=1% nowrap align=right><span class="form-label">Date</span></td> <td class="form-text"><display call="plain('date')"></td> </tr> <tr bgcolor="ffeaff"> <td colspan=2 class="form-text"> <pre><display call="plain('content', escape=1)"></pre> </td> </tr> <property name="files"> <tr class="strong-header"><td colspan=2><b>Files</b></td></tr> <tr><td colspan=2><display call="list('files')"></td></tr> </property> <tr class="history-header"><td colspan=2><b>History</b></td><tr> <tr><td colspan=2><display call="history()"></td></tr> </table>
