]> git.pld-linux.org Git - packages/apache.git/blame - httpd-2.0.45-encode.patch
- disable itk by default (last release 2009), try mod_ruid2
[packages/apache.git] / httpd-2.0.45-encode.patch
CommitLineData
0e467b1f
AM
1* don't HTML-escape the SERVER_NAME variable
2* do escape SERVER_NAME in error docs
3* remove dates from error pages (#86474), since they won't be in the right
4language
5
7ed09ac4
ER
6diff -ur httpd-2.2.0.org/docs/error/include/bottom.html httpd-2.2.0/docs/error/include/bottom.html
7--- httpd-2.2.0.org/docs/error/include/bottom.html 2004-11-20 21:16:24.000000000 +0100
8+++ httpd-2.2.0/docs/error/include/bottom.html 2005-12-02 23:04:57.540690250 +0100
9@@ -5,10 +5,8 @@
0e467b1f
AM
10
11 <h2>Error <!--#echo encoding="none" var="REDIRECT_STATUS" --></h2>
12 <address>
13- <a href="/"><!--#echo var="SERVER_NAME" --></a><br />
7ed09ac4
ER
14- <!--#config timefmt="%c" -->
15- <span><!--#echo var="DATE_LOCAL" --><br />
16- <!--#echo var="SERVER_SOFTWARE" --></span>
0e467b1f 17+ <a href="/"><!--#echo encoding="entity" var="SERVER_NAME" --></a><br />
7ed09ac4 18+ <span><!--#echo var="SERVER_SOFTWARE" --></span>
0e467b1f
AM
19 </address>
20 </body>
7ed09ac4
ER
21 </html>
22diff -ur httpd-2.2.0.org/server/util_script.c httpd-2.2.0/server/util_script.c
50d8e16a
AM
23--- httpd-2.2.0.org/server/util_script.c 2005-11-10 16:20:05.000000000 +0100
24+++ httpd-2.2.0/server/util_script.c 2005-12-02 23:04:50.848272000 +0100
25@@ -224,8 +224,7 @@
0e467b1f
AM
26
27 apr_table_addn(e, "SERVER_SIGNATURE", ap_psignature("", r));
5aafc919 28 apr_table_addn(e, "SERVER_SOFTWARE", ap_get_server_banner());
0e467b1f
AM
29- apr_table_addn(e, "SERVER_NAME",
30- ap_escape_html(r->pool, ap_get_server_name(r)));
31+ apr_table_addn(e, "SERVER_NAME", ap_get_server_name(r));
50d8e16a 32 apr_table_addn(e, "SERVER_ADDR", r->connection->local_ip); /* Apache */
0e467b1f 33 apr_table_addn(e, "SERVER_PORT",
50d8e16a 34 apr_psprintf(r->pool, "%u", ap_get_server_port(r)));
This page took 0.033915 seconds and 4 git commands to generate.