annotate CVSROOT/loginfo @ 304:c28c0a804442

Added extra notebook page for a container example. Added "correct" callbacks for events on trees and containers. Added status lines to the tree and container pages to display results of the callback events. Changed the tab name to reflect the widgets in the notebook pages.
author mhessling@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 29 Mar 2003 03:26:50 +0000
parents ce3ec30c0d4c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1 # The "loginfo" file controls where "cvs commit" log information
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2 # is sent. The first entry on a line is a regular expression which must match
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3 # the directory that the change is being made to, relative to the
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
4 # $CVSROOT. If a match is found, then the remainder of the line is a filter
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
5 # program that should expect log information on its standard input.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
6 #
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
7 # If the repository name does not match any of the regular expressions in this
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
8 # file, the "DEFAULT" line is used, if it is specified.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
9 #
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
10 # If the name ALL appears as a regular expression it is always used
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
11 # in addition to the first matching regex or DEFAULT.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
12 #
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
13 # You may specify a format string as part of the
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
14 # filter. The string is composed of a `%' followed
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
15 # by a single format character, or followed by a set of format
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
16 # characters surrounded by `{' and `}' as separators. The format
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
17 # characters are:
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
18 #
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
19 # s = file name
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
20 # V = old version number (pre-checkin)
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
21 # v = new version number (post-checkin)
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
22 #
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
23 # For example:
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
24 #DEFAULT (echo ""; id; echo %s; date; cat) >> $CVSROOT/CVSROOT/commitlog
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
25 # or
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
26 #DEFAULT (echo ""; id; echo %{sVv}; date; cat) >> $CVSROOT/CVSROOT/commitlog