Bug in org.apache.jetspeed.util.URIEncoder

2000-10-05 Thread Paul Hammant
"" needs to be added to the list INVALID_CHARACTERS static var. It is used in URLs to separate params on the query string (though I guess everyone knew that). I would have changed it in CVS myself, but ant fails to build at the moment.. - Paul H --

Re: Bug in org.apache.jetspeed.util.URIEncoder

2000-10-05 Thread Santiago Gala
Paul Hammant wrote: "" needs to be added to the list INVALID_CHARACTERS static var. It is used in URLs to separate params on the query string (though I guess everyone knew that). "" is correct both in Windows and Unix filenames. I don't know about MacIntosh, but the list is not for

Re: (no subject)

2000-10-05 Thread Santiago Gala
Alan McAuley wrote: Hello again list... You are all busy, I know Perhaps just a pointer then... Im looking an explanation of the portlet "life cycle", so to speak. Im trying to understand better how all the parts interact in an architectural way. When does "this" get called, when

Re: Bug in org.apache.jetspeed.util.URIEncoder

2000-10-05 Thread AA Z
Santiago, We also experienced problem with URIEncoder. The way the invalid charaters are being translated aparently is not kosha with Linux (I imagine unix of most every flavors), namely replacing these characters with: "#" + (int)source.charAt(0) + ";"; confuses the hell out of file system,