Re: [TC6] Minimum coding style

2006-11-28 Thread Darryl Miles
Just in case people didn't know, diff does have a number of options to modify white space behavior, such that you can check in a massive whitespace cleanup patch but still view a clean diff which ignores blank lines, crlf/lf and leading/trailing whitespace, etc... So really its not that bad.

Re: [PROPOSAL] Move all facade classes to a dedicated package

2006-11-15 Thread Darryl Miles
Remy Maucherat wrote: I disagree: if the security manager is there, then there should be no way to get the internal object. Yes. Maybe the framework is broken for not trying to reflect on the available interfaces for the subject instance. Maybe by default it should only fail terminally if

Who maintains jsvc ?

2006-06-27 Thread Darryl Miles
If my research is correct this the commons-daemon package ? I'm looking to find out if a patch to add network support to the 'jsvc' program would be a welcome enhancement. I would like to be able to reboot a JVM remotely in a development environment. This is a building block in some larger

Re: WebappLoader RFC

2006-06-13 Thread Darryl Miles
Glen Marchesani wrote: Loader className=org.apache.catalina.loader.MyWebappLoader extendedClasspath=C:/mycode/myproject/lib/*.jar;C:/mycode/myproject2/lib/*.jar;C:/mycode/myproject2/classes/ / /Context The reason for doing this is when developping a webapp that consists of

Re: WebappLoader RFC

2006-06-13 Thread Darryl Miles
Its unclear now what you are trying to fix. Your first post stated you wanted to cut down on the deploy part (I pointed out the features we currently get that we'd loose with your approach; also that deploy is necessary to flush out the old version of the code in the JVM) and this last post

JSP 2.x *.tag files with %@ attribute problem

2006-06-10 Thread Darryl Miles
[This mail was original sent to the tomcat-users list, but solicited no response, so I now put it to the tomcat-dev list to confirm there isn't something blatantly wrong with my understanding of how *.TAG files work. My original post:

Re: [VOTE] Time for 4.1.32?

2006-06-10 Thread Darryl Miles
Mark Thomas wrote: Having just closed the last open bug for 4.1.x (only enhancement requests left) now seems like a good time for a 4.1.32 release. Maybe this patch for 4.1.x needs review too: http://issues.apache.org/bugzilla/show_bug.cgi?id=38795 As usual, only committer votes are binding

Re: DO NOT REPLY [Bug 39503] - getContextPath() returns a decoded string contrary to the servlet spec

2006-05-08 Thread Darryl Miles
Would it be possible to have an Implementation Erratum section on the TC website to track this sort of thing. Its fine to take such a decision on the basis that The Spec is silly, but it does need to be broadcast for the attention of the userbase. At the very least it will curb future

Re: DO NOT REPLY [Bug 39503] - getContextPath() returns a decoded string contrary to the servlet spec

2006-05-08 Thread Darryl Miles
Yoav Shapira wrote: I don't mind documenting it -- write up the web page you want (in the xdocs format used by the rest of the docs: see http://svn.apache.org/viewcvs.cgi/tomcat/container/tc5.5.x/webapps/docs/ for examples), submit it here or on bugzilla, and we can add it to the docs. Maybe I

Re: Challenges for Java hosting

2006-04-08 Thread Darryl Miles
Interesting discussion. Ideas? Yes, and it's very simple - use fork()! The problem with fork() in the way you propose is Garbage Collection. A JVM can move objects and compact heap space during GC, this presents a problem that moving data unshare's that page. For a native executable