martin | 1 Feb 2008 09:50
Picon
Favicon

svn commit: r617373 - /httpd/httpd/trunk/server/mpm_common.c

Author: martin
Date: Fri Feb  1 00:50:09 2008
New Revision: 617373

URL: http://svn.apache.org/viewvc?rev=617373&view=rev
Log:
Avoid core dumps by getting the signal_description only if
a process actually terminated on a signal. Update status
only on a valid wait response.

Modified:
    httpd/httpd/trunk/server/mpm_common.c

Modified: httpd/httpd/trunk/server/mpm_common.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm_common.c?rev=617373&r1=617372&r2=617373&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm_common.c (original)
+++ httpd/httpd/trunk/server/mpm_common.c Fri Feb  1 00:50:09 2008
 <at>  <at>  -138,7 +138,8  <at>  <at> 
     waitret = apr_proc_wait(&proc, &status, &why, APR_NOWAIT);
     if (waitret != APR_CHILD_NOTDONE) {
 #ifdef AP_MPM_WANT_PROCESS_CHILD_STATUS
-        ap_process_child_status(&proc, why, status);
+        if (waitret == APR_CHILD_DONE)
+            ap_process_child_status(&proc, why, status);
 #endif
         return 1;
     }
 <at>  <at>  -417,7 +418,7  <at>  <at> 
 int ap_process_child_status(apr_proc_t *pid, apr_exit_why_e why, int status)
(Continue reading)

lars | 1 Feb 2008 16:48
Picon
Favicon

svn commit: r617526 - in /httpd/site/trunk: docs/contributors/index.html docs/images/lars.jpg xdocs/contributors/index.xml xdocs/images/lars.jpg

Author: lars
Date: Fri Feb  1 07:48:17 2008
New Revision: 617526

URL: http://svn.apache.org/viewvc?rev=617526&view=rev
Log:
update

Removed:
    httpd/site/trunk/docs/images/lars.jpg
    httpd/site/trunk/xdocs/images/lars.jpg
Modified:
    httpd/site/trunk/docs/contributors/index.html
    httpd/site/trunk/xdocs/contributors/index.xml

Modified: httpd/site/trunk/docs/contributors/index.html
URL: http://svn.apache.org/viewvc/httpd/site/trunk/docs/contributors/index.html?rev=617526&r1=617525&r2=617526&view=diff
==============================================================================
--- httpd/site/trunk/docs/contributors/index.html (original)
+++ httpd/site/trunk/docs/contributors/index.html Fri Feb  1 07:48:17 2008
 <at>  <at>  -551,14 +551,11  <at>  <at> 
   Editor of <a href="http://www.apacheweek.com/">Apache Week</a><br />
 </p>
 <p>
-<img src="../images/lars.jpg" align="right" alt="[photo]" width="72" height="102" />
 <strong>Name:</strong> <a name="lars">Lars Eilebrecht</a><br />
 <strong>Email:</strong> lars <at> apache.org<br />
 <strong>Organization:</strong> Ciphire Labs<br />
-<strong>Occupation:</strong> Senior Security Officer<br />
+<strong>Occupation:</strong> Director Security Solutions<br />
(Continue reading)

jim | 1 Feb 2008 18:07
Picon
Favicon

svn commit: r617559 - /httpd/httpd/branches/2.2.x/STATUS

Author: jim
Date: Fri Feb  1 09:07:46 2008
New Revision: 617559

URL: http://svn.apache.org/viewvc?rev=617559&view=rev
Log:
Backport proposal: URL: http://svn.apache.org/viewvc?rev=616517&view=rev

Modified:
    httpd/httpd/branches/2.2.x/STATUS

Modified: httpd/httpd/branches/2.2.x/STATUS
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/STATUS?rev=617559&r1=617558&r2=617559&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/STATUS (original)
+++ httpd/httpd/branches/2.2.x/STATUS Fri Feb  1 09:07:46 2008
 <at>  <at>  -154,6 +154,15  <at>  <at> 
        Trunk version works (minus CHANGES conflict)
     +1: 

+  * mod_proxy: Fix processing of chunked responses if
+    Connection: Transfer-Encoding is set in the response of the
+    proxied system.  PR: 44311
+      Trunk version of patch:
+       http://svn.apache.org/viewvc?view=rev&revision=616517
+      Backport version of 2.2.x of patch:
+       Trunk version works (minus CHANGES conflict)
+    +1: jim
+
 PATCHES/ISSUES THAT ARE STALLED
(Continue reading)

rpluem | 1 Feb 2008 22:21
Picon
Favicon

svn commit: r617653 - /httpd/httpd/trunk/modules/proxy/mod_proxy_http.c

Author: rpluem
Date: Fri Feb  1 13:21:01 2008
New Revision: 617653

URL: http://svn.apache.org/viewvc?rev=617653&view=rev
Log:
* Fix comment. No functional change.

Modified:
    httpd/httpd/trunk/modules/proxy/mod_proxy_http.c

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_http.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_http.c?rev=617653&r1=617652&r2=617653&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_http.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_http.c Fri Feb  1 13:21:01 2008
 <at>  <at>  -1610,7 +1610,7  <at>  <at> 
             /*
              * Restore Transfer-Encoding header from response if we saved
              * one before and there is none left. We need it for the
-             * ap_http_filter. See below.
+             * ap_http_filter. See above.
              */
             if (te && !apr_table_get(rp->headers_in, "Transfer-Encoding")) {
                 apr_table_add(rp->headers_in, "Transfer-Encoding", te);

rpluem | 1 Feb 2008 22:27
Picon
Favicon

svn commit: r617656 - /httpd/httpd/branches/2.2.x/STATUS

Author: rpluem
Date: Fri Feb  1 13:27:10 2008
New Revision: 617656

URL: http://svn.apache.org/viewvc?rev=617656&view=rev
Log:
* Add non functional comment patch and vote.

Modified:
    httpd/httpd/branches/2.2.x/STATUS

Modified: httpd/httpd/branches/2.2.x/STATUS
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/STATUS?rev=617656&r1=617655&r2=617656&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/STATUS (original)
+++ httpd/httpd/branches/2.2.x/STATUS Fri Feb  1 13:27:10 2008
 <at>  <at>  -159,9 +159,10  <at>  <at> 
     proxied system.  PR: 44311
       Trunk version of patch:
        http://svn.apache.org/viewvc?view=rev&revision=616517
+       http://svn.apache.org/viewvc?view=rev&revision=617653
       Backport version of 2.2.x of patch:
        Trunk version works (minus CHANGES conflict)
-    +1: jim
+    +1: jim, rpluem

 PATCHES/ISSUES THAT ARE STALLED

mturk | 1 Feb 2008 23:04
Picon
Favicon
Gravatar

svn commit: r617672 - /httpd/httpd/branches/2.2.x/STATUS

Author: mturk
Date: Fri Feb  1 14:04:05 2008
New Revision: 617672

URL: http://svn.apache.org/viewvc?rev=617672&view=rev
Log:
Cast some votes for checked patches. Although I didn't check the comment patch :)

Modified:
    httpd/httpd/branches/2.2.x/STATUS

Modified: httpd/httpd/branches/2.2.x/STATUS
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/STATUS?rev=617672&r1=617671&r2=617672&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/STATUS (original)
+++ httpd/httpd/branches/2.2.x/STATUS Fri Feb  1 14:04:05 2008
 <at>  <at>  -108,7 +108,7  <at>  <at> 
          http://svn.apache.org/viewvc?rev=606806&view=rev
       Backport version for 2.2.x of patch:
          http://people.apache.org/~fuankg/diffs/sslport.diff
-      +1: fuankg, wrowe
+      +1: fuankg, wrowe, mturk
       wrowe notes; Win32 is already ready for this, and there's no rush
       to push this into the immediate next-release.

 <at>  <at>  -162,7 +162,7  <at>  <at> 
        http://svn.apache.org/viewvc?view=rev&revision=617653
       Backport version of 2.2.x of patch:
        Trunk version works (minus CHANGES conflict)
-    +1: jim, rpluem
(Continue reading)

rpluem | 1 Feb 2008 23:38
Picon
Favicon

svn commit: r617683 - /httpd/httpd/branches/2.2.x/STATUS

Author: rpluem
Date: Fri Feb  1 14:38:20 2008
New Revision: 617683

URL: http://svn.apache.org/viewvc?rev=617683&view=rev
Log:
* Promote

Modified:
    httpd/httpd/branches/2.2.x/STATUS

Modified: httpd/httpd/branches/2.2.x/STATUS
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/STATUS?rev=617683&r1=617682&r2=617683&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/STATUS (original)
+++ httpd/httpd/branches/2.2.x/STATUS Fri Feb  1 14:38:20 2008
 <at>  <at>  -81,6 +81,25  <at>  <at> 
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]

+   * configure / install: Make https port configurable.
+      Trunk version of patch:
+         http://svn.apache.org/viewvc?rev=606316&view=rev
+         http://svn.apache.org/viewvc?rev=606806&view=rev
+      Backport version for 2.2.x of patch:
+         http://people.apache.org/~fuankg/diffs/sslport.diff
+      +1: fuankg, wrowe, mturk
+      wrowe notes; Win32 is already ready for this, and there's no rush
+      to push this into the immediate next-release.
+
(Continue reading)

rpluem | 1 Feb 2008 23:42
Picon
Favicon

svn commit: r617686 - in /httpd/httpd/branches/2.2.x: CHANGES STATUS modules/proxy/mod_proxy_http.c

Author: rpluem
Date: Fri Feb  1 14:42:08 2008
New Revision: 617686

URL: http://svn.apache.org/viewvc?rev=617686&view=rev
Log:
Merge r616517, r617653 from trunk:

* Fix processing of chunked responses if Connection: Transfer-Encoding is
  set in the response of the proxied system.

PR: 44311
Submitted by: rpluem
Reviewed by: jim, rpluem, mturk

Modified:
    httpd/httpd/branches/2.2.x/CHANGES
    httpd/httpd/branches/2.2.x/STATUS
    httpd/httpd/branches/2.2.x/modules/proxy/mod_proxy_http.c

Modified: httpd/httpd/branches/2.2.x/CHANGES
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/CHANGES?rev=617686&r1=617685&r2=617686&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/CHANGES [utf-8] (original)
+++ httpd/httpd/branches/2.2.x/CHANGES [utf-8] Fri Feb  1 14:42:08 2008
 <at>  <at>  -1,6 +1,10  <at>  <at> 
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.2.9

+  *) mod_proxy_http: Fix processing of chunked responses if
(Continue reading)

mjc | 2 Feb 2008 09:27
Picon
Favicon

svn commit: r617769 - /httpd/httpd/branches/2.0.x/CHANGES

Author: mjc
Date: Sat Feb  2 00:27:36 2008
New Revision: 617769

URL: http://svn.apache.org/viewvc?rev=617769&view=rev
Log:
mod_imap in 2.0 not mod_imagemap

Modified:
    httpd/httpd/branches/2.0.x/CHANGES

Modified: httpd/httpd/branches/2.0.x/CHANGES
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/CHANGES?rev=617769&r1=617768&r2=617769&view=diff
==============================================================================
--- httpd/httpd/branches/2.0.x/CHANGES [utf-8] (original)
+++ httpd/httpd/branches/2.0.x/CHANGES [utf-8] Sat Feb  2 00:27:36 2008
 <at>  <at>  -20,7 +20,7  <at>  <at> 
      Reported by SecurityReason.  [Mark Cox, Joe Orton]

   *) SECURITY: CVE-2007-5000 (cve.mitre.org)
-     mod_imagemap: Fix a cross-site scripting issue.  Reported by JPCERT.
+     mod_imap: Fix a cross-site scripting issue.  Reported by JPCERT.
      [Joe Orton]

   *) Introduce the ProxyFtpDirCharset directive, allowing the administrator

rpluem | 2 Feb 2008 17:35
Picon
Favicon

svn commit: r617822 - in /httpd/httpd/trunk: CHANGES modules/proxy/mod_proxy_ajp.c

Author: rpluem
Date: Sat Feb  2 08:35:40 2008
New Revision: 617822

URL: http://svn.apache.org/viewvc?rev=617822&view=rev
Log:
* Do not retry a request in the case that we either failed to sent a part of the
  request body or if the request is not idempotent.

PR: 44334

Modified:
    httpd/httpd/trunk/CHANGES
    httpd/httpd/trunk/modules/proxy/mod_proxy_ajp.c

Modified: httpd/httpd/trunk/CHANGES
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=617822&r1=617821&r2=617822&view=diff
==============================================================================
--- httpd/httpd/trunk/CHANGES [utf-8] (original)
+++ httpd/httpd/trunk/CHANGES [utf-8] Sat Feb  2 08:35:40 2008
 <at>  <at>  -2,6 +2,10  <at>  <at> 
 Changes with Apache 2.3.0
 [ When backported to 2.2.x, remove entry from this file ]

+  *) mod_proxy_ajp: Do not retry request in the case that we either failed to
+     sent a part of the request body or if the request is not idempotent.
+     PR 44334 [Ruediger Pluem]
+
   *) mod_proxy_http: Fix processing of chunked responses if
      Connection: Transfer-Encoding is set in the response of the proxied
(Continue reading)


Gmane