|
| 1 | +# The "loginfo" file controls where "cvs commit" log information |
| 2 | +# is sent. The first entry on a line is a regular expression which must match |
| 3 | +# the directory that the change is being made to, relative to the |
| 4 | +# $CVSROOT. If a match is found, then the remainder of the line is a filter |
| 5 | +# program that should expect log information on its standard input. |
| 6 | +# |
| 7 | +# If the repository name does not match any of the regular expressions in this |
| 8 | +# file, the "DEFAULT" line is used, if it is specified. |
| 9 | +# |
| 10 | +# If the name ALL appears as a regular expression it is always used |
| 11 | +# in addition to the first matching regex or DEFAULT. |
| 12 | +# |
| 13 | +# You may specify a format string as part of the |
| 14 | +# filter. The string is composed of a `%' followed |
| 15 | +# by a single format character, or followed by a set of format |
| 16 | +# characters surrounded by `{' and `}' as separators. The format |
| 17 | +# characters are: |
| 18 | +# |
| 19 | +# s = file name |
| 20 | +# V = old version number (pre-checkin) |
| 21 | +# v = new version number (post-checkin) |
| 22 | +# |
| 23 | +# For example: |
| 24 | +#DEFAULT (echo ""; id; echo %s; date; cat) >> $CVSROOT/CVSROOT/commitlog |
| 25 | +# or |
| 26 | +#DEFAULT (echo ""; id; echo %{sVv}; date; cat) >> $CVSROOT/CVSROOT/commitlog |
| 27 | +# |
| 28 | +# ---------------------------------------------------------------------------- |
| 29 | +# docstring-specific loginfo configuration |
| 30 | +# ---------------------------------------------------------------------------- |
| 31 | +# |
| 32 | +# We're using syncmail (see documentation_) to send updates on CVS activity |
| 33 | +# to whomever is interested. At the moment, we're assuming that everyone on |
| 34 | +# docstring-develop is interested. |
| 35 | +# |
| 36 | +# .. _documentation: http://sf.net/docman/display_doc.php?docid=772&group_id=1 |
| 37 | +# ---------------------------------------------------------------------------- |
| 38 | +# |
| 39 | +CVSROOT /usr/bin/python $CVSROOT/CVSROOT/syncmail %{sVv} goodger@users.sourceforge.net |
| 40 | +web/ /usr/bin/python $CVSROOT/CVSROOT/syncmail %{sVv} goodger@users.sourceforge.net |
| 41 | +DEFAULT /usr/bin/python $CVSROOT/CVSROOT/syncmail %{sVv} docstring-checkins@lists.sourceforge.net |
0 commit comments