summaryrefslogtreecommitdiff
blob: fa33c004ff804d12be08d931c20c011ce1874705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- ViewVC :: http://www.viewvc.org/ -->
<head>
  <title>Checkin Database Query</title>
  <link rel="stylesheet" href="[docroot]/styles.css" type="text/css" />
</head>

<body>

[# setup page definitions]
  [define help_href][docroot]/help_query.html[end]
[# end]

  <p> 
    Select your parameters for querying the CVS commit database.  You
    can search for multiple matches by typing a comma-seperated list
    into the text fields.  Regular expressions, and wildcards are also
    supported.  Blank text input fields are treated as wildcards.
  </p>
  <p>
    Any of the text entry fields can take a comma-seperated list of
    search arguments.  For example, to search for all commits from
    authors <em>jpaint</em> and <em>gstein</em>, just type: <strong>jpaint,
    gstein</strong> in the <em>Author</em> input box.  If you are searching
    for items containing spaces or quotes, you will need to quote your
    request.  For example, the same search above with quotes is:
    <strong>"jpaint", "gstein"</strong>.
  </p>
  <p>                           

    Wildcard and regular expression searches are entered in a similar
    way to the quoted requests.  You must quote any wildcard or
    regular expression request, and a command charactor preceeds the
    first quote.  The command charactor <strong>l</strong> is for wildcard
    searches, and the wildcard charactor is a percent (<strong>%</strong>).  The
    command charactor for regular expressions is <strong>r</strong>, and is
    passed directly to MySQL, so you'll need to refer to the MySQL
    manual for the exact regex syntax.  It is very similar to Perl.  A
    wildard search for all files with a <em>.py</em> extention is:
    <strong>l"%.py"</strong> in the <em>File</em> input box.  The same search done
    with a regular expression is: <strong>r".*\.py"</strong>.
  </p>
  <p>                  
    All search types can be mixed, as long as they are seperated by
    commas.
  </p>                                                    

<form method="get" action="">

<div class="vc_query_form">
<table cellspacing="0" cellpadding="2" class="auto">
 <tr>
  <td>
   <table>
    <tr>
     <td style="vertical-align:top;">

      <table>
       <tr>
        <td align="right">CVS Repository:</td>
        <td>
         <input type="text" name="repository" size="40" value="[repository]" />
        </td>
       </tr>
       <tr>
        <td align="right">CVS Branch:</td>
        <td>
         <input type="text" name="branch" size="40" value="[branch]" />
        </td>
       </tr>
       <tr>
        <td align="right">Directory:</td>
        <td>
         <input type="text" name="directory" size="40" value="[directory]" />
        </td>
       </tr>
       <tr>
        <td align="right">File:</td>
        <td>
         <input type="text" name="file" size="40" value="[file]" />
        </td>
       </tr>
       <tr>
        <td align="right">Author:</td>
        <td>
         <input type="text" name="who" size="40" value="[who]" />
        </td>
       </tr>
      </table>

     </td>
     <td style="vertical-align:top;">

      <table>
       <tr>
        <td align="left">Sort By:</td>
        <td>
         <select name="sortby">
          <option value="date" [is sortby "date"]selected="selected"[end]>Date</option>
          <option value="author" [is sortby "author"]selected="selected"[end]>Author</option>
          <option value="file" [is sortby "file"]selected="selected"[end]>File</option>
         </select>
        </td>
       </tr>
       <tr>
        <td colspan="2">
         <table cellspacing="0" cellpadding="0">
          <tr>
           <td>Date:</td>
          </tr>
          <tr>
           <td><input type="radio" name="date" value="hours"
		  [is date "hours"]checked="checked"[end] /></td>
           <td>In the last
             <input type="text" name="hours" value="[hours]" size="4" />hours
           </td>
          </tr>
          <tr>
           <td><input type="radio" name="date" value="day"
		  [is date "day"]checked="checked"[end] /></td>
           <td>In the last day</td>
          </tr>
          <tr>
           <td><input type="radio" name="date" value="week"
		  [is date "week"]checked="checked"[end] /></td>
           <td>In the last week</td>
          </tr>
          <tr>
           <td><input type="radio" name="date" value="month"
		  [is date "month"]checked="checked"[end] /></td>
           <td>In the last month</td>
          </tr>
          <tr>
           <td><input type="radio" name="date" value="all"
		  [is date "all"]checked="checked"[end] /></td>
           <td>Since the beginning of time</td>
          </tr>
         </table>
        </td>
       </tr>
      </table>

     </td>
    </tr>
   </table>
  </td>
  <td>
   <input type="submit" value="Search" />
  </td>
 </tr>
</table>
</div>

</form>

[is query "skipped"]
[else]
<p><strong>[num_commits]</strong> matches found.</p>

[if-any commits]
<table cellspacing="0" cellpadding="2">
 <thead>
 <tr class="vc_header">
  <th>Revision</th>
  <th>File</th>
  <th>Branch</th>
  <th>+/-</th>
  <th>Date</th>
  <th>Author</th>
[# uncommment, if you want a separate Description column: (also see below)
<th>Description</th>
]
 </tr>
 </thead>
[for commits]
 <tbody>
  [for commits.files]
    <tr class="vc_row_[if-index commits even]even[else]odd[end]">
      <td style="vertical-align:top;">
	[if-any commits.files.rev][commits.files.rev][else]&nbsp;[end]
      </td>
      <td style="vertical-align:top;">[commits.files.link]</td>
      <td style="vertical-align:top;">
	[if-any commits.files.branch][commits.files.branch][else]&nbsp;[end]
      </td>
      <td style="vertical-align:top;">
        [is commits.files.type "Add"]<ins>[end]
        [is commits.files.type "Change"]<a href="[commits.files.difflink]">[end]
        [is commits.files.type "Remove"]<del>[end]
          [commits.files.plus]/[commits.files.minus]
        [is commits.files.type "Add"]</ins>[end]
        [is commits.files.type "Change"]</a>[end]
        [is commits.files.type "Remove"]</del>[end]
      </td>
      <td style="vertical-align:top;">
	[if-any commits.files.date][commits.files.date][else]&nbsp;[end]
      </td>
      <td style="vertical-align:top;">
	[if-any commits.files.author][commits.files.author][else]&nbsp;[end]
      </td>

[# uncommment, if you want a separate Description column:
      {if-index commits.files first{
        <td style="vertical-align:top;" rowspan="{commits.num_files}">
          {commits.log}
        </td>
      {end}

   (substitute brackets for the braces)
]
    </tr>
[# and also take the following out in the "Description column"-case:]
      [if-index commits.files last]
	<tr class="vc_row_[if-index commits even]even[else]odd[end]">
	  <td>&nbsp;</td>
	  <td colspan="5"><strong>Log:</strong><br />
	    <pre class="vc_log">[commits.log]</pre></td>
	</tr>
      [end]
[# ---]
  [end]
 </tbody>
[end]

 <tr class="vc_header">
  <th style="text-align:left;vertical-align:top;">&nbsp;</th>
  <th style="text-align:left;vertical-align:top;">&nbsp;</th>
  <th style="text-align:left;vertical-align:top;">&nbsp;</th>
  <th style="text-align:left;vertical-align:top;">&nbsp;</th>
  <th style="text-align:left;vertical-align:top;">&nbsp;</th>
  <th style="text-align:left;vertical-align:top;">&nbsp;</th>
[# uncommment, if you want a separate Description column:
  <th style="text-align:left;vertical-align:top;">&nbsp;</th>
]
 </tr>
</table>
[end]
[end]
[include "include/footer.ezt"]