Magellan Linux

Contents of /trunk/viewvc/magellan-template/docroot/help_query.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4 - (show annotations) (download) (as text)
Tue Oct 30 22:18:26 2012 UTC (11 years, 7 months ago) by niro
File MIME type: text/html
File size: 3004 byte(s)
-initial viewvc theme for cvs.magellan-linux.de/svn.magellan-linux.de
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 <head>
5 <title>ViewVC Help: Query The Commit Database</title>
6 <link rel="stylesheet" href="help.css" type="text/css" />
7 </head>
8 <body>
9 <table>
10 <col class="menu" />
11 <col />
12 <tr>
13 <td><a href=".."><img
14 src="images/logo.png" alt="ViewVC logotype" /></a>
15 </td>
16 <td><h1>ViewVC Help: Query The Commit Database</h1></td>
17 </tr>
18 <tr><td>
19 <h3>Other&nbsp;Help:</h3>
20 <a href="help_rootview.html">General</a><br />
21 <a href="help_dirview.html">Directory&nbsp;View</a><br />
22 <a href="help_log.html">Classic&nbsp;Log&nbsp;View</a><br />
23 <a href="help_logtable.html">Alternative&nbsp;Log&nbsp;View</a><br />
24 <strong>Query&nbsp;Database</strong>
25
26 <h3>Internet</h3>
27 <a href="http://viewvc.org/index.html">Home</a><br />
28 <a href="http://viewvc.org/upgrading.html">Upgrading</a><br />
29 <a href="http://viewvc.org/contributing.html">Contributing</a><br />
30 <a href="http://viewvc.org/license-1.html">License</a><br />
31 </td><td colspan="2">
32
33 <p>
34 Select your parameters for querying the CVS commit database in the
35 form at the top of the page. You
36 can search for multiple matches by typing a comma-seperated list
37 into the text fields. Regular expressions, and wildcards are also
38 supported. Blank text input fields are treated as wildcards.
39 </p>
40 <p>
41 Any of the text entry fields can take a comma-seperated list of
42 search arguments. For example, to search for all commits from
43 authors <em>jpaint</em> and <em>gstein</em>, just type: <code>jpaint,
44 gstein</code> in the <em>Author</em> input box. If you are searching
45 for items containing spaces or quotes, you will need to quote your
46 request. For example, the same search above with quotes is:
47 <code>"jpaint", "gstein"</code>.
48 </p>
49 <p>
50 Wildcard and regular expression searches are entered in a similar
51 way to the quoted requests. You must quote any wildcard or
52 regular expression request, and a command character preceeds the
53 first quote. The command character <code>l</code>(lowercase L) is for wildcard
54 searches, and the wildcard character is a percent (<code>%</code>). The
55 command character for regular expressions is <code>r</code>, and is
56 passed directly to MySQL, so you'll need to refer to the MySQL
57 manual for the exact regex syntax. It is very similar to Perl. A
58 wildard search for all files with a <em>.py</em> extention is:
59 <code>l"%.py"</code> in the <em>File</em> input box. The same search done
60 with a regular expression is: <code>r".*\.py"</code>.
61 </p>
62 <p>
63 All search types can be mixed, as long as they are seperated by
64 commas.
65 </p>
66 </td></tr></table>
67 </body></html>