annotate CVSROOT/modules @ 75:e82dad6cb407

New servlet version 1.5b. Mostly cleanup. Global parameters for digilib now in DigilibConfiguration, per request parameters are now all in DigilibRequest. The DocuImage implementation can be selected by the configuration docuimage-class. Pixel-by-pixel view implemented with "mo=clip".
author robcast
date Fri, 24 Jan 2003 21:55:54 +0100
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.