cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-14 Thread mturk
mturk   2005/09/13 23:50:14

  Modified:jk/native/common jk_lb_worker.c
   jk/xdocs changelog.xml
  Log:
  Fix lb for worker mpm's with cachesize set to lower number then
  ThreadsPerChild is. If retries is set to value larger then 3 sleep for
  100 ms on each attempt. This enables to tune the connection cache,
  and serialize incoming connections instead returning busy if connection
  count is larger then cachesize.
  
  Revision  ChangesPath
  1.93  +14 -6 jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.c
  
  Index: jk_lb_worker.c
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_lb_worker.c,v
  retrieving revision 1.92
  retrieving revision 1.93
  diff -u -r1.92 -r1.93
  --- jk_lb_worker.c12 Sep 2005 12:53:05 -  1.92
  +++ jk_lb_worker.c14 Sep 2005 06:50:14 -  1.93
  @@ -652,13 +652,19 @@
* mark the worker as busy rather then
* as in error
*/
  -rec-s-is_busy = JK_TRUE;
  +if (p-worker-s-retries  num_of_workers)
  +rec-s-is_busy = JK_TRUE;
   jk_log(l, JK_LOG_INFO,
  -   could not get free endpoint for worker %s,
  -   rec-s-name);
  +   could not get free endpoint for worker %s 
(attempt %d),
  +   rec-s-name, attempt);
   /* Decrement the worker count and try another worker */
  ---num_of_workers;
  -prec = rec;
  +if (attempt  p-worker-s-retries)
  +num_of_workers = 0;
  +/* In case of retries  3 sleep 100 ms
  + * on each next attempt.
  + */
  +else if (attempt  JK_RETRIES)
  +jk_sleep_def();
   continue;
   }
   if (service_stat == JK_FALSE) {
  @@ -725,6 +731,7 @@
   jk_log(l, JK_LOG_DEBUG,
  recoverable error... will try to recover on 
other host);
   }
  +#if 0
   else {
   /* NULL record, no more workers left ... */
   jk_log(l, JK_LOG_ERROR,
  @@ -733,6 +740,7 @@
   *is_error = JK_HTTP_SERVER_BUSY;
   return JK_FALSE;
   }
  +#endif
   --num_of_workers;
   prec = rec;
   }
  
  
  
  1.42  +7 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- changelog.xml 12 Sep 2005 14:29:49 -  1.41
  +++ changelog.xml 14 Sep 2005 06:50:14 -  1.42
  @@ -26,6 +26,13 @@
 subsection name=Native
   changelog
 fix
  +Fix lb for worker mpm's with cachesize set to lower number then
  +ThreadsPerChild is. If retries is set to value larger then 3 sleep 
for
  +100 ms on each attempt. This enables to tune the connection cache,
  +and serialize incoming connections instead returning busy if 
connection
  +count is larger then cachesize. (mturk)
  +  /fix
  +  fix
 bug36525/bug: Solaris core dump. (mturk)
 /fix
 fix
  
  
  

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



RE: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-14 Thread Tim Whittington
I'm pretty sure this patch is broken looking at it now.
 
The HTTP_ variants used in the extension aren't initialized properly.
I'm currently on the road, but I'll be able to fix this up next week.
 
tim



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tue 13/09/2005 01:46
To: [EMAIL PROTECTED]
Subject: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml



mturk   2005/09/12 06:46:01

  Modified:jk/native/iis jk_isapi_plugin.c
   jk/xdocs changelog.xml
  Log:
  Fix #35298. Patch provided by Tim Whittington.
 
  Revision  ChangesPath
  1.51  +22 -6 jakarta-tomcat-connectors/jk/native/iis/jk_isapi_plugin.c
 
  Index: jk_isapi_plugin.c
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/iis/jk_isapi_plugin.c,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- jk_isapi_plugin.c 12 Sep 2005 12:54:31 -  1.50
  +++ jk_isapi_plugin.c 12 Sep 2005 13:46:00 -  1.51
  @@ -51,11 +51,22 @@
* 3. The contents of the Translate header, if any
*
*/
  -#define URI_HEADER_NAME  (TOMCATURI:)
  -#define QUERY_HEADER_NAME(TOMCATQUERY:)
  -#define WORKER_HEADER_NAME   (TOMCATWORKER:)
  -#define TOMCAT_TRANSLATE_HEADER_NAME (TOMCATTRANSLATE:)
  -#define CONTENT_LENGTH   (CONTENT_LENGTH:)
  +#define URI_HEADER_NAME_BASE (TOMCATURI)
  +#define QUERY_HEADER_NAME_BASE   (TOMCATQUERY)
  +#define WORKER_HEADER_NAME_BASE  (TOMCATWORKER)
  +#define TOMCAT_TRANSLATE_HEADER_NAME_BASE (TOMCATTRANSLATE)
  +
  +static char URI_HEADER_NAME[_MAX_FNAME];
  +static char QUERY_HEADER_NAME[_MAX_FNAME];
  +static char WORKER_HEADER_NAME[_MAX_FNAME];
  +static char TOMCAT_TRANSLATE_HEADER_NAME[_MAX_FNAME];
  +
  +/* The template used to construct our unique headers
  + * from the base name and module instance
  + */
  +#define HEADER_TEMPLATE (%s_%p:)
  +
  +#define CONTENT_LENGTH   (CONTENT_LENGTH)
  
   #define HTTP_URI_HEADER_NAME (HTTP_TOMCATURI)
   #define HTTP_QUERY_HEADER_NAME   (HTTP_TOMCATQUERY)
  @@ -1090,6 +1101,11 @@
   else {
   fReturn = JK_FALSE;
   }
  +/* Construct redirector headers to use for this redirector instance 
*/
  +sprintf(URI_HEADER_NAME, HEADER_TEMPLATE, URI_HEADER_NAME_BASE, 
hInst);
  +sprintf(QUERY_HEADER_NAME, HEADER_TEMPLATE, QUERY_HEADER_NAME_BASE, 
hInst);
  +sprintf(WORKER_HEADER_NAME, HEADER_TEMPLATE, 
WORKER_HEADER_NAME_BASE, hInst);
  +sprintf(TOMCAT_TRANSLATE_HEADER_NAME, HEADER_TEMPLATE, 
TOMCAT_TRANSLATE_HEADER_NAME_BASE, hInst);
   break;
   case DLL_PROCESS_DETACH:
   __try {
 
 
 
  1.39  +3 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
 
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- changelog.xml 12 Sep 2005 13:28:31 -  1.38
  +++ changelog.xml 12 Sep 2005 13:46:01 -  1.39
  @@ -35,6 +35,9 @@
 bug35809/bug: JkMountCopy don't work for Apache 2.0 Patch provided 
by
  Christophe Dubach. (mturk)
 /fix
  +  bug35298/bug: Multiple JK/ISAPI redirectors on a single IIS site 
are not supported
  +   Patch provided by Tim Whittington. (mturk)
  +  /fix
   /changelog
 /subsection
   /section
 
 
 

-
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]

Re: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-14 Thread Mladen Turk

Tim Whittington wrote:

I'm pretty sure this patch is broken looking at it now.
 
The HTTP_ variants used in the extension aren't initialized properly.

I'm currently on the road, but I'll be able to fix this up next week.



You are correct about that.
I was presuming the patch is correct (may bad), but it
lacks the HTTP_ prefixes. I'll correct that today or tomorrow
if you don't provide a patch.

Regards,
Mladen.

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



Re: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-14 Thread Mladen Turk

Tim Whittington wrote:

I'm pretty sure this patch is broken looking at it now.
 
The HTTP_ variants used in the extension aren't initialized properly.

I'm currently on the road, but I'll be able to fix this up next week.



I've just commit the fix for the previous fix :)
Can you confirm if it's working for you?

Regards,
Mladen.

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-12 Thread mturk
mturk   2005/09/12 05:58:24

  Modified:jk/xdocs changelog.xml
  Log:
  Update changelog
  
  Revision  ChangesPath
  1.37  +13 -0 jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- changelog.xml 5 Jul 2005 14:52:45 -   1.36
  +++ changelog.xml 12 Sep 2005 12:58:24 -  1.37
  @@ -21,6 +21,19 @@
 new documentation project for JK was started.
 /p
   /section
  +section name=Changes from the released JK 1.2.14
  +  br /
  +  subsection name=Native
  +changelog
  +  fix
  +  bug36102/bug: Worker actions do not persist. (mturk)
  +  /fix
  +  fix
  +  bug36525/bug: Solaris core dump. (murk)
  +  /fix
  +/changelog
  +  /subsection
  +/section
   section name=Changes from the released JK 1.2.13
 br /
 subsection name=Native
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-12 Thread mturk
mturk   2005/09/12 06:28:31

  Modified:jk/xdocs changelog.xml
  Log:
  Update changelog
  
  Revision  ChangesPath
  1.38  +4 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- changelog.xml 12 Sep 2005 12:58:24 -  1.37
  +++ changelog.xml 12 Sep 2005 13:28:31 -  1.38
  @@ -31,6 +31,10 @@
 fix
 bug36525/bug: Solaris core dump. (murk)
 /fix
  +  fix
  +  bug35809/bug: JkMountCopy don't work for Apache 2.0 Patch provided 
by
  +   Christophe Dubach. (mturk)
  +  /fix
   /changelog
 /subsection
   /section
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-12 Thread mturk
mturk   2005/09/12 06:46:01

  Modified:jk/native/iis jk_isapi_plugin.c
   jk/xdocs changelog.xml
  Log:
  Fix #35298. Patch provided by Tim Whittington.
  
  Revision  ChangesPath
  1.51  +22 -6 jakarta-tomcat-connectors/jk/native/iis/jk_isapi_plugin.c
  
  Index: jk_isapi_plugin.c
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/iis/jk_isapi_plugin.c,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- jk_isapi_plugin.c 12 Sep 2005 12:54:31 -  1.50
  +++ jk_isapi_plugin.c 12 Sep 2005 13:46:00 -  1.51
  @@ -51,11 +51,22 @@
* 3. The contents of the Translate header, if any
*
*/
  -#define URI_HEADER_NAME  (TOMCATURI:)
  -#define QUERY_HEADER_NAME(TOMCATQUERY:)
  -#define WORKER_HEADER_NAME   (TOMCATWORKER:)
  -#define TOMCAT_TRANSLATE_HEADER_NAME (TOMCATTRANSLATE:)
  -#define CONTENT_LENGTH   (CONTENT_LENGTH:)
  +#define URI_HEADER_NAME_BASE (TOMCATURI)
  +#define QUERY_HEADER_NAME_BASE   (TOMCATQUERY)
  +#define WORKER_HEADER_NAME_BASE  (TOMCATWORKER)
  +#define TOMCAT_TRANSLATE_HEADER_NAME_BASE (TOMCATTRANSLATE)
  +
  +static char URI_HEADER_NAME[_MAX_FNAME];
  +static char QUERY_HEADER_NAME[_MAX_FNAME];
  +static char WORKER_HEADER_NAME[_MAX_FNAME];
  +static char TOMCAT_TRANSLATE_HEADER_NAME[_MAX_FNAME];
  +
  +/* The template used to construct our unique headers
  + * from the base name and module instance
  + */
  +#define HEADER_TEMPLATE (%s_%p:)
  +
  +#define CONTENT_LENGTH   (CONTENT_LENGTH)
   
   #define HTTP_URI_HEADER_NAME (HTTP_TOMCATURI)
   #define HTTP_QUERY_HEADER_NAME   (HTTP_TOMCATQUERY)
  @@ -1090,6 +1101,11 @@
   else {
   fReturn = JK_FALSE;
   }
  +/* Construct redirector headers to use for this redirector instance 
*/
  +sprintf(URI_HEADER_NAME, HEADER_TEMPLATE, URI_HEADER_NAME_BASE, 
hInst);
  +sprintf(QUERY_HEADER_NAME, HEADER_TEMPLATE, QUERY_HEADER_NAME_BASE, 
hInst);
  +sprintf(WORKER_HEADER_NAME, HEADER_TEMPLATE, 
WORKER_HEADER_NAME_BASE, hInst);
  +sprintf(TOMCAT_TRANSLATE_HEADER_NAME, HEADER_TEMPLATE, 
TOMCAT_TRANSLATE_HEADER_NAME_BASE, hInst);
   break;
   case DLL_PROCESS_DETACH:
   __try {
  
  
  
  1.39  +3 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- changelog.xml 12 Sep 2005 13:28:31 -  1.38
  +++ changelog.xml 12 Sep 2005 13:46:01 -  1.39
  @@ -35,6 +35,9 @@
 bug35809/bug: JkMountCopy don't work for Apache 2.0 Patch provided 
by
  Christophe Dubach. (mturk)
 /fix
  +  bug35298/bug: Multiple JK/ISAPI redirectors on a single IIS site 
are not supported
  +   Patch provided by Tim Whittington. (mturk)
  +  /fix
   /changelog
 /subsection
   /section
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-09-12 Thread mturk
mturk   2005/09/12 07:29:49

  Modified:jk/xdocs changelog.xml
  Log:
  Update changelog.
  
  Revision  ChangesPath
  1.41  +5 -1  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- changelog.xml 12 Sep 2005 13:54:44 -  1.40
  +++ changelog.xml 12 Sep 2005 14:29:49 -  1.41
  @@ -26,10 +26,14 @@
 subsection name=Native
   changelog
 fix
  +  bug36525/bug: Solaris core dump. (mturk)
  +  /fix
  +  fix
 bug36102/bug: Worker actions do not persist. (mturk)
 /fix
 fix
  -  bug36525/bug: Solaris core dump. (murk)
  +  bug35864/bug: Status worker doesn't list workers.
  +  Patch provided by Martin Goldhahn. (mturk)
 /fix
 fix
 bug35809/bug: JkMountCopy don't work for Apache 2.0 Patch provided 
by
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-07-05 Thread jfclere
jfclere 2005/07/05 07:52:45

  Modified:jk/xdocs changelog.xml
  Log:
  Arrange the wording and remote 1.2.14.
  
  Revision  ChangesPath
  1.36  +13 -14jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- changelog.xml 4 Jul 2005 07:34:04 -   1.35
  +++ changelog.xml 5 Jul 2005 14:52:45 -   1.36
  @@ -21,20 +21,19 @@
 new documentation project for JK was started.
 /p
   /section
  -section name=Changes with JK 1.2.14
  +section name=Changes from the released JK 1.2.13
 br /
 subsection name=Native
   changelog
 fix
  -  bug34397/bug: Emergy was handled as Error. (jfclere)
  +  bug34397/bug: Emergency was handled as Error. (jfclere)
  +  /fix
  +  fix
  +  bug34474/bug: // in URL were not handled correctly with 
Apache-1.3. (jfclere)
  +  /fix
  +  fix
  +  Use 64 bits int for transferred/read bytes.
 /fix
  -/changelog
  -  /subsection
  -/section
  -section name=Changes with JK 1.2.13
  -  br /
  -  subsection name=Native
  -changelog
 update
 Added JkOptions +FlushPackets used to optimize memory
 usage when sending large data. (mturk)
  @@ -62,7 +61,7 @@
 /subsection
   /section
   
  -section name=Changes with JK 1.2.12
  +section name=Changes from the released JK 1.2.12
 br /
 subsection name=Native
   changelog
  @@ -79,7 +78,7 @@
 /subsection
   /section
   
  -section name=Changes with JK 1.2.11
  +section name=Changes from the released JK 1.2.11
 br /
 subsection name=Native
   changelog
  @@ -138,7 +137,7 @@
   /changelog
 /subsection
   /section
  -section name=Changes with JK 1.2.10
  +section name=Changes from the released JK 1.2.10
 br /
 subsection name=Native
   changelog
  @@ -204,7 +203,7 @@
   /changelog
 /subsection
   /section
  -section name=Changes with JK 1.2.8
  +section name=Changes from the released JK 1.2.8
 br /
 subsection name=Native
   changelog
  @@ -263,7 +262,7 @@
   /changelog
 /subsection
   /section
  -section name=Changes from JK 1.2.6
  +section name=Changes from the released JK 1.2.6
 br /
 subsection name=Native
   changelog
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-07-04 Thread jfclere
jfclere 2005/07/04 00:34:04

  Modified:jk/xdocs changelog.xml
  Log:
  Spelling PR 13911.
  
  Revision  ChangesPath
  1.35  +1 -1  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- changelog.xml 1 Jul 2005 16:22:53 -   1.34
  +++ changelog.xml 4 Jul 2005 07:34:04 -   1.35
  @@ -18,7 +18,7 @@
 This is the Changelog for Jakarta Tomcat Connectors. This changelog
 does not contain all updates and fixes to the Tomcat connectors (yet).
 It should contain fixes made only after November 10th 2004, when the
  -  new documentation project for JK has been started.
  +  new documentation project for JK was started.
 /p
   /section
   section name=Changes with JK 1.2.14
  
  
  

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



Re: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-07-02 Thread Natasha Hasmani
Thank-you for your e-mail.

Please note that i will be away from the office starting Wednesday June
29th, returning Thursday July 7th, with no access to email.  In my absence,
kindly contact Cheri Dueck at [EMAIL PROTECTED]

Kind Regards,

Natasha Hasmani
Senior Event Manager 



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



Re: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-07-02 Thread Natasha Hasmani
Thank-you for your e-mail.

Please note that i will be away from the office starting Wednesday June
29th, returning Thursday July 7th, with no access to email.  In my absence,
kindly contact Cheri Dueck at [EMAIL PROTECTED]

Kind Regards,

Natasha Hasmani
Senior Event Manager 



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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-07-01 Thread jfclere
jfclere 2005/07/01 09:22:53

  Modified:jk/xdocs changelog.xml
  Log:
  Add the information for the next release.
  
  Revision  ChangesPath
  1.34  +10 -0 jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- changelog.xml 18 May 2005 18:04:53 -  1.33
  +++ changelog.xml 1 Jul 2005 16:22:53 -   1.34
  @@ -21,6 +21,16 @@
 new documentation project for JK has been started.
 /p
   /section
  +section name=Changes with JK 1.2.14
  +  br /
  +  subsection name=Native
  +changelog
  +  fix
  +  bug34397/bug: Emergy was handled as Error. (jfclere)
  +  /fix
  +/changelog
  +  /subsection
  +/section
   section name=Changes with JK 1.2.13
 br /
 subsection name=Native
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-05-14 Thread mturk
mturk   2005/05/14 03:16:13

  Modified:jk/xdocs changelog.xml
  Log:
  Add 1.2.13 changelog.
  
  Revision  ChangesPath
  1.30  +18 -0 jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- changelog.xml 7 May 2005 08:15:47 -   1.29
  +++ changelog.xml 14 May 2005 10:16:13 -  1.30
  @@ -38,6 +38,24 @@
 /subsection
   /section
   
  +section name=Changes with JK 1.2.13
  +  br /
  +  subsection name=Native
  +changelog
  +  fix
  +  Fix for NetWare compiler to deal with different types between AP13
  +  and AP2 SDKs. (fuankg)
  +  /fix
  +  update
  +  Emit much more legible user.dmp crash analysis output for WIN32. 
(wrowe)
  +  /update  
  + fix
  + bug34558/bug: Fix first failover request. (mturk)
  + /fix
  +/changelog
  +  /subsection
  +/section
  +
   section name=Changes with JK 1.2.11
 br /
 subsection name=Native
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-04-27 Thread mturk
mturk   2005/04/27 00:21:48

  Modified:jk/xdocs changelog.xml
  Log:
  Log search and acl methods.
  
  Revision  ChangesPath
  1.25  +2 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- changelog.xml 26 Apr 2005 15:30:59 -  1.24
  +++ changelog.xml 27 Apr 2005 07:21:48 -  1.25
  @@ -25,6 +25,8 @@
 br /
 subsection name=Native
   changelog
  +  fixAdded missing SEARCH and ACL http methods. (mturk)
  +  /fix
 update
 Add a stopped flag to worker configuration. Set flag True and 
 complete traffic to worker is stopped. 
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-04-27 Thread mturk
mturk   2005/04/27 07:06:17

  Modified:jk/native/common jk_ajp_common.c jk_ajp_common.h
   jk/xdocs changelog.xml
  Log:
  Backport SC_M_JK_STORED from JK2 for passing arbitrary
  methods instead failing the request
  
  Revision  ChangesPath
  1.106 +15 -8 
jakarta-tomcat-connectors/jk/native/common/jk_ajp_common.c
  
  Index: jk_ajp_common.c
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_ajp_common.c,v
  retrieving revision 1.105
  retrieving revision 1.106
  diff -u -r1.105 -r1.106
  --- jk_ajp_common.c   27 Apr 2005 07:17:46 -  1.105
  +++ jk_ajp_common.c   27 Apr 2005 14:06:17 -  1.106
  @@ -386,13 +386,8 @@
   JK_TRACE_ENTER(l);
   
   if ((method = sc_for_req_method(s-method,
  -strlen(s-method))) == UNKNOWN_METHOD) {
  -jk_log(l, JK_LOG_ERROR,
  -   No such method %s,
  -   s-method);
  -JK_TRACE_EXIT(l);
  -return JK_FALSE;
  -}
  +strlen(s-method))) == UNKNOWN_METHOD)
  +method = SC_M_JK_STORED;
   
   if (jk_b_append_byte(msg, JK_AJP13_FORWARD_REQUEST) ||
   jk_b_append_byte(msg, (unsigned char)method) ||
  @@ -533,6 +528,18 @@
   }
   }
   
  +/* If the method was unrecognized, encode it as an attribute */
  +if (method == SC_M_JK_STORED) {
  +if (JK_IS_DEBUG_LEVEL(l))
  +jk_log(l, JK_LOG_DEBUG, unknown method %s, s-method);
  +if (jk_b_append_string(msg, s-method)) {
  +jk_log(l, JK_LOG_ERROR,
  +   failed appending the request method);
  +JK_TRACE_EXIT(l);
  +return JK_FALSE;
  +}
  +}
  +
   if (s-num_attributes  0) {
   for (i = 0; i  s-num_attributes; i++) {
   if (jk_b_append_byte(msg, SC_A_REQ_ATTRIBUTE) ||
  
  
  
  1.33  +2 -2  
jakarta-tomcat-connectors/jk/native/common/jk_ajp_common.h
  
  Index: jk_ajp_common.h
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_ajp_common.h,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- jk_ajp_common.h   24 Apr 2005 09:54:47 -  1.32
  +++ jk_ajp_common.h   27 Apr 2005 14:06:17 -  1.33
  @@ -111,7 +111,7 @@
   #define SC_M_MERGE  (unsigned char)25
   #define SC_M_BASELINE_CONTROL   (unsigned char)26
   #define SC_M_MKACTIVITY (unsigned char)27
  -
  +#define SC_M_JK_STORED  (unsigned char)0xFF
   
   /*
* Frequent request headers, these headers are coded as numbers
  
  
  
  1.26  +3 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- changelog.xml 27 Apr 2005 07:21:48 -  1.25
  +++ changelog.xml 27 Apr 2005 14:06:17 -  1.26
  @@ -25,6 +25,9 @@
 br /
 subsection name=Native
   changelog
  +  fixBackport SC_M_JK_STORED from JK2 for passing arbitrary
  +  methods instead failing the request. (mturk)
  +  /fix
 fixAdded missing SEARCH and ACL http methods. (mturk)
 /fix
 update
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-04-24 Thread mturk
mturk   2005/04/24 03:15:02

  Modified:jk/xdocs changelog.xml
  Log:
  Log the shutdown and maintain.
  
  Revision  ChangesPath
  1.23  +7 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- changelog.xml 23 Apr 2005 10:32:06 -  1.22
  +++ changelog.xml 24 Apr 2005 10:15:02 -  1.23
  @@ -25,6 +25,13 @@
 br /
 subsection name=Native
   changelog
  +  updateAdded worker maintain function that will maintain all
  +  the workers instead just the current one. This enables to recycle
  +  the connections on all workers. (mturk)
  +  /update
  +  updateUse shutdown when recycling connections instead hard
  +  breaking the socket. (mturk)
  +  /update
 updateAdd unique directives checking. The directives if
 unique are now overwritten instead concatenated. (mturk)
 /update
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-04-23 Thread mturk
mturk   2005/04/23 03:32:06

  Modified:jk/xdocs changelog.xml
  Log:
  Add recent changes. Seems there is enough for the next release,
  because some of them are critical.
  
  Revision  ChangesPath
  1.22  +31 -10jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- changelog.xml 9 Apr 2005 15:44:58 -   1.21
  +++ changelog.xml 23 Apr 2005 10:32:06 -  1.22
  @@ -25,16 +25,37 @@
 br /
 subsection name=Native
   changelog
  -  update
  -Add --enable-prefork to the documentation (pero)
  +  updateAdd unique directives checking. The directives if
  +  unique are now overwritten instead concatenated. (mturk)
 /update
  +  updateAllow multiple worker.list directives. (mturk)
  +  /update
  +  fix
  +  bug34577/bug: For IIS log original request instead loging
  +  the request for ISAPI extension. (mturk)
  +  /fix
  +  fix
  +  bug34558/bug: Make sure the returned status codes are the same
  +  for ajp and lb workers. (mturk)
  +  /fix
 fix
  -  bug34358/bug: Fix the load balance worker load balance method.
  -  It was not being set from the worker.properties file
  +  bug34423/bug: Use APR_USE_FLOCK_SERIALIZE for setting log lock
  +  on platforms like FreeBSD. Patch provided by Allan Saddi. (mturk)
 /fix
 fix
  -  bug34357/bug: Fix a segfault in Apache 2 when using JKAutoAlias.
  +  bug33843/bug: Fix obtaining LDFLAGS that were used for building
  +  Apache HTTPD. Patch provided by Beat Kneubuehl. (mturk)
 /fix
  +  fix
  +  bug34358/bug: Enable load balancer method configuration. (glenn)
  +  /fix
  +  fix
  +  bug34357/bug: In some situations Apache 2 mod_jk could segfault
  +  when the JkAutoAlias directive is used. (glenn)
  +  /fix
  +  update
  +Add --enable-prefork to the documentation (pero)
  +  /update  
   /changelog
 /subsection
   /section
  @@ -63,7 +84,7 @@
 bug32696/bug: Return 404 instead 403 when WEB-INF is requested
 to comply with Servlet spec. (mturk)
 /fix
  -  updateAdded ANT task for managing jkstatus. (pero)
  +  updateAdded ANT task for managing jkstatus. (pero)
 /update
 update
 If socket_timeout is set, check if socket is alive before
  @@ -138,10 +159,10 @@
 threads per child process. (mturk).
 /update
 fix
  -  Fix Apache content-length header parsing using case insensitive 
compare. (billbarker) 
  +  Fix Apache content-length header parsing using case insensitive 
compare. (billbarker)
 /fix
 fix
  -  Fix parsing AJP headers using case insensitive compare. (mturk) 
  +  Fix parsing AJP headers using case insensitive compare. (mturk)
 /fix
 fix
 Use infinite socket timeout if socket_timeout is set to zero or less 
then zero. (mturk)
  @@ -192,7 +213,7 @@
 /update
 update
 Added wildchar match uri mappings. One can now use JkMount to
  -  map /app/*/servlet/* or /app?/*/*.jsp. (mturk)  
  +  map /app/*/servlet/* or /app?/*/*.jsp. (mturk)
 /update
 update
 Rewrite the logging by adding Trace options. (mturk)
  @@ -226,7 +247,7 @@
   pJK2 has been put in maintainer mode and no further development will take 
place.
   The reason for shutting down JK2 development was the lack of developers 
interest.
   Other reason was lack of users interest in adopting JK2, caused by 
configuration
  -complexity when compared to JK. 
  +complexity when compared to JK.
   /p
   /section
   
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-04-09 Thread glenn
glenn   2005/04/09 08:44:58

  Modified:jk/native CHANGES.txt
   jk/xdocs changelog.xml
  Log:
  Document bug fixes
  
  Revision  ChangesPath
  1.26  +8 -1  jakarta-tomcat-connectors/jk/native/CHANGES.txt
  
  Index: CHANGES.txt
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/CHANGES.txt,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- CHANGES.txt   30 Mar 2005 05:41:15 -  1.25
  +++ CHANGES.txt   9 Apr 2005 15:44:58 -   1.26
  @@ -1,9 +1,16 @@
   JAKARTA TOMCAT CONNECTORS (JK) CHANGELOG:   -*-text-*-
   Last modified at [$Date$]
   
  +Changes in JK 1.2.11
  +* BUG 34358: Fix the load balance worker load balance method. It was not 
being
  +  set from the worker.properties file
  +* BUG 34357: Fix a segfault in Apache 2 when using JKAutoAlias.
  +* Update tomcat_trend.pl for new error log string formatting.
  +
   Changes in JK 1.2.10
   * Do not mark the worker in error state if headers are larger then AJP13
 limit.
  +
   Changes in JK 1.2.9
   * lbfactor is now relationship between members, so worker.a.lbfactor=1 
and worker.b.lbfactor=1
 will give 50-50% load.
  
  
  
  1.21  +7 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- changelog.xml 5 Apr 2005 06:32:55 -   1.20
  +++ changelog.xml 9 Apr 2005 15:44:58 -   1.21
  @@ -28,6 +28,13 @@
 update
   Add --enable-prefork to the documentation (pero)
 /update
  +  fix
  +  bug34358/bug: Fix the load balance worker load balance method.
  +  It was not being set from the worker.properties file
  +  /fix
  +  fix
  +  bug34357/bug: Fix a segfault in Apache 2 when using JKAutoAlias.
  +  /fix
   /changelog
 /subsection
   /section
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml index.xml

2005-03-29 Thread mturk
mturk   2005/03/29 22:21:19

  Modified:jk/xdocs changelog.xml index.xml
  Log:
  Update docs to 1.2.10 release
  
  Revision  ChangesPath
  1.19  +2 -2  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- changelog.xml 30 Mar 2005 05:38:07 -  1.18
  +++ changelog.xml 30 Mar 2005 06:21:19 -  1.19
  @@ -39,11 +39,11 @@
 Change the xml status format to xml attribute syntax (pero)
 /update
 fix
  -  bug33248/bugFix builds where apxs defines multiple
  +  bug33248/bug: Fix builds where apxs defines multiple
 directories for APR includes. (mturk)
 /fix
 fix
  -  bug32696/bugReturn 404 instead 403 when WEB-INF is requested
  +  bug32696/bug: Return 404 instead 403 when WEB-INF is requested
 to comply with Servlet spec. (mturk)
 /fix
 updateAdded ANT task for managing jkstatus. (pero)
  
  
  
  1.32  +10 -0 jakarta-tomcat-connectors/jk/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/index.xml,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- index.xml 23 Feb 2005 08:10:19 -  1.31
  +++ index.xml 30 Mar 2005 06:21:19 -  1.32
  @@ -28,6 +28,16 @@
   section name=Headlines
   br /
   ul
  +lia href=news/20050101.html#20050330.130 March 2005 - bJK-1.2.10 
released/b/a
  +pThe Apache Jakarta Tomcat team is proud to announce the immediate 
availability
  +of Jakarta Tomcat Connectors 1.2.10.
  +/p
  +pDownlad the a 
href=http://www.apache.org/dist/jakarta/tomcat-connectors/jk/source/jk-1.2.10/jakarta-tomcat-connectors-1.2.10-src.tar.gz;JK
 1.2.10 release sources/a
  + | a 
href=http://www.apache.org/dist/jakarta/tomcat-connectors/jk/source/jk-1.2.10/jakarta-tomcat-connectors-1.2.10-src.tar.gz.asc;PGP
 signature/a
  +/p
  +pDownload the a 
href=http://www.apache.org/dist/jakarta/tomcat-connectors/jk/binaries/;binaries/a
 for selected platforms.
  +/p
  +/li
   lia href=news/20041100.html#20041224.124 December 2004 - bJK-1.2.8 
released/b/a
   pThe Apache Jakarta Tomcat team is proud to announce the immediate 
availability
   of Jakarta Tomcat Connectors 1.2.8.
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-03-28 Thread mturk
mturk   2005/03/28 01:55:30

  Modified:jk/xdocs changelog.xml
  Log:
  Add latest changes. Also move Henri's and Peter's changes to the
  beginning of the list, because the change log is in the descending order.
  
  Revision  ChangesPath
  1.17  +13 -7 jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- changelog.xml 26 Mar 2005 13:48:17 -  1.16
  +++ changelog.xml 28 Mar 2005 09:55:30 -  1.17
  @@ -25,6 +25,19 @@
 br /
 subsection name=Native
   changelog
  +  updateSet default shared memory to 64K instead 1M. (mturk)
  +  /update
  +  fixDo not mark the worker in error state if headers are
  +  larger then AJP13 limit. (mturk)
  +  /fix
  +  update
  +  On Series you should use the latest PTF for Apache 2.0
  +  (which is now 2.0.52) and ad minima SI17402/SI17061 or cumulative
  +  including them. (hgomez)
  +  /update
  +  update
  +  Change the xml status format to xml attribute syntax (pero)
  +  /update
 fix
 bug33248/bugFix builds where apxs defines multiple
 directories for APR includes. (mturk)
  @@ -71,13 +84,6 @@
 bug33308/bug: Fix segfaults when ForwardDirectories is enabled
   with Apache 1.3
 /fix
  -  update
  -  On Series you should use the latest PTF for Apache 2.0 (which is now 
2.0.52) and ad minima
  -  SI17402/SI17061 or cumulative including them. (hgomez)
  -  /update
  -  update
  -  Change the xml status format to xml attribute syntax (pero)
  -  /update
   /changelog
 /subsection
   /section
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-03-26 Thread pero
pero2005/03/26 05:48:17

  Modified:jk/native/common jk_status.c
   jk/xdocs changelog.xml
  Log:
  change jk:status to xml attribute syntax
  
  Revision  ChangesPath
  1.34  +39 -50jakarta-tomcat-connectors/jk/native/common/jk_status.c
  
  Index: jk_status.c
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_status.c,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- jk_status.c   15 Mar 2005 06:24:22 -  1.33
  +++ jk_status.c   26 Mar 2005 13:48:17 -  1.34
  @@ -375,22 +375,16 @@
   if (strcmp(uwr-worker_name, worker)) {
   continue;
   }
  -jk_puts(s, jk:map\n);
  -jk_putv(s,   jk:type,
  -status_val_match(uwr-match_type),
  -/jk:type\n, NULL);
  -jk_putv(s,   jk:uri,
  -uwr-uri,
  -/jk:uri\n, NULL);
  -jk_putv(s,   jk:context,
  -uwr-context,
  -/jk:context\n, NULL);
  -
  +jk_printf(s, jk:map type=\%s\ uri=\%s\ context=\%s\,
  +  status_val_match(uwr-match_type),
  +  uwr-uri,
  +  uwr-context) ;
  +
   if (uwr-suffix)
  -jk_putv(s,   jk:suffix,
  +jk_putv(s,  suffix=\,
   uwr-suffix,
  -/jk:suffix\n, NULL);
  -jk_puts(s, /jk:map\n);
  +\, NULL);
  +jk_puts(s,  /\n);
   }
   }
   
  @@ -628,47 +622,42 @@
   /* Skip non lb workers */
   continue;
   }
  -jk_printf(s,   jk:balancer\njk:id%d/jk:id\n, i);
  -jk_putv(s, jk:name, lb-s-name, /jk:name\n, NULL);
  -jk_putv(s, jk:type, status_worker_type(w-type), 
/jk:type\n, NULL);
  -jk_putv(s, jk:sticky, status_val_bool(lb-s-sticky_session),
  -   /jk:sticky\n, NULL);
  -jk_putv(s, jk:stickyforce, 
status_val_bool(lb-s-sticky_session_force),
  -   /jk:stickyforce\n, NULL);
  -jk_printf(s, jk:retries%d/jk:retries\n, lb-s-retries);
  -jk_printf(s, jk:recover%d/jk:recover\n, 
lb-s-recover_wait_time);
  +jk_printf(s,   jk:balancer id=\%d\ name=\%s\ type=\%s\ 
sticky=\$s\ stickyforce=\%s\ retries=\%d\ recover=\%d\ \n, 
  + i,
  + lb-s-name,
  + status_worker_type(w-type), 
  + status_val_bool(lb-s-sticky_session),
  + status_val_bool(lb-s-sticky_session_force),
  + lb-s-retries,
  + lb-s-recover_wait_time);
   for (j = 0; j  lb-num_of_workers; j++) {
   worker_record_t *wr = (lb-lb_workers[j]);
   ajp_worker_t *a = (ajp_worker_t *)wr-w-worker_private;
  -jk_puts(s, jk:member\n);
  -jk_printf(s,   jk:id%d/jk:id\n, j);
  -jk_putv(s,   jk:name, wr-s-name, /jk:name\n, NULL);
  -jk_putv(s,   jk:type, status_worker_type(wr-w-type),
  -   /jk:type\n, NULL);
  -
  -jk_putv(s,   jk:host, a-host, /jk:host\n, NULL);
  -jk_printf(s,   jk:port%d/jk:port\n, a-port);
  -jk_putv(s,   jk:address, 
jk_dump_hinfo(a-worker_inet_addr, buf),
  -   /jk:address\n, NULL);
   /* TODO: descriptive status */
  -jk_putv(s,   jk:status,
  -status_val_status(wr-s-is_disabled,
  -  wr-s-in_error_state,
  -  wr-s-in_recovering,
  -  wr-s-is_busy),
  -/jk:status\n, NULL);
  -jk_printf(s,   jk:lbfactor%d/jk:lbfactor\n, 
wr-s-lb_factor);
  -jk_printf(s,   jk:lbvalue%d/jk:lbvalue\n, 
wr-s-lb_value);
  -jk_printf(s,   jk:elected%u/jk:elected\n, 
wr-s-elected);
  -jk_printf(s,   jk:readed%u/jk:readed\n, wr-s-readed);
  -jk_printf(s,   jk:transferred%u/jk:transferred\n, 
wr-s-transferred);
  -jk_printf(s,   jk:errors%u/jk:errors\n, wr-s-errors);
  -jk_printf(s,   jk:busy%u/jk:busy\n, wr-s-busy);
  +jk_printf(s,   jk:member id=\%d\ name=\%s\ type=\%s\ 
host=\%s\ port=\%d\ address=\%s\ status=\%s\, 
  +j,
  +wr-s-name,
  +status_worker_type(wr-w-type),
  +a-host,
  +a-port,
  +jk_dump_hinfo(a-worker_inet_addr, buf),
  +status_val_status(wr-s-is_disabled,
  +  wr-s-in_error_state,
  +  wr-s-in_recovering,
  +  wr-s-is_busy) );
  +

Re: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-03-26 Thread Mladen Turk
Peter,
pero2005/03/26 05:48:17
  +jk_printf(s,   jk:balancer id=\%d\ name=\%s\ type=\%s\ sticky=\$s\ stickyforce=\%s\ retries=\%d\ recover=\%d\ \n, 
Think that sticky=\$s\ should be sticky=\%s\
because I'm getting 'sticky=$s' in output.
Regards,
Mladen
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-03-24 Thread hgomez
hgomez  2005/03/24 02:48:28

  Modified:jk/xdocs changelog.xml
  Log:
  Comments pre-requisite on iSeries
  
  Revision  ChangesPath
  1.15  +4 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- changelog.xml 18 Mar 2005 08:25:12 -  1.14
  +++ changelog.xml 24 Mar 2005 10:48:28 -  1.15
  @@ -71,6 +71,10 @@
 bug33308/bug: Fix segfaults when ForwardDirectories is enabled
   with Apache 1.3
 /fix
  +  update
  +  On Series you should use the latest PTF for Apache 2.0 (which is now 
2.0.52) and ad minima
  +  SI17402/SI17061 or cumulative including them. (hgomez)
  +  /update
   /changelog
 /subsection
   /section
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-03-18 Thread mturk
mturk   2005/03/18 00:25:13

  Modified:jk/xdocs changelog.xml
  Log:
  Update changelog
  
  Revision  ChangesPath
  1.14  +11 -1 jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- changelog.xml 13 Mar 2005 06:36:22 -  1.13
  +++ changelog.xml 18 Mar 2005 08:25:12 -  1.14
  @@ -25,8 +25,18 @@
 br /
 subsection name=Native
   changelog
  +  fix
  +  bug33248/bugFix builds where apxs defines multiple
  +  directories for APR includes. (mturk)
  +  /fix
  +  fix
  +  bug32696/bugReturn 404 instead 403 when WEB-INF is requested
  +  to comply with Servlet spec. (mturk)
  +  /fix
  +  updateAdded ANT task for managing jkstatus. (pero)
  +  /update
 update
  -  If socket_timeout is set check if socket is alive before
  +  If socket_timeout is set, check if socket is alive before
 sending any request to Tomcat. (mturk)
 /update
 update
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-03-12 Thread pero
pero2005/03/12 22:36:22

  Modified:jk/xdocs changelog.xml
  Log:
  add textupdate mode to status worker
  for simpler handle remote JkStatusAntTasks
  
  Revision  ChangesPath
  1.13  +4 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- changelog.xml 23 Feb 2005 08:10:19 -  1.12
  +++ changelog.xml 13 Mar 2005 06:36:22 -  1.13
  @@ -49,6 +49,10 @@
 child processes. For Apache web server two new directives has been
 added (JkShmFile and JkShmSize). (mturk)
 /update
  +  update
  +  Added textupdate mode to status worker to handle remote updates
  +  from ant tasks.(pero)
  +  /update
 fix
 bug33562/bug: Fix Reply_timeout when recovery_options
 is larger than 1. Patch provided by Takashi Satou. (mturk)
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-02-14 Thread mturk
mturk   2005/02/14 10:07:00

  Modified:jk/native/common jk_ajp_common.c
   jk/xdocs changelog.xml
  Log:
  Fix #33562. Not very common case, but fixes the situation when remote
  breaks when the headers has been send already.
  
  Revision  ChangesPath
  1.77  +10 -2 
jakarta-tomcat-connectors/jk/native/common/jk_ajp_common.c
  
  Index: jk_ajp_common.c
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/native/common/jk_ajp_common.c,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -u -r1.76 -r1.77
  --- jk_ajp_common.c   14 Feb 2005 17:25:24 -  1.76
  +++ jk_ajp_common.c   14 Feb 2005 18:07:00 -  1.77
  @@ -1420,8 +1420,16 @@
   if (ajp_is_input_event(p, p-worker-reply_timeout, l) ==
   JK_FALSE) {
   jk_log(l, JK_LOG_ERROR,
  -   Timeout will waiting reply from tomcat. 
  +   Timeout with waiting reply from tomcat. 
  Tomcat is down, stopped or network problems.);
  +if (headeratclient == JK_FALSE) {
  +if (p-worker-recovery_opts  
RECOVER_ABORT_IF_TCGETREQUEST)
  +op-recoverable = JK_FALSE;
  +}
  +else {
  +if (p-worker-recovery_opts  
RECOVER_ABORT_IF_TCSENDHEADER)
  +op-recoverable = JK_FALSE;
  +}
   
   JK_TRACE_EXIT(l);
   return JK_FALSE;
  
  
  
  1.11  +4 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- changelog.xml 13 Feb 2005 13:22:50 -  1.10
  +++ changelog.xml 14 Feb 2005 18:07:00 -  1.11
  @@ -26,6 +26,10 @@
 subsection name=Native
   changelog
 fix
  +  bug33562/bug: Fix Reply_timeout when recovery_options
  +  is larger than 1. Patch provided by Takashi Satou. (mturk)
  +  /fix
  +  fix
 bug33308/bug: Fix segfaults when ForwardDirectories is enabled
   with Apache 1.3
 /fix
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2005-02-13 Thread mturk
mturk   2005/02/13 05:22:51

  Modified:jk/xdocs changelog.xml
  Log:
  Update change log to reflect current version.
  
  Revision  ChangesPath
  1.10  +12 -1 jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- changelog.xml 23 Dec 2004 14:00:50 -  1.9
  +++ changelog.xml 13 Feb 2005 13:22:50 -  1.10
  @@ -21,7 +21,18 @@
 new documentation project for JK has been started.
 /p
   /section
  -section name=Changes from JK 1.2.7
  +section name=Changes with JK 1.2.9
  +  br /
  +  subsection name=Native
  +changelog
  +  fix
  +  bug33308/bug: Fix segfaults when ForwardDirectories is enabled
  +with Apache 1.3
  +  /fix
  +/changelog
  +  /subsection
  +/section
  +section name=Changes with JK 1.2.8
 br /
 subsection name=Native
   changelog
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2004-12-23 Thread mturk
mturk   2004/12/23 06:00:50

  Modified:jk/xdocs changelog.xml
  Log:
  Latest patches from wrowe.
  
  Revision  ChangesPath
  1.9   +10 -0 jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- changelog.xml 20 Dec 2004 09:35:06 -  1.8
  +++ changelog.xml 23 Dec 2004 14:00:50 -  1.9
  @@ -25,6 +25,16 @@
 br /
 subsection name=Native
   changelog
  +  update
  +  Allow anyone to debug and diagnose stack dumps using windbg or any

  +  other debugging tool, and (if they add the .pdb files to their

  +  installation) to make sense of dr watson logs.
  +  Patch provided by William A. Rowe (wrowe)
  +  /update
  +  fix
  +  Fix in_addr_t usage by using the real struct ignoring typedef.
  +  Patch provided by William A. Rowe (wrowe)
  +  /fix
 fix
 Fix url rewriting by restoring the in place uri from which the
 jsessionid was removed. (mturk)
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2004-12-17 Thread mturk
mturk   2004/12/17 01:01:18

  Modified:jk/xdocs changelog.xml
  Log:
  Latest changes to the 1.2.7
  
  Revision  ChangesPath
  1.6   +22 -1 jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- changelog.xml 13 Dec 2004 14:32:56 -  1.5
  +++ changelog.xml 17 Dec 2004 09:01:18 -  1.6
  @@ -25,12 +25,33 @@
 br /
 subsection name=Native
   changelog
  +  update
  +  Make load balancer algorithm thread safe by introducing mutex
  +  to the load balancer worker. (mturk)
  +  /update
  +  fix
  +  Fix sending error pages for IIS to client by adding Content-Type header
  +  using correct api function all. (mturk)
  +  /fix
  +  fix
  +  bug32696/bug: Prevent IIS from crushing when web-inf url was 
requested. (mturk)
  +  /fix
  +  update
  +  Use default cachesize for servers that support discovering the number 
of
  +  threads per child process. (mturk).
  +  /update
  +  fix
  +  Fix Apache content-length header parsing using case insensitive 
compare. (billbarker) 
  +  /fix
  +  fix
  +  Fix parsing AJP headers using case insensitive compare. (mturk) 
  +  /fix
 fix
 Use infinite socket timeout if socket_timeout is set to zero or less 
then zero. (mturk)
 /fix
 update
 Change bbalanced_workers/b to bbalance_workers/b but keep
  -  backward compatibility preserving old directive. (mturk).
  +  backward compatibility preserving the old directive. (mturk).
 /update
 fix
 Fix ajp initialization for workers with cache_size set to zero. (mturk)
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2004-12-17 Thread mturk
mturk   2004/12/17 04:28:12

  Modified:jk/xdocs changelog.xml
  Log:
  Log the fix about url rewriting.
  
  Revision  ChangesPath
  1.7   +4 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- changelog.xml 17 Dec 2004 09:01:18 -  1.6
  +++ changelog.xml 17 Dec 2004 12:28:12 -  1.7
  @@ -25,6 +25,10 @@
 br /
 subsection name=Native
   changelog
  +  fix
  +  Fix url rewriting by restoring the inplace uri from which the
  +  jsessionid was removed. (mturk)
  +  /fix
 update
 Make load balancer algorithm thread safe by introducing mutex
 to the load balancer worker. (mturk)
  
  
  

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



RE: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2004-12-17 Thread Derrick Koes
 
Thanks, I'll give this a test.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 17, 2004 7:28 AM
To: [EMAIL PROTECTED]
Subject: cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

mturk   2004/12/17 04:28:12

  Modified:jk/xdocs changelog.xml
  Log:
  Log the fix about url rewriting.
  
  Revision  ChangesPath
  1.7   +4 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- changelog.xml 17 Dec 2004 09:01:18 -  1.6
  +++ changelog.xml 17 Dec 2004 12:28:12 -  1.7
  @@ -25,6 +25,10 @@
 br /
 subsection name=Native
   changelog
  +  fix
  +  Fix url rewriting by restoring the inplace uri from which the
  +  jsessionid was removed. (mturk)
  +  /fix
 update
 Make load balancer algorithm thread safe by introducing mutex
 to the load balancer worker. (mturk)
  
  
  

-
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]



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2004-12-13 Thread mturk
mturk   2004/12/13 01:25:39

  Modified:jk/xdocs changelog.xml
  Log:
  Update latest changes.
  
  Revision  ChangesPath
  1.4   +7 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- changelog.xml 7 Dec 2004 17:02:49 -   1.3
  +++ changelog.xml 13 Dec 2004 09:25:39 -  1.4
  @@ -26,6 +26,13 @@
 subsection name=Native
   changelog
 update
  +  Change bbalanced_workers/b to bbalance_workers/b but keep
  +  backward compatibility preserving old directive. (mturk).
  +  /update
  +  fix
  +  Fix ajp initialization for workers with cache_size set to zero. (mturk)
  +  /fix
  +  update
 bug32317/bug: Making mod_jk replication aware (Clustering Support).
 Patch provided by Rainer Jung. (mturk).
 /update
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2004-12-13 Thread mturk
mturk   2004/12/13 06:32:57

  Modified:jk/xdocs changelog.xml
  Log:
  Note socket_timeout fix.
  
  Revision  ChangesPath
  1.5   +3 -0  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- changelog.xml 13 Dec 2004 09:25:39 -  1.4
  +++ changelog.xml 13 Dec 2004 14:32:56 -  1.5
  @@ -25,6 +25,9 @@
 br /
 subsection name=Native
   changelog
  +  fix
  +  Use infinite socket timeout if socket_timeout is set to zero or less 
then zero. (mturk)
  +  /fix
 update
 Change bbalanced_workers/b to bbalance_workers/b but keep
 backward compatibility preserving old directive. (mturk).
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml

2004-12-07 Thread mturk
mturk   2004/12/07 09:02:49

  Modified:jk/xdocs changelog.xml
  Log:
  Note latest changes to 1.2.7
  
  Revision  ChangesPath
  1.3   +14 -1 jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/changelog.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- changelog.xml 30 Nov 2004 07:35:37 -  1.2
  +++ changelog.xml 7 Dec 2004 17:02:49 -   1.3
  @@ -21,7 +21,20 @@
 new documentation project for JK has been started.
 /p
   /section
  -
  +section name=Changes from JK 1.2.7
  +  br /
  +  subsection name=Native
  +changelog
  +  update
  +  bug32317/bug: Making mod_jk replication aware (Clustering Support).
  +  Patch provided by Rainer Jung. (mturk).
  +  /update
  +  fix
  +  bug31132/bug: Core dump when JkLogFile is missing from conf. 
(mturk)
  +  /fix
  +/changelog
  +  /subsection
  +/section
   section name=Changes from JK 1.2.6
 br /
 subsection name=Native
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs changelog.xml index.xml project.xml style.xsl

2004-11-25 Thread mturk
mturk   2004/11/25 02:10:26

  Modified:jk/xdocs index.xml project.xml style.xsl
  Added:   jk/xdocs changelog.xml
  Log:
  Add changelog.xml to documentation, so that users can trace things down :).
  
  Revision  ChangesPath
  1.22  +4 -0  jakarta-tomcat-connectors/jk/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/index.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- index.xml 25 Nov 2004 09:22:15 -  1.21
  +++ index.xml 25 Nov 2004 10:10:26 -  1.22
  @@ -118,6 +118,10 @@
   p
   /p
   /li
  +lia href=changelog.htmlbDetails the changes made to JK/b/a
  +p
  +/p
  +/li
   
   /ul
   
  
  
  
  1.2   +1 -0  jakarta-tomcat-connectors/jk/xdocs/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/project.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.xml   18 Nov 2004 18:27:48 -  1.1
  +++ project.xml   25 Nov 2004 10:10:26 -  1.2
  @@ -26,6 +26,7 @@
   item name=AJPv13 Protocol   href=common/ajpv13a.html/
   item name=HowTo href=howto/index.html/
   item name=Frequently asked questions  href=faq.html/
  +item name=Changelog href=changelog.html/ 
   /menu
   
   /body
  
  
  
  1.7   +7 -7  jakarta-tomcat-connectors/jk/xdocs/style.xsl
  
  Index: style.xsl
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/style.xsl,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- style.xsl 19 Nov 2004 09:33:22 -  1.6
  +++ style.xsl 25 Nov 2004 10:10:26 -  1.7
  @@ -399,7 +399,7 @@
 xsl:template match=changelog/add
   tr
 xsl:variable name=srcxsl:value-of 
select=$relative-path//images/add.gif/xsl:variable
  -  tdimg alt=add class=icon src={$src}//td
  +  td valign=topimg alt=add class=icon src={$src}//td
 tdxsl:apply-templates//td
   /tr
 /xsl:template
  @@ -407,7 +407,7 @@
 xsl:template match=changelog/update
   tr
 xsl:variable name=srcxsl:value-of 
select=$relative-path//images/update.gif/xsl:variable
  -  tdimg alt=update class=icon src={$src}//td
  +  td valign=topimg alt=update class=icon src={$src}//td
 tdxsl:apply-templates//td
   /tr
 /xsl:template
  @@ -415,7 +415,7 @@
 xsl:template match=changelog/design
   tr
 xsl:variable name=srcxsl:value-of 
select=$relative-path//images/design.gif/xsl:variable
  -  tdimg alt=design class=icon src={$src}//td
  +  td valign=topimg alt=design class=icon src={$src}//td
 tdxsl:apply-templates//td
   /tr
 /xsl:template
  @@ -423,7 +423,7 @@
 xsl:template match=changelog/docs
   tr
 xsl:variable name=srcxsl:value-of 
select=$relative-path//images/docs.gif/xsl:variable
  -  tdimg alt=docs class=icon src={$src}//td
  +  td valign=topimg alt=docs class=icon src={$src}//td
 tdxsl:apply-templates//td
   /tr
 /xsl:template
  @@ -431,7 +431,7 @@
 xsl:template match=changelog/fix
   tr
 xsl:variable name=srcxsl:value-of 
select=$relative-path//images/fix.gif/xsl:variable
  -  tdimg alt=fix class=icon src={$src}//td
  +  td valign=topimg alt=fix class=icon src={$src}//td
 tdxsl:apply-templates//td
   /tr
 /xsl:template
  @@ -439,7 +439,7 @@
 xsl:template match=changelog/scode
   tr
 xsl:variable name=srcxsl:value-of 
select=$relative-path//images/code.gif/xsl:variable
  -  tdimg alt=code class=icon src={$src}//td
  +  td valign=topimg alt=code class=icon src={$src}//td
 tdxsl:apply-templates//td
   /tr
 /xsl:template
  
  
  
  1.1  jakarta-tomcat-connectors/jk/xdocs/changelog.xml
  
  Index: changelog.xml
  ===
  ?xml version=1.0?
  !DOCTYPE document [
!ENTITY project SYSTEM project.xml
  ]
  document url=changelog.html
  
project;
  
properties
  author email=[EMAIL PROTECTED]Mladen Turk/author
  titleChangelog/title
/properties
  
  body
  
  section name=Preface
p
This is the Changelog for Jakarta Tomcat Connectors. This changelog
does not contain all updates and fixes to the Tomcat connectors (yet).
It should contain fixes made only after November 10th 2004, when the
new documentation project for JK has been started.
/p
  /section
  
  section name=JK 1
br /
subsection name=Native
  changelog
update
Rewrite the logging by adding Trace options. (mturk)
/update
update
Added socket_timeout