Magellan Linux

Contents of /trunk/viewvc/magellan-template/query_form.ezt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4 - (show annotations) (download)
Tue Oct 30 22:18:26 2012 UTC (11 years, 6 months ago) by niro
File size: 6680 byte(s)
-initial viewvc theme for cvs.magellan-linux.de/svn.magellan-linux.de
1 [# setup page definitions]
2 [define page_title]Query on /[where][end]
3 [define help_href][docroot]/help_rootview.html[end]
4 [# end]
5
6 [include "include/header.ezt" "query"]
7
8 <p><a href="[dir_href]">
9 <img src="[docroot]/images/dir.png" width="16" height="16" alt="Directory" />
10 Browse Directory</a></p>
11
12 <form action="[query_action]" method="get">
13
14 <div class="vc_query_form">
15 [query_hidden_values]
16 <table cellspacing="0" cellpadding="5" class="auto">
17 [is roottype "cvs"]
18 [# For subversion, the branch field is not used ]
19 <tr>
20 <th style="text-align:right;vertical-align:top;">Branch:</th>
21 <td>
22 <input type="text" name="branch" value="[branch]" /><br />
23 <label for="branch_match_exact">
24 <input type="radio" name="branch_match" id="branch_match_exact"
25 value="exact" [is branch_match "exact"]checked="checked"[end] />
26 Exact match
27 </label>
28 <label for="branch_match_glob">
29 <input type="radio" name="branch_match" id="branch_match_glob"
30 value="glob" [is branch_match "glob"]checked="checked"[end] />
31 Glob pattern match
32 </label>
33 <label for="branch_match_regex">
34 <input type="radio" name="branch_match" id="branch_match_regex"
35 value="regex" [is branch_match "regex"]checked="checked"[end] />
36 Regex match
37 </label>
38 <label for="branch_match_notregex">
39 <input type="radio" name="branch_match" id="branch_match_notregex"
40 value="notregex" [is branch_match "notregex"]checked="checked"[end] />
41 Regex doesn't match
42 </label>
43 </td>
44 </tr>
45 [end]
46 <tr>
47 <th style="text-align:right;vertical-align:top;">Subdirectory:</th>
48 <td>
49 <input type="text" name="dir" value="[dir]" /><br />
50 (you can list multiple directories separated by commas)
51 </td>
52 </tr>
53 <tr>
54 <th style="text-align:right;vertical-align:top;">File:</th>
55 <td>
56 <input type="text" name="file" value="[file]" /><br />
57 <label for="file_match_exact">
58 <input type="radio" name="file_match" id="file_match_exact"
59 value="exact" [is file_match "exact"]checked="checked"[end] />
60 Exact match
61 </label>
62 <label for="file_match_glob">
63 <input type="radio" name="file_match" id="file_match_glob"
64 value="glob" [is file_match "glob"]checked="checked"[end] />
65 Glob pattern match
66 </label>
67 <label for="file_match_regex">
68 <input type="radio" name="file_match" id="file_match_regex"
69 value="regex" [is file_match "regex"]checked="checked"[end] />
70 Regex match
71 </label>
72 <label for="file_match_notregex">
73 <input type="radio" name="file_match" id="file_match_notregex"
74 value="notregex" [is file_match "notregex"]checked="checked"[end] />
75 Regex doesn't match
76 </label>
77 </td>
78 </tr>
79 <tr>
80 <th style="text-align:right;vertical-align:top;">Who:</th>
81 <td>
82 <input type="text" name="who" value="[who]" /><br />
83 <label for="who_match_exact">
84 <input type="radio" name="who_match" id="who_match_exact"
85 value="exact" [is who_match "exact"]checked="checked"[end] />
86 Exact match
87 </label>
88 <label for="who_match_glob">
89 <input type="radio" name="who_match" id="who_match_glob"
90 value="glob" [is who_match "glob"]checked="checked"[end] />
91 Glob pattern match
92 </label>
93 <label for="who_match_regex">
94 <input type="radio" name="who_match" id="who_match_regex"
95 value="regex" [is who_match "regex"]checked="checked"[end] />
96 Regex match
97 </label>
98 <label for="who_match_notregex">
99 <input type="radio" name="who_match" id="who_match_notregex"
100 value="notregex" [is who_match "notregex"]checked="checked"[end] />
101 Regex doesn't match
102 </label>
103 </td>
104 </tr>
105 <tr>
106 <th style="text-align:right;vertical-align:top;">Sort By:</th>
107 <td>
108 <select name="querysort">
109 <option value="date" [is querysort "date"]selected="selected"[end]>Date</option>
110 <option value="author" [is querysort "author"]selected="selected"[end]>Author</option>
111 <option value="file" [is querysort "file"]selected="selected"[end]>File</option>
112 </select>
113 </td>
114 </tr>
115 <tr>
116 <th style="text-align:right;vertical-align:top;">Date:</th>
117 <td>
118 <table cellspacing="0" cellpadding="0">
119 <tr>
120 <td><input type="radio" name="date" id="date_hours"
121 value="hours" [is date "hours"]checked="checked"[end] /></td>
122 <td>
123 <label for="date_hours">In the last</label>
124 <input type="text" name="hours" value="[hours]" size="4" />
125 hours
126 </td>
127 </tr>
128 <tr>
129 <td><input type="radio" name="date" id="date_day"
130 value="day" [is date "day"]checked="checked"[end] /></td>
131 <td><label for="date_day">In the last day</label></td>
132 </tr>
133 <tr>
134 <td><input type="radio" name="date" id="date_week"
135 value="week" [is date "week"]checked="checked"[end] /></td>
136 <td><label for="date_week">In the last week</label></td>
137 </tr>
138 <tr>
139 <td><input type="radio" name="date" id="date_month"
140 value="month" [is date "month"]checked="checked"[end] /></td>
141 <td><label for="date_month">In the last month</label></td>
142 </tr>
143 <tr>
144 <td><input type="radio" name="date" id="date_all"
145 value="all" [is date "all"]checked="checked"[end] /></td>
146 <td><label for="date_all">Since the beginning of time</label></td>
147 </tr>
148 <tr>
149 <td><input type="radio" name="date" id="date_explicit"
150 value="explicit" [is date "explicit"]checked="checked"[end] /></td>
151 <td>
152 <label for="date_explicit">Between</label>
153 <input type="text" name="mindate" value="[mindate]" size="20" />
154 and
155 <input type="text" name="maxdate" value="[maxdate]" size="20" />
156 <br />
157 (use the form <strong>yyyy-mm-dd hh:mm:ss</strong>)
158 </td>
159 </tr>
160 </table>
161 </td>
162 </tr>
163 <tr>
164 <th style="text-align:right;vertical-align:top;">Limit:</th>
165 <td>
166 Show at most
167 <input type="text" name="limit_changes" value="[limit_changes]" size="5" />
168 changed files per commit.<br />
169 (use 0 to show all files)
170 </td>
171 </tr>
172 <tr>
173 <td></td>
174 <td><input type="submit" value="Search" /></td>
175 </tr>
176 </table>
177 </div>
178
179 </form>
180
181 [include "include/footer.ezt"]