DO NOT REPLY [Bug 36470] New: - Connections not release on encountering exception.

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36470.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36470

   Summary: Connections not release on encountering exception.
   Product: Tomcat 5
   Version: 5.0.28
  Platform: Other
OS/Version: other
Status: NEW
  Severity: normal
  Priority: P2
 Component: Connector:AJP
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


When a valve throws an unhandled exception during run time, it seems like the 
connector does not release the socket immediately. If a number of these 
instances occur, we get into a state where, unless the socket timeout is not 
reached, it is not possible to get another connection to the web server.

The server starts returning HTTP 503 in this case.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36385] - [mod_jk1.2.14] Prepost pings are not sent before the first request

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36385.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36385


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 10:43 ---
cping/cpong are handled in ajp_connect_to_endpoint

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Cant commit tomcat-dev translation ;(

2005-09-02 Thread Henri Gomez
I got error while commiting an update in :

/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/LocalStrings_fr.properties

Thanks to commit it :)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

DO NOT REPLY [Bug 36385] - [mod_jk1.2.14] Prepost pings are not sent before the first request

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36385.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36385


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|INVALID |




--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 11:33 ---
(In reply to comment #1)
 cping/cpong are handled in ajp_connect_to_endpoint

  ajp_connect_to_endpoint sends a ping to validate the connection if
connect_timeout has been set.
  However, if you haven't set connect_timeout and you've set prepost_timeout
(asking for a ping to be sent before every request), no ping will be sent before
the first request.

  Here's an alternative patch (against mod_jk 1.2.14) that I hope better
illustrates what I'm trying to say:

 START OF PATCH 
--- jk_ajp_common.c 2005-09-02 10:22:18.446771900 +0100
+++ jk_ajp_common.c_modified2005-09-02 10:25:36.164484700 +0100
@@ -881,6 +881,11 @@
 ae-worker-connect_timeout, l);
 JK_TRACE_EXIT(l);
 return rc;
+} else if (ae-worker-prepost_timeout  0) {
+rc = ajp_handle_cping_cpong (ae,
+ae-worker-prepost_timeout, l);
+JK_TRACE_EXIT(l);
+return rc;
 }
 JK_TRACE_EXIT(l);
 return JK_TRUE;
 END OF PATCH 

  I understand that I can get the same behaviour by setting connect_timeout to
the same value as prepost_timeout, but setting prepost_timeout should be enough
to have a ping sent before every request.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36385] - [mod_jk1.2.14] Prepost pings are not sent before the first request

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36385.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36385





--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 11:46 ---
Well I prefer :

 /* no need to handle cping/cpong here since it should be at connection
time */

-if (ajp_connect_to_endpoint(ae, l) == JK_TRUE) {
+if ((ajp_connect_to_endpoint(ae, l) == JK_TRUE) 
+((ae-worker-connect_timeout  0) 
+((ae-worker-prepost_timeout  0)) ||
+(ajp_handle_cping_cpong(ae, ae-worker-prepost_timeout, l)
+== JK_TRUE))) {
 /*
  * After we are connected, each error that we are going to
  * have is probably unrecoverable


Don't send a ping before request if a ping as been send during connect !

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36385] - [mod_jk1.2.14] Prepost pings are not sent before the first request

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36385.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36385





--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 12:05 ---
Index: jk_ajp_common.c
===
RCS file: 
/home/cvs//jakarta-tomcat-connectors/jk/native/common/jk_ajp_common.c,v
retrieving revision 1.119
diff -u -r1.119 jk_ajp_common.c
--- jk_ajp_common.c 26 May 2005 14:36:14 -  1.119
+++ jk_ajp_common.c 2 Sep 2005 10:04:17 -
@@ -1227,9 +1227,20 @@
 JK_TRACE_EXIT(l);
 return JK_FALSE;
 }
-/* no need to handle cping/cpong here since it should be at connection
time */
+
+if ((ajp_connect_to_endpoint(ae, l) == JK_TRUE)) {
 
-if (ajp_connect_to_endpoint(ae, l) == JK_TRUE) {
+   /* no need to handle cping/cpong if allready sent at connection 
time */
+
+   if ((ae-worker-connect_timeout = 0) 
(ae-worker-prepost_timeout  0)) {
+ if (ajp_handle_cping_cpong(ae, ae-worker-prepost_timeout, l) !=
JK_TRUE) {
+jk_log(l, JK_LOG_INFO,
+   Error sending ping pong on a fresh connection);
+JK_TRACE_EXIT(l);
+return JK_FALSE;
+ }
+   }
+   
 /*
  * After we are connected, each error that we are going to
  * have is probably unrecoverable

Here is my latest prefered patch.

BTW, I couldn't commit it (damnt eclipse)

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36385] - [mod_jk1.2.14] Prepost pings are not sent before the first request

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36385.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36385


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||WONTFIX




--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 12:40 ---
Sending cping/cpong makes no sense if connect was successful,
and it was deliberately removed from recent versions.
ajp_connect_to_enpoint uses timeout (socket_timeout), and
if it succeeds there is no need to try sending cping/cpong.
Tomcat will either hang or simply refuse the connection if
the max thread limit gets reached, so the first phase in that
case will fail.
IMO there is no point of sending cping/cpong if new connection
is established. It makes sense only with already connected sockets where
it is used to deal with broken sockets.




-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36385] - [mod_jk1.2.14] Prepost pings are not sent before the first request

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36385.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36385





--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 13:08 ---
Comments inline.

(In reply to comment #5)
 Sending cping/cpong makes no sense if connect was successful,
 and it was deliberately removed from recent versions.
 ajp_connect_to_enpoint uses timeout (socket_timeout), and
 if it succeeds there is no need to try sending cping/cpong.
 Tomcat will either hang or simply refuse the connection if
 the max thread limit gets reached, so the first phase in that
 case will fail.

  I've found this behaviour (which I consider a bug) when Enhydra/Tomcat had a
problem that allowed me to establish connections to the AJP port but wouldn't
respond to any requests (including the first one on a fresh connection).

 IMO there is no point of sending cping/cpong if new connection
 is established. It makes sense only with already connected sockets where
 it is used to deal with broken sockets.

  But that's the sole reason for the existence of the connect_timeout property:
for sending a cping/cpong after a new connection is established. What I think
that is a bug is the fact that if I use only prepost_timeout and not
connect_timeout, there is no cping/cpong before the first request (at least, if
this is the intended behavior, a remark should be make in the documentation).


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36463] - Isapi Redirector is not forwarding PUT Requests with IIS 5

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36463.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36463


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE




--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 13:18 ---


*** This bug has been marked as a duplicate of 36365 ***

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36365] - IIS5.1-isapi_redirector.dll (1.2.14) plugin issue

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36365.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36365


[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 13:18 ---
*** Bug 36463 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36385] - [mod_jk1.2.14] Prepost pings are not sent before the first request

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36385.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36385





--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 13:54 ---
(In reply to comment #5)
 Sending cping/cpong makes no sense if connect was successful,
 and it was deliberately removed from recent versions.

 ajp_connect_to_enpoint uses timeout (socket_timeout), and
 if it succeeds there is no need to try sending cping/cpong.
 Tomcat will either hang or simply refuse the connection if
 the max thread limit gets reached, so the first phase in that
 case will fail.

I didn't agree. Even if you connect to the remote Tomcat, this one could be
hang and that was the ping/pong goal, detect a zombie or hanged tomcat.

I got case where the tomcat was able to do the accept but was in serious trouble
at a later time, and didn't process the request.

 IMO there is no point of sending cping/cpong if new connection
 is established. It makes sense only with already connected sockets where
 it is used to deal with broken sockets.



-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36385] - [mod_jk1.2.14] Prepost pings are not sent before the first request

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36385.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36385





--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 14:36 ---
(In reply to comment #7)
 I didn't agree. Even if you connect to the remote Tomcat, this one could be
 hang and that was the ping/pong goal, detect a zombie or hanged tomcat.
 
 I got case where the tomcat was able to do the accept but was in serious 
 trouble
 at a later time, and didn't process the request.

Ok, but I don't see a way to guarantee that a Tomcat will process a request.
Answering a pong right after an accept does not add much.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36385] - [mod_jk1.2.14] Prepost pings are not sent before the first request

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36385.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36385





--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 14:43 ---
at least you could be sure some sort of code in the request handler is still
alive and running.

Not a 100% guarantee of course :(

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36385] - [mod_jk1.2.14] Prepost pings are not sent before the first request

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36385.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36385





--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 16:53 ---
(In reply to comment #9)
 at least you could be sure some sort of code in the request handler is still
 alive and running.

Yes, it means the acceptor thread has managed to allocate a processor thread. If
it can't it's supposed to close the socket, though, which should indicate the
Tomcat instance is down.

If it does allocate the processor and starts doing things, I don't see how it
can fail to send a pong back. What is the Tomcat state where there would be a
problem ?

(BTW, I think I've fixed the biggest AJP APR bugs, so you can test it: if your
servers have resource efficiency issues, then it can't hurt)

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36481] New: - JSTL tag plugins for Jasper, correct the misusage of the generateImport method

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36481.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36481

   Summary: JSTL tag plugins for Jasper, correct the misusage of the
generateImport method
   Product: Tomcat 5
   Version: 5.5.10
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: enhancement
  Priority: P2
 Component: Jasper
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


According to Remy's advice, generateImport method will probably cause a name 
clash, so I delete all the generateImport invocation and replace them with the 
full uri.
The modified code is in the attachment.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36481] - JSTL tag plugins for Jasper, correct the misusage of the generateImport method

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36481.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36481





--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 19:04 ---
Created an attachment (id=16292)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=16292action=view)
the code archive


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36481] - JSTL tag plugins for Jasper, correct the misusage of the generateImport method

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36481.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36481





--- Additional Comments From [EMAIL PROTECTED]  2005-09-02 19:05 ---
Created an attachment (id=16293)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=16293action=view)
the patch


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Cant commit tomcat-dev translation ;(

2005-09-02 Thread Mark Thomas

Henri,

How are you connecting to CVS? There was an OS upgrade to 
people.apache.org aka minotaur.apache.org a little while ago that made 
ssh stricter in what it would and would not accept.


The solution seemed to be use ssh2 rather than ssh1 and use 
keyboard-interactive authentication rather than password.


Of course if you are not going anywhere near minotaur this won't help 
a bit ;)


Mark

Henri Gomez wrote:

I got error while commiting an update in :

/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/LocalStrings_fr.properties

Thanks to commit it :)





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267240 - in /tomcat/servletapi: servlet2.4-jsp2.0-tc5.x/ servletapi-5/trunk/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:14:02 2005
New Revision: 267240

URL: http://svn.apache.org/viewcvs?rev=267240view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/servlet2.4-jsp2.0-tc5.x/
  - copied from r267239, tomcat/servletapi/servletapi-5/trunk/
Removed:
tomcat/servletapi/servletapi-5/trunk/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267244 - /tomcat/servletapi/branches/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:22:36 2005
New Revision: 267244

URL: http://svn.apache.org/viewcvs?rev=267244view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/branches/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267245 - /tomcat/servletapi/branches/other/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:22:42 2005
New Revision: 267245

URL: http://svn.apache.org/viewcvs?rev=267245view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/branches/other/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267246 - in /tomcat/servletapi: branches/other/servlet2.4-jsp2.0-tc5.x/ servletapi-5/branches/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:22:50 2005
New Revision: 267246

URL: http://svn.apache.org/viewcvs?rev=267246view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/branches/other/servlet2.4-jsp2.0-tc5.x/
  - copied from r267245, tomcat/servletapi/servletapi-5/branches/
Removed:
tomcat/servletapi/servletapi-5/branches/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267249 - /tomcat/servletapi/tags/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:23:37 2005
New Revision: 267249

URL: http://svn.apache.org/viewcvs?rev=267249view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267250 - /tomcat/servletapi/tags/other/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:23:43 2005
New Revision: 267250

URL: http://svn.apache.org/viewcvs?rev=267250view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267251 - in /tomcat/servletapi: servletapi-5/tags/ tags/servlet2.4-jsp2.0-tc5.x/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:25:07 2005
New Revision: 267251

URL: http://svn.apache.org/viewcvs?rev=267251view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/
  - copied from r267250, tomcat/servletapi/servletapi-5/tags/
Removed:
tomcat/servletapi/servletapi-5/tags/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267252 - /tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:25:43 2005
New Revision: 267252

URL: http://svn.apache.org/viewcvs?rev=267252view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267254 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/J2EE_14_02/ servlet2.4-jsp2.0-tc5.x/J2EE_14_02/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:44:00 2005
New Revision: 267254

URL: http://svn.apache.org/viewcvs?rev=267254view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/J2EE_14_02/
  - copied from r267253, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_02/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_02/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267255 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/J2EE_14_03/ servlet2.4-jsp2.0-tc5.x/J2EE_14_03/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:44:08 2005
New Revision: 267255

URL: http://svn.apache.org/viewcvs?rev=267255view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/J2EE_14_03/
  - copied from r267254, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_03/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_03/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267256 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/J2EE_14_04/ servlet2.4-jsp2.0-tc5.x/J2EE_14_04/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:44:16 2005
New Revision: 267256

URL: http://svn.apache.org/viewcvs?rev=267256view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/J2EE_14_04/
  - copied from r267255, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_04/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_04/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267257 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/J2EE_14_05/ servlet2.4-jsp2.0-tc5.x/J2EE_14_05/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:44:24 2005
New Revision: 267257

URL: http://svn.apache.org/viewcvs?rev=267257view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/J2EE_14_05/
  - copied from r267256, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_05/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_05/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267258 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/J2EE_14_06/ servlet2.4-jsp2.0-tc5.x/J2EE_14_06/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:44:31 2005
New Revision: 267258

URL: http://svn.apache.org/viewcvs?rev=267258view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/J2EE_14_06/
  - copied from r267257, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_06/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_06/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267259 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/J2EE_14_07/ servlet2.4-jsp2.0-tc5.x/J2EE_14_07/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:44:39 2005
New Revision: 267259

URL: http://svn.apache.org/viewcvs?rev=267259view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/J2EE_14_07/
  - copied from r267258, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_07/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/J2EE_14_07/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267260 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/arelease/ servlet2.4-jsp2.0-tc5.x/arelease/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:44:47 2005
New Revision: 267260

URL: http://svn.apache.org/viewcvs?rev=267260view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/arelease/
  - copied from r267259, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/arelease/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/arelease/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267262 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/jwsdp_12__01/ servlet2.4-jsp2.0-tc5.x/jwsdp_12__01/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:45:03 2005
New Revision: 267262

URL: http://svn.apache.org/viewcvs?rev=267262view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/jwsdp_12__01/
  - copied from r267261, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/jwsdp_12__01/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/jwsdp_12__01/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267263 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/jwsdp_12__02/ servlet2.4-jsp2.0-tc5.x/jwsdp_12__02/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:45:11 2005
New Revision: 267263

URL: http://svn.apache.org/viewcvs?rev=267263view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/jwsdp_12__02/
  - copied from r267262, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/jwsdp_12__02/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/jwsdp_12__02/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267264 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/jwsdp_13_01/ servlet2.4-jsp2.0-tc5.x/jwsdp_13_01/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:45:18 2005
New Revision: 267264

URL: http://svn.apache.org/viewcvs?rev=267264view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/jwsdp_13_01/
  - copied from r267263, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/jwsdp_13_01/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/jwsdp_13_01/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267265 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/r1/ servlet2.4-jsp2.0-tc5.x/r1/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:45:26 2005
New Revision: 267265

URL: http://svn.apache.org/viewcvs?rev=267265view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/r1/
  - copied from r267264, tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/r1/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/r1/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267266 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/s1ap8_i1/ servlet2.4-jsp2.0-tc5.x/s1ap8_i1/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:45:34 2005
New Revision: 267266

URL: http://svn.apache.org/viewcvs?rev=267266view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/s1ap8_i1/
  - copied from r267265, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/s1ap8_i1/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/s1ap8_i1/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267267 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/s1ap8_i2/ servlet2.4-jsp2.0-tc5.x/s1ap8_i2/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:45:42 2005
New Revision: 267267

URL: http://svn.apache.org/viewcvs?rev=267267view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/s1ap8_i2/
  - copied from r267266, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/s1ap8_i2/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/s1ap8_i2/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267268 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/s1ap8_i3/ servlet2.4-jsp2.0-tc5.x/s1ap8_i3/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:45:50 2005
New Revision: 267268

URL: http://svn.apache.org/viewcvs?rev=267268view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/s1ap8_i3/
  - copied from r267267, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/s1ap8_i3/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/s1ap8_i3/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267269 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/s1ap8_i4/ servlet2.4-jsp2.0-tc5.x/s1ap8_i4/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:45:58 2005
New Revision: 267269

URL: http://svn.apache.org/viewcvs?rev=267269view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/s1ap8_i4/
  - copied from r267268, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/s1ap8_i4/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/s1ap8_i4/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267270 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/s1ap8_i6/ servlet2.4-jsp2.0-tc5.x/s1ap8_i6/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:46:06 2005
New Revision: 267270

URL: http://svn.apache.org/viewcvs?rev=267270view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/s1ap8_i6/
  - copied from r267269, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/s1ap8_i6/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/s1ap8_i6/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267271 - in /tomcat/servletapi/tags: other/servlet2.4-jsp2.0-tc5.x/start/ servlet2.4-jsp2.0-tc5.x/start/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:46:13 2005
New Revision: 267271

URL: http://svn.apache.org/viewcvs?rev=267271view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.4-jsp2.0-tc5.x/start/
  - copied from r267270, 
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/start/
Removed:
tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/start/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267272 - /tomcat/servletapi/servletapi-5/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 11:50:33 2005
New Revision: 267272

URL: http://svn.apache.org/viewcvs?rev=267272view=rev
Log:
Restructure repo after migration

Removed:
tomcat/servletapi/servletapi-5/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Thomas Bokrant/MPTZ/TR/MMD/DE ist außer Haus.

2005-09-02 Thread Thomas Bokrant

Ich werde ab  19.08.2005 nicht im Büro sein. Ich kehre zurück am
05.09.2005.

Ich werde Ihre Nachricht nach meiner Rückkehr beantworten. In dringenden
Fällen wenden Sie sich bitte an Herrn Pikos, Tel. 06147-207-715 oder eMail:
[EMAIL PROTECTED]

I'm not in the office. I'll be back on 05.09.2005. In case of an urgent
matter please contact Mr. Pikos by phone: 06147-207-715 or by email:
[EMAIL PROTECTED]

svn commit: r267287 - in /tomcat/servletapi: branches/servlet2.3-jsp1.2-tc4.x/ servletapi-4/trunk/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:29:35 2005
New Revision: 267287

URL: http://svn.apache.org/viewcvs?rev=267287view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/branches/servlet2.3-jsp1.2-tc4.x/
  - copied from r267286, tomcat/servletapi/servletapi-4/trunk/
Removed:
tomcat/servletapi/servletapi-4/trunk/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267288 - in /tomcat/servletapi: branches/other/servlet2.3-jsp1.2-tc4.x/ servletapi-4/branches/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:29:42 2005
New Revision: 267288

URL: http://svn.apache.org/viewcvs?rev=267288view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/branches/other/servlet2.3-jsp1.2-tc4.x/
  - copied from r267287, tomcat/servletapi/servletapi-4/branches/
Removed:
tomcat/servletapi/servletapi-4/branches/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267289 - in /tomcat/servletapi: servletapi-4/tags/ tags/other/servlet2.3-jsp1.2-tc4.x/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:29:50 2005
New Revision: 267289

URL: http://svn.apache.org/viewcvs?rev=267289view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/
  - copied from r267288, tomcat/servletapi/servletapi-4/tags/
Removed:
tomcat/servletapi/servletapi-4/tags/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267290 - /tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:29:56 2005
New Revision: 267290

URL: http://svn.apache.org/viewcvs?rev=267290view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267291 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_25/ servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_25/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:30:01 2005
New Revision: 267291

URL: http://svn.apache.org/viewcvs?rev=267291view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_25/
  - copied from r267290, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_25/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_25/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267292 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_26/ servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_26/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:30:09 2005
New Revision: 267292

URL: http://svn.apache.org/viewcvs?rev=267292view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_26/
  - copied from r267291, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_26/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_26/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267293 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_27/ servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_27/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:30:17 2005
New Revision: 267293

URL: http://svn.apache.org/viewcvs?rev=267293view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_27/
  - copied from r267292, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_27/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_27/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267294 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_31/ servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_31/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:30:24 2005
New Revision: 267294

URL: http://svn.apache.org/viewcvs?rev=267294view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_31/
  - copied from r267293, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_31/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/TOMCAT_4_1_31/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267295 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/tomcat_402_final/ servlet2.3-jsp1.2-tc4.x/tomcat_402_final/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:30:32 2005
New Revision: 267295

URL: http://svn.apache.org/viewcvs?rev=267295view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/tomcat_402_final/
  - copied from r267294, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_402_final/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_402_final/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267296 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b2/ servlet2.3-jsp1.2-tc4.x/tomcat_40_b2/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:30:40 2005
New Revision: 267296

URL: http://svn.apache.org/viewcvs?rev=267296view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/tomcat_40_b2/
  - copied from r267295, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b2/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b2/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267297 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b3/ servlet2.3-jsp1.2-tc4.x/tomcat_40_b3/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:30:48 2005
New Revision: 267297

URL: http://svn.apache.org/viewcvs?rev=267297view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/tomcat_40_b3/
  - copied from r267296, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b3/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b3/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267298 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b4/ servlet2.3-jsp1.2-tc4.x/tomcat_40_b4/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:30:56 2005
New Revision: 267298

URL: http://svn.apache.org/viewcvs?rev=267298view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/tomcat_40_b4/
  - copied from r267297, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b4/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b4/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267299 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b5/ servlet2.3-jsp1.2-tc4.x/tomcat_40_b5/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:31:04 2005
New Revision: 267299

URL: http://svn.apache.org/viewcvs?rev=267299view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/tomcat_40_b5/
  - copied from r267298, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b5/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b5/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267300 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b6/ servlet2.3-jsp1.2-tc4.x/tomcat_40_b6/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:31:12 2005
New Revision: 267300

URL: http://svn.apache.org/viewcvs?rev=267300view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/tomcat_40_b6/
  - copied from r267299, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b6/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b6/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267301 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b7/ servlet2.3-jsp1.2-tc4.x/tomcat_40_b7/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:31:19 2005
New Revision: 267301

URL: http://svn.apache.org/viewcvs?rev=267301view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/tomcat_40_b7/
  - copied from r267300, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b7/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_b7/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267302 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/tomcat_40_final/ servlet2.3-jsp1.2-tc4.x/tomcat_40_final/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:31:27 2005
New Revision: 267302

URL: http://svn.apache.org/viewcvs?rev=267302view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/tomcat_40_final/
  - copied from r267301, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_final/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_final/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267303 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/tomcat_40_rc1/ servlet2.3-jsp1.2-tc4.x/tomcat_40_rc1/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:31:35 2005
New Revision: 267303

URL: http://svn.apache.org/viewcvs?rev=267303view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/tomcat_40_rc1/
  - copied from r267302, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_rc1/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_rc1/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267304 - in /tomcat/servletapi/tags: other/servlet2.3-jsp1.2-tc4.x/tomcat_40_rc2/ servlet2.3-jsp1.2-tc4.x/tomcat_40_rc2/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:31:43 2005
New Revision: 267304

URL: http://svn.apache.org/viewcvs?rev=267304view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.3-jsp1.2-tc4.x/tomcat_40_rc2/
  - copied from r267303, 
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_rc2/
Removed:
tomcat/servletapi/tags/other/servlet2.3-jsp1.2-tc4.x/tomcat_40_rc2/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267305 - /tomcat/servletapi/servletapi-4/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:32:59 2005
New Revision: 267305

URL: http://svn.apache.org/viewcvs?rev=267305view=rev
Log:
Restructure repo after migration

Removed:
tomcat/servletapi/servletapi-4/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267309 - in /tomcat/servletapi: branches/servlet2.2-jsp1.1-tc3.x/ servletapi/trunk/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:39:37 2005
New Revision: 267309

URL: http://svn.apache.org/viewcvs?rev=267309view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/branches/servlet2.2-jsp1.1-tc3.x/
  - copied from r267308, tomcat/servletapi/servletapi/trunk/
Removed:
tomcat/servletapi/servletapi/trunk/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267311 - in /tomcat/servletapi: branches/other/servlet2.2-jsp1.1-tc3.x/ servletapi/branches/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:39:44 2005
New Revision: 267311

URL: http://svn.apache.org/viewcvs?rev=267311view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/branches/other/servlet2.2-jsp1.1-tc3.x/
  - copied from r267309, tomcat/servletapi/servletapi/branches/
Removed:
tomcat/servletapi/servletapi/branches/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267312 - in /tomcat/servletapi: servletapi/tags/ tags/other/servlet2.2-jsp1.1-tc3.x/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:39:52 2005
New Revision: 267312

URL: http://svn.apache.org/viewcvs?rev=267312view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/
  - copied from r267311, tomcat/servletapi/servletapi/tags/
Removed:
tomcat/servletapi/servletapi/tags/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267313 - /tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:39:58 2005
New Revision: 267313

URL: http://svn.apache.org/viewcvs?rev=267313view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267314 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/TOMCAT_31_LATEST/ servlet2.2-jsp1.1-tc3.x/TOMCAT_31_LATEST/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:40:03 2005
New Revision: 267314

URL: http://svn.apache.org/viewcvs?rev=267314view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/TOMCAT_31_LATEST/
  - copied from r267313, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/TOMCAT_31_LATEST/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/TOMCAT_31_LATEST/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267315 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b1/ servlet2.2-jsp1.1-tc3.x/tomcat_322_b1/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:40:11 2005
New Revision: 267315

URL: http://svn.apache.org/viewcvs?rev=267315view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/tomcat_322_b1/
  - copied from r267314, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b1/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b1/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267316 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b2/ servlet2.2-jsp1.1-tc3.x/tomcat_322_b2/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:40:19 2005
New Revision: 267316

URL: http://svn.apache.org/viewcvs?rev=267316view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/tomcat_322_b2/
  - copied from r267315, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b2/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b2/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267317 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b3/ servlet2.2-jsp1.1-tc3.x/tomcat_322_b3/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:40:27 2005
New Revision: 267317

URL: http://svn.apache.org/viewcvs?rev=267317view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/tomcat_322_b3/
  - copied from r267316, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b3/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b3/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267318 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b4/ servlet2.2-jsp1.1-tc3.x/tomcat_322_b4/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:40:34 2005
New Revision: 267318

URL: http://svn.apache.org/viewcvs?rev=267318view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/tomcat_322_b4/
  - copied from r267317, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b4/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b4/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267319 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b5/ servlet2.2-jsp1.1-tc3.x/tomcat_322_b5/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:40:42 2005
New Revision: 267319

URL: http://svn.apache.org/viewcvs?rev=267319view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/tomcat_322_b5/
  - copied from r267318, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b5/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_b5/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267320 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/tomcat_322_final/ servlet2.2-jsp1.1-tc3.x/tomcat_322_final/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:40:50 2005
New Revision: 267320

URL: http://svn.apache.org/viewcvs?rev=267320view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/tomcat_322_final/
  - copied from r267319, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_final/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_322_final/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267321 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/tomcat_323_final/ servlet2.2-jsp1.1-tc3.x/tomcat_323_final/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:40:58 2005
New Revision: 267321

URL: http://svn.apache.org/viewcvs?rev=267321view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/tomcat_323_final/
  - copied from r267320, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_323_final/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_323_final/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267322 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/tomcat_324_final/ servlet2.2-jsp1.1-tc3.x/tomcat_324_final/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:41:06 2005
New Revision: 267322

URL: http://svn.apache.org/viewcvs?rev=267322view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/tomcat_324_final/
  - copied from r267321, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_324_final/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_324_final/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267323 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/tomcat_32_b7/ servlet2.2-jsp1.1-tc3.x/tomcat_32_b7/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:41:13 2005
New Revision: 267323

URL: http://svn.apache.org/viewcvs?rev=267323view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/tomcat_32_b7/
  - copied from r267322, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_32_b7/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_32_b7/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267324 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/tomcat_32_b8/ servlet2.2-jsp1.1-tc3.x/tomcat_32_b8/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:41:21 2005
New Revision: 267324

URL: http://svn.apache.org/viewcvs?rev=267324view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/tomcat_32_b8/
  - copied from r267323, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_32_b8/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_32_b8/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267325 - in /tomcat/servletapi/tags: other/servlet2.2-jsp1.1-tc3.x/tomcat_32_final/ servlet2.2-jsp1.1-tc3.x/tomcat_32_final/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:41:29 2005
New Revision: 267325

URL: http://svn.apache.org/viewcvs?rev=267325view=rev
Log:
Restructure repo after migration

Added:
tomcat/servletapi/tags/servlet2.2-jsp1.1-tc3.x/tomcat_32_final/
  - copied from r267324, 
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_32_final/
Removed:
tomcat/servletapi/tags/other/servlet2.2-jsp1.1-tc3.x/tomcat_32_final/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r267326 - /tomcat/servletapi/servletapi/

2005-09-02 Thread markt
Author: markt
Date: Fri Sep  2 14:42:13 2005
New Revision: 267326

URL: http://svn.apache.org/viewcvs?rev=267326view=rev
Log:
Restructure repo after migration

Removed:
tomcat/servletapi/servletapi/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[ANN] Servlet and JSP APIs have moved to subversion

2005-09-02 Thread Mark Thomas

The following CVS modules have been migrated to subversion

jakarta-servletapi
jakarta-servletapi-4
jakarta-servletapi-5

These modules are now read only in CVS.

The new SVN locations are:
http://svn.apache.org/repos/asf/tomcat/servletapi/branches/servlet2.2-jsp1.1-tc3.x/
http://svn.apache.org/repos/asf/tomcat/servletapi/branches/servlet2.3-jsp1.2-tc4.x/
http://svn.apache.org/repos/asf/tomcat/servletapi/servlet2.4-jsp2.0-tc5.x/

NB Committers wishing to make changes to these modules will need to 
use https as per http://www.apache.org/dev/version-control.html#https-svn


TC34 will move next (phase 4), followed by TC5, Connectors and 
Jasper2 (phase 5). A more detailed schedule, particularly for phase 5 
since this is the focus of development, will be posted on the 
tomcat-dev list nearer the time.


Mark


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 36484] New: - incomplete html code

2005-09-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=36484.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36484

   Summary: incomplete html code
   Product: Tomcat 5
   Version: 5.0.28
  Platform: PC
OS/Version: Windows 2000
Status: NEW
  Severity: normal
  Priority: P2
 Component: Catalina
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


Some times when a jsp page is called, the html code is not complete but all the 
jsp instructions are executed.

The next html code are the last two lines of html generated, you can see the 
incomplete td line and of course, the /tr, /table etc, is not generated and the 
shown page looks truncated

td class=textodiv align=centernbsp;input type=hidden name=HViernes-3 
value=/div/td
td

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]