File: help_query.html

package info (click to toggle)
viewcvs 0.9.2%2Bcvs.1.0.dev.2004.07.28-4.1etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,452 kB
  • ctags: 1,355
  • sloc: python: 10,100; cpp: 840; ansic: 763; yacc: 526; sh: 163; makefile: 115
file content (64 lines) | stat: -rw-r--r-- 2,941 bytes parent folder | download | duplicates (5)
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
 "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><head>
  <title>ViewCVS Help: Query The Commit Database</title>
</head>

<body background="images/chalk.jpg">
<table width="100%" border=0 cellspacing=5 cellpadding=0>
  <tr>
    <td width="1%"><a href=".."><img border=0
        src="images/logo.png"></a>
    </td>
    <td><h1>ViewCVS Help: Query The Commit Database</h1></td>
  </tr>
  <tr><td width="1%" valign="top" bgcolor="#ffffff">
     <h3>Other&nbsp;Help:</h3>
     <a href="help_rootview.html">General</a><br>
     <a href="help_dirview.html">Directory&nbsp;View</a><br>
     <a href="help_log.html">Classic&nbsp;Log&nbsp;View</a><br>
     <a href="help_logtable.html">Alternative&nbsp;Log&nbsp;View</a><br>
     <b>Query&nbsp;Database</b>

     <h3>Internet</h3>
     <a href="http://viewcvs.sf.net/index.html">Home</a><br>
     <a href="http://viewcvs.sf.net/upgrading.html">Upgrading</a><br>
     <a href="http://viewcvs.sf.net/contributing.html">Contributing</a><br>
     <a href="http://viewcvs.sf.net/license-1.html">License</a><br>
  </td><td colspan=2>

  <p> 
    Select your parameters for querying the CVS commit database in the
    form at the top of the page.  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 <i>jpaint</i> and <i>gstein</i>, just type: <code>jpaint,
    gstein</code> in the <i>Author</i> 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:
    <code>"jpaint", "gstein"</code>.
  </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 character preceeds the
    first quote.  The command character <code>l</code>(lowercase L) is for wildcard
    searches, and the wildcard character is a percent (<code>%</code>).  The
    command character for regular expressions is <code>r</code>, 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 <i>.py</i> extention is:
    <code>l"%.py"</code> in the <i>File</i> input box.  The same search done
    with a regular expression is: <code>r".*\.py"</code>.
  </p>
  <p>                  
    All search types can be mixed, as long as they are seperated by
    commas.
  </p>                                                    
  </td></tr></table>
</body></html>