Changes by: peterbecker Thu Nov 6 00:15:11 PST 2003
Log message:
Capturing groups are used for replacement operations (see
http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html#cg),
they are used as replacements in the target string for "$1", "$2" and so
on.
This means one can do things like mapping "*.xhtml" as source into
"$1.html" as targets (using globbing). In regex parentheses have to be
used to create the groups.
Modified files:
XWeb/net/sourceforge/xweb/backend/: WebsiteProcessor.java
|