/[mws]/trunk/templates/master.html
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/templates/master.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 28 - (show annotations)
Sat May 8 22:18:38 2004 UTC (20 years ago) by dpavlin
File MIME type: text/html
File size: 1848 byte(s)
v0.9-rc2: bugfixes and small improvements
- added quote and signature styles
- better detection of quotes/signagures (and removal)
- back to home link (#) to get you out of search
- on root url (/) messages are sorted descending by date, as they should

1 <html>
2 <head>
3 <title>[% IF title %][% title %] -- [% END %]Mail::Box Web Search</title>
4 <link rel="StyleSheet" type="text/css" href="/style.css">
5 </head>
6
7 [% PROCESS macros.tt2 %]
8
9 <body>
10
11 <table border="0" width="100%">
12 <tr>
13 <td colspan="2">
14
15 <form>
16 <a href="/">#</a>
17 Search
18 <select name="search_fld">
19 [% option("search_fld","message","anywhere") %]
20 [% option("search_fld","subject","message subject") %]
21 [% option("search_fld","body","message text") %]
22 [% option("search_fld","from_phrase","sender name") %]
23 [% option("search_fld","from_address","sender address") %]
24 [% option("search_fld","to_phrase","recipient name") %]
25 [% option("search_fld","to_address","recipient address") %]
26 [% option("search_fld","cc_phrase","also to name") %]
27 [% option("search_fld","bcc_phrase","sneek to name") %]
28 </select>
29 <input type="text" name="search_val" size=20 value="[% param.search_val %]">
30 </select>
31 <input type="submit" name="submit" value="Go!">
32 </form>
33
34 </td>
35 </tr>
36
37 <tr>
38 <td valign="top" width="90%">
39
40 [% IF results %]
41 [% INCLUDE results.html %]
42 [% ELSIF message %]
43 [% INCLUDE message.html %]
44 [% END %]
45
46 </td>
47 <td valign="top">
48
49 [% USE cal = Calendar.Simple(mm,yyyy) %]
50
51 <table border="0">
52 <tr><th class="calendar" colspan="7">
53 <a href="/[% yyyy ; "/" %]/[% url_search %]">[% yyyy %]</a>-<a href="/[% yyyy ; "/" ; mm %]/[% url_search %]">[% mm %]</a>
54 </th></tr>
55 [% FOREACH row = cal.rows %]
56 <tr>
57 [% FOREACH col = row %]
58 <td class="calendar" align="right">[% get_cal(calendar,yyyy,mm,col,url_search) %]</td>
59 [% END %]
60 </tr>
61 [% END %]
62 </table>
63
64 <!--
65 Thread
66 -->
67
68 [% usage_list(counters.from,'from','From') %]
69
70 [% usage_list(counters.to,'to','To') %]
71
72 [% usage_list(counters.cc,'cc','Cc') %]
73
74 <!--
75 Lists
76 Links
77
78 [% USE dumper ; dumper.dump(param.sort_by, param.search) %]
79 -->
80
81 </td>
82
83 </tr>
84
85
86 </table>
87
88 </body>

  ViewVC Help
Powered by ViewVC 1.1.26