Re: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-10-02 Thread Filip Hanik - Dev Lists
sounds like a plan Filip On 10/01/2009 06:37 PM, Konstantin Kolinko wrote: I am in favor of using file.toURI().toString(), as proposed by Rainer. To construct an URL by simply prepending "file:" + several slashes to the path is simply wrong. Spaces are not allowed in an URL (see chapter 2.4.3

Re: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-10-01 Thread Konstantin Kolinko
I am in favor of using file.toURI().toString(), as proposed by Rainer. To construct an URL by simply prepending "file:" + several slashes to the path is simply wrong. Spaces are not allowed in an URL (see chapter 2.4.3 of RFC2396) and must be encoded as %20, as well as % symbols in the file name

RE: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-04 Thread Larry Isaacs
- Dev Lists [mailto:devli...@hanik.com] > Sent: Friday, September 04, 2009 11:27 AM > To: Tomcat Developers List > Subject: Re: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt > > the URL for Unix would be file:///somedir/somefile > > Windows is always a pain in the butt, but

Re: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-04 Thread Filip Hanik - Dev Lists
as a host name. I think you need to ensure there is one slash or three to avoid inadvertently specifying a host name. Larry -Original Message- From: Filip Hanik - Dev Lists [mailto:devli...@hanik.com] Sent: Thursday, September 03, 2009 5:52 PM To: Tomcat Developers List Subject: Re: s

RE: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-04 Thread Larry Isaacs
sts [mailto:devli...@hanik.com] > Sent: Thursday, September 03, 2009 5:52 PM > To: Tomcat Developers List > Subject: Re: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt > > The URL has to start with "file://" > > So the VirtualWebappLoader, can take a regular file p

Re: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-03 Thread Filip Hanik - Dev Lists
The URL has to start with "file://" So the VirtualWebappLoader, can take a regular file path, and should simply prepend file://, not file: or file:/ Filip On 09/01/2009 12:48 PM, Larry Isaacs wrote: Hi Filip, I have a vague recollection about tripping over this issue while working on the To

Re: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-03 Thread Filip Hanik - Dev Lists
On 09/01/2009 03:33 PM, sebb wrote: On 01/09/2009, Larry Isaacs wrote: Hi Filip, I have a vague recollection about tripping over this issue while working on the Tomcat support in the Eclipse Web Tools Platform. WTP has its own version(s) of VirtualWebappLoader, called WtpWebappLoader,

RE: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-03 Thread Larry Isaacs
> -Original Message- > From: Larry Isaacs > Sent: Wednesday, September 02, 2009 9:41 AM > To: 'Tomcat Developers List' > Subject: RE: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt > > > > > -Original Message- > > From: Rainer

RE: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-02 Thread Larry Isaacs
> -Original Message- > From: Rainer Jung [mailto:rainer.j...@kippdata.de] > Sent: Tuesday, September 01, 2009 3:34 PM > To: Tomcat Developers List > Subject: Re: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt > > On 01.09.2009 20:48, Larry Isaacs wrote: &g

Re: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-01 Thread sebb
On 01/09/2009, Larry Isaacs wrote: > Hi Filip, > > I have a vague recollection about tripping over this issue while working on > the Tomcat support in the Eclipse Web Tools Platform. WTP has its own > version(s) of VirtualWebappLoader, called WtpWebappLoader, to address it. If > I'm recallin

Re: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-01 Thread Rainer Jung
On 01.09.2009 20:48, Larry Isaacs wrote: > Hi Filip, > > I have a vague recollection about tripping over this issue while working on > the Tomcat support in the Eclipse Web Tools Platform. WTP has its own > version(s) of VirtualWebappLoader, called WtpWebappLoader, to address it. If > I'm rec

RE: svn commit: r810132 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-01 Thread Larry Isaacs
Hi Filip, I have a vague recollection about tripping over this issue while working on the Tomcat support in the Eclipse Web Tools Platform. WTP has its own version(s) of VirtualWebappLoader, called WtpWebappLoader, to address it. If I'm recalling the issue correctly, pre-pending "file:/" work