Re: Regexp patterns

2005-09-27 Thread Jon McLennan
Actually, you should only need to put parentheses around the entire pattern: match="(pattern1|pattern2|pattern3|pattern4)" replace="" Jon Andrew Goktepe wrote: Try this: match="pattern1|pattern2|pattern3|pattern4" replace="" If that doesn't work try putting parentheses around each pattern

Re: Configuration of .htaccess file

2005-09-26 Thread Jon McLennan
I'm sure you'll find the list you need here: http://httpd.apache.org/lists.html Frank Arensmeier wrote: ... and the address would be...? Honestly, I feel lost. I can't find a general apache mailing list. Is httpd.apache.org a good idea? Monday morning, what else can i say? /frank 2005-09-26

NoClassDefFoundError when loading class from -lib

2005-09-22 Thread Jon McLennan
I've taken the source for org.apache.tools.ant.Launcher and modified it to call my own version of Main.java. Essentially, the only change I made with that class is to allow the user to specify which startup class is to be run. (The default is the standard org.apache.tools.ant.Main.) My version