annotate CVSROOT/modules @ 158:e9a81ac446cb

added Texter servlet and relative paths
author robcast
date Tue, 16 Sep 2003 18:26:31 +0200
parents ffd2df307e81
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
ffd2df307e81 initial checkin
root
parents:
diff changeset
1 # Three different line formats are valid:
ffd2df307e81 initial checkin
root
parents:
diff changeset
2 # key -a aliases...
ffd2df307e81 initial checkin
root
parents:
diff changeset
3 # key [options] directory
ffd2df307e81 initial checkin
root
parents:
diff changeset
4 # key [options] directory files...
ffd2df307e81 initial checkin
root
parents:
diff changeset
5 #
ffd2df307e81 initial checkin
root
parents:
diff changeset
6 # Where "options" are composed of:
ffd2df307e81 initial checkin
root
parents:
diff changeset
7 # -i prog Run "prog" on "cvs commit" from top-level of module.
ffd2df307e81 initial checkin
root
parents:
diff changeset
8 # -o prog Run "prog" on "cvs checkout" of module.
ffd2df307e81 initial checkin
root
parents:
diff changeset
9 # -e prog Run "prog" on "cvs export" of module.
ffd2df307e81 initial checkin
root
parents:
diff changeset
10 # -t prog Run "prog" on "cvs rtag" of module.
ffd2df307e81 initial checkin
root
parents:
diff changeset
11 # -u prog Run "prog" on "cvs update" of module.
ffd2df307e81 initial checkin
root
parents:
diff changeset
12 # -d dir Place module in directory "dir" instead of module name.
ffd2df307e81 initial checkin
root
parents:
diff changeset
13 # -l Top-level directory only -- do not recurse.
ffd2df307e81 initial checkin
root
parents:
diff changeset
14 #
ffd2df307e81 initial checkin
root
parents:
diff changeset
15 # NOTE: If you change any of the "Run" options above, you'll have to
ffd2df307e81 initial checkin
root
parents:
diff changeset
16 # release and re-checkout any working directories of these modules.
ffd2df307e81 initial checkin
root
parents:
diff changeset
17 #
ffd2df307e81 initial checkin
root
parents:
diff changeset
18 # And "directory" is a path to a directory relative to $CVSROOT.
ffd2df307e81 initial checkin
root
parents:
diff changeset
19 #
ffd2df307e81 initial checkin
root
parents:
diff changeset
20 # The "-a" option specifies an alias. An alias is interpreted as if
ffd2df307e81 initial checkin
root
parents:
diff changeset
21 # everything on the right of the "-a" had been typed on the command line.
ffd2df307e81 initial checkin
root
parents:
diff changeset
22 #
ffd2df307e81 initial checkin
root
parents:
diff changeset
23 # You can encode a module within a module by using the special '&'
ffd2df307e81 initial checkin
root
parents:
diff changeset
24 # character to interpose another module into the current module. This
ffd2df307e81 initial checkin
root
parents:
diff changeset
25 # can be useful for creating a module that consists of many directories
ffd2df307e81 initial checkin
root
parents:
diff changeset
26 # spread out over the entire source repository.