annotate CVSROOT/loginfo @ 522:29547598b909

For whatever reason the new WS_EX_MDICHILD method is not working properly, the MDI child windows won't take focus. But the old SetParent() method seems to work properly, so reverting to the old code for now.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 16 Mar 2004 08:23:04 +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