Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/coreStandardContext.java

2003-07-14 Thread Tim Funk
Sort of unrelated to the patch but noticed from line: File file = new File(configBase, name.replace('/', '_') + .xml); Would the following 2 names cause a confict if used at the same time? 1) name=more_cowbell; 2) name=more/cowbell; -Tim (waiting for coffee to brew before trying to think)

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/coreStandardContext.java

2003-07-14 Thread Remy Maucherat
Tim Funk wrote: Sort of unrelated to the patch but noticed from line: File file = new File(configBase, name.replace('/', '_') + .xml); Would the following 2 names cause a confict if used at the same time? 1) name=more_cowbell; 2) name=more/cowbell; Well, yes. You can't avoid all conflicts, so

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/coreStandardContext.java

2003-07-14 Thread Tim Funk
OK, just wanted to know if this was an 'oops' or just the way things are. I'll interpret that as the latter. ;) -Tim Remy Maucherat wrote: Tim Funk wrote: Sort of unrelated to the patch but noticed from line: File file = new File(configBase, name.replace('/', '_') + .xml); Would the

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/coreStandardContext.java

2003-07-14 Thread Remy Maucherat
Tim Funk wrote: OK, just wanted to know if this was an 'oops' or just the way things are. I'll interpret that as the latter. ;) If you have ideas on how to improve that, post them :) Remy - To unsubscribe, e-mail: [EMAIL

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/coreStandardContext.java

2003-06-16 Thread Glenn Nielsen
[EMAIL PROTECTED] wrote: remm2003/06/15 06:10:41 Modified:catalina/src/share/org/apache/catalina/core StandardContext.java Log: - Move context descriptors to $CATALINA_BASE/conf/engine name/host name, as proposed by Glenn. - This should make the

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/coreStandardContext.java

2003-06-16 Thread Remy Maucherat
Glenn Nielsen wrote: [EMAIL PROTECTED] wrote: remm2003/06/15 06:10:41 Modified:catalina/src/share/org/apache/catalina/core StandardContext.java Log: - Move context descriptors to $CATALINA_BASE/conf/engine name/host name, as proposed by Glenn. -

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/coreStandardContext.java

2003-05-30 Thread Jean-Francois Arcand
Remy Maucherat wrote: [EMAIL PROTECTED] wrote: jfarcand2003/05/28 21:13:24 Modified:catalina/src/share/org/apache/catalina/core StandardContext.java Log: Revert back my latest changes since it did not fix the problem completely. Don't worry about that

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/coreStandardContext.java

2003-05-30 Thread Remy Maucherat
Jean-Francois Arcand wrote: Bonne nouvelle :-) The problem right now is we ends up with 2 configuration files. If I have under webapps/ a file named test.xml that contains: Context path=/test docBase=../foo/bar/ debug=0 /Context that always work. But if the path is equals to: Context

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/coreStandardContext.java

2003-05-29 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: jfarcand2003/05/28 21:13:24 Modified:catalina/src/share/org/apache/catalina/core StandardContext.java Log: Revert back my latest changes since it did not fix the problem completely. Don't worry about that IMO. I'll have to rewrite

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/coreStandardContext.java

2003-03-12 Thread Remy Maucherat
Costin Manolache wrote: [EMAIL PROTECTED] wrote: remm2003/03/12 13:32:50 Modified:catalina/src/share/org/apache/catalina/core StandardContext.java Log: - If init needs guards against being invoked twice, this also needs it. - Any explanation why, BTW ?