Looks like this code was removed in August. Without it the FancyIndexing
is never
done in the following example:
<Directory ~ "^/abc/(a-z){5}">
IndexOptions FancyIndexing
</Directory>
===================================================================
--- core.c.old Fri Mar 1 12:53:09 2002
+++ core.c Fri Mar 1 12:54:18 2002
@@ -1503,6 +1503,7 @@
cmd->path = ap_getword_conf(cmd->pool, &arg);
if (!cmd->path)
return "<Directory ~ > block must specify a path";
+ r = ap_pregcomp(cmd->pool, cmd->path, REG_EXTENDED|USE_ICASE);
}
else if (thiscmd->cmd_data) { /* <DirectoryMatch> */
r = ap_pregcomp(cmd->pool, cmd->path, REG_EXTENDED|USE_ICASE);
Rob Simonson
[EMAIL PROTECTED]