]> git.pld-linux.org Git - packages/apache1.git/commitdiff
- updated
authormisi3k <misi3k@pld-linux.org>
Sat, 19 Jul 2003 09:51:22 +0000 (09:51 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    apache1-mod_ssl-addon.patch -> 1.3

apache1-mod_ssl-addon.patch

index fbc2890b51d60723c799d9108cf9f6ef391f11b5..a2bea5035f35f7d64ee34a2843c02d46acf12f1d 100644 (file)
@@ -39,9 +39,38 @@ Index: src/Configuration.tmpl
 +---------------------------------------------------------------------------
 | Add more beautiful optic to the status page table..
 +---------------------------------------------------------------------------
-Index: src/modules/standard/mod_status.c
---- src/modules/standard/mod_status.c  27 Mar 2002 15:23:06 -0000      1.1.1.14
-+++ src/modules/standard/mod_status.c  27 Mar 2002 15:30:03 -0000      1.11
+Index: htdocs/manual/mod/index.html.en
+--- htdocs/manual/mod/index.html.en    28 Jan 2002 19:21:43 -0000      1.1.1.2
++++ htdocs/manual/mod/index.html.en    28 Jan 2002 19:40:56 -0000      1.3
+@@ -101,6 +101,10 @@
+       <dd>Support for Netscape-like cookies. Replaced in Apache 1.2
+       by mod_usertrack</dd>
++      <dt><a href="mod_define.html">mod_define</a></dt>
++
++      <dd>Variable Definition for Arbitrary Directives</dd>
++
+       <dt><a href="mod_digest.html">mod_digest</a> Apache 1.1 and
+       up</dt>
+
++---------------------------------------------------------------------------
+| Add a hyperlink for the Define directives.
++---------------------------------------------------------------------------
+Index: htdocs/manual/mod/directives.html.en
+--- htdocs/manual/mod/directives.html.en       4 Oct 2002 11:50:01 -0000       1.1.1.4
++++ htdocs/manual/mod/directives.html.en       4 Oct 2002 11:54:56 -0000       1.5
+@@ -220,6 +220,8 @@
+       <li><a href="core.html#defaulttype">DefaultType</a></li>
++      <li><a href="mod_define.html#define">Define</a>
++
+       <li><a href="mod_access.html#deny">Deny</a></li>
+       <li><a href="core.html#directory">&lt;Directory&gt;</a></li>
+--- src/modules/standard/mod_status.c.orig     2003-02-03 18:13:29.000000000 +0100
++++ src/modules/standard/mod_status.c  2003-07-19 11:42:32.000000000 +0200
 @@ -484,12 +484,33 @@
            if (no_table_report)
                ap_rputs("<p><hr><h2>Server Details</h2>\n\n", r);
@@ -76,29 +105,33 @@ Index: src/modules/standard/mod_status.c
        }
  
        for (i = 0; i < HARD_SERVER_LIMIT; ++i) {
-@@ -607,14 +628,19 @@
-                               vhost->server_hostname) : "(unavailable)");
+@@ -618,18 +639,23 @@
                    }
                    else {              /* !no_table_report */
+                       if (score_record.status == SERVER_DEAD)
 +#ifndef NO_PRETTYPRINT
-+                      ap_rprintf(r,"<tr bgcolor=\"#ffffff\">");
++                       ap_rprintf(r,"<tr bgcolor=\"#ffffff\">");
 +#else
-+                      ap_rprintf(r,"<tr>");
++                       ap_rprintf(r,"<tr>");
 +#endif
-                       if (score_record.status == SERVER_DEAD)
+ #ifdef TPF
+                             if (kill(ps_record.pid, 0) == 0) {
+                                 /* on TPF show PIDs of the living dead */
+                                 ap_rprintf(r,
+-                                    "<tr><td><b>%d-%d</b><td>%d<td>%d/%lu/%lu",
++                                    "<td><b>%d-%d</b><td>-<td>%d/%lu/%lu",
+                                     i, (int) ps_record.generation,
+                                     (int) ps_record.pid,
+                                     (int) conn_lres, my_lres, lres);
+                             } else
+ #endif /* TPF */
                            ap_rprintf(r,
 -                              "<tr><td><b>%d-%d</b><td>-<td>%d/%lu/%lu",
 +                              "<td><b>%d-%d</b><td>-<td>%d/%lu/%lu",
                                i, (int) ps_record.generation,
                                (int) conn_lres, my_lres, lres);
                        else
-                           ap_rprintf(r,
--                              "<tr><td><b>%d-%d</b><td>%d<td>%d/%lu/%lu",
-+                              "<td><b>%d-%d</b><td>%d<td>%d/%lu/%lu",
-                               i, (int) ps_record.generation,
-                               (int) ps_record.pid, (int) conn_lres,
-                               my_lres, lres);
-@@ -674,12 +700,23 @@
+@@ -694,12 +720,23 @@
                            ap_rprintf(r,
                             "<td>?<td nowrap>?<td nowrap>..reading.. </tr>\n\n");
                        else
@@ -122,37 +155,3 @@ Index: src/modules/standard/mod_status.c
                    }           /* no_table_report */
                }                       /* !short_report */
            }                   /* if (<active child>) */
-
-+---------------------------------------------------------------------------
-| Add a hyperlink to the mod_define.html document.
-+---------------------------------------------------------------------------
-Index: htdocs/manual/mod/index.html.en
---- htdocs/manual/mod/index.html.en    28 Jan 2002 19:21:43 -0000      1.1.1.2
-+++ htdocs/manual/mod/index.html.en    28 Jan 2002 19:40:56 -0000      1.3
-@@ -101,6 +101,10 @@
-       <dd>Support for Netscape-like cookies. Replaced in Apache 1.2
-       by mod_usertrack</dd>
-+      <dt><a href="mod_define.html">mod_define</a></dt>
-+
-+      <dd>Variable Definition for Arbitrary Directives</dd>
-+
-       <dt><a href="mod_digest.html">mod_digest</a> Apache 1.1 and
-       up</dt>
-
-+---------------------------------------------------------------------------
-| Add a hyperlink for the Define directives.
-+---------------------------------------------------------------------------
-Index: htdocs/manual/mod/directives.html.en
---- htdocs/manual/mod/directives.html.en       4 Oct 2002 11:50:01 -0000       1.1.1.4
-+++ htdocs/manual/mod/directives.html.en       4 Oct 2002 11:54:56 -0000       1.5
-@@ -220,6 +220,8 @@
-       <li><a href="core.html#defaulttype">DefaultType</a></li>
-+      <li><a href="mod_define.html#define">Define</a>
-+
-       <li><a href="mod_access.html#deny">Deny</a></li>
-       <li><a href="core.html#directory">&lt;Directory&gt;</a></li>
This page took 0.06406 seconds and 4 git commands to generate.