]> git.pld-linux.org Git - packages/apache.git/blame - apache-branch.patch
- fix pretrans for very first install; rel 9
[packages/apache.git] / apache-branch.patch
CommitLineData
54f125ce
ER
1diff -ur httpd-2.2.0/Apache.dsw httpd-2.2.0-branch/Apache.dsw
2--- httpd-2.2.0/Apache.dsw 2005-10-09 17:31:40.000000000 +0300
3+++ httpd-2.2.0-branch/Apache.dsw 2005-12-22 04:02:47.000000000 +0200
4@@ -81,6 +81,9 @@
5 Project_Dep_Name mod_authn_anon
6 End Project Dependency
7 Begin Project Dependency
8+ Project_Dep_Name mod_authn_dbd
9+ End Project Dependency
10+ Begin Project Dependency
11 Project_Dep_Name mod_authn_dbm
12 End Project Dependency
13 Begin Project Dependency
14@@ -126,6 +129,9 @@
15 Project_Dep_Name mod_dav_fs
16 End Project Dependency
17 Begin Project Dependency
18+ Project_Dep_Name mod_dbd
19+ End Project Dependency
20+ Begin Project Dependency
21 Project_Dep_Name mod_dir
22 End Project Dependency
23 Begin Project Dependency
24@@ -747,6 +753,33 @@
25
26 ###############################################################################
27
28+Project: "mod_authn_dbd"=.\modules\aaa\mod_authn_dbd.dsp - Package Owner=<4>
29+
30+Package=<5>
31+{{{
32+}}}
33+
34+Package=<4>
35+{{{
36+ Begin Project Dependency
37+ Project_Dep_Name libapr
38+ End Project Dependency
39+ Begin Project Dependency
40+ Project_Dep_Name libaprutil
41+ End Project Dependency
42+ Begin Project Dependency
43+ Project_Dep_Name libhttpd
44+ End Project Dependency
45+ Begin Project Dependency
46+ Project_Dep_Name mod_auth_basic
47+ End Project Dependency
48+ Begin Project Dependency
49+ Project_Dep_Name mod_dbd
50+ End Project Dependency
51+}}}
52+
53+###############################################################################
54+
55 Project: "mod_authn_dbm"=.\modules\aaa\mod_authn_dbm.dsp - Package Owner=<4>
56
57 Package=<5>
58@@ -1110,6 +1143,27 @@
59
60 ###############################################################################
61
62+Project: "mod_dbd"=.\modules\database\mod_dbd.dsp - Package Owner=<4>
63+
64+Package=<5>
65+{{{
66+}}}
67+
68+Package=<4>
69+{{{
70+ Begin Project Dependency
71+ Project_Dep_Name libapr
72+ End Project Dependency
73+ Begin Project Dependency
74+ Project_Dep_Name libaprutil
75+ End Project Dependency
76+ Begin Project Dependency
77+ Project_Dep_Name libhttpd
78+ End Project Dependency
79+}}}
80+
81+###############################################################################
82+
83 Project: "mod_deflate"=.\modules\filters\mod_deflate.dsp - Package Owner=<4>
84
85 Package=<5>
86diff -ur httpd-2.2.0/BuildBin.dsp httpd-2.2.0-branch/BuildBin.dsp
87--- httpd-2.2.0/BuildBin.dsp 2005-04-09 09:07:58.000000000 +0300
88+++ httpd-2.2.0-branch/BuildBin.dsp 2005-12-22 04:02:47.000000000 +0200
89@@ -33,15 +33,15 @@
90 # PROP BASE Intermediate_Dir ""
91 # PROP BASE Cmd_Line "NMAKE /f makefile.win"
92 # PROP BASE Rebuild_Opt "/a"
93-# PROP BASE Target_File "\Apache21\bin\httpd.exe"
94+# PROP BASE Target_File "\Apache2\bin\httpd.exe"
95 # PROP BASE Bsc_Name ".\Browse\BuildBin.bsc"
96 # PROP BASE Target_Dir ""
97 # PROP Use_Debug_Libraries 0
98 # PROP Output_Dir ""
99 # PROP Intermediate_Dir ""
100-# PROP Cmd_Line "NMAKE /f makefile.win INSTDIR="\Apache21" LONG=Release _tryssl _tryzlib _dummy"
101+# PROP Cmd_Line "NMAKE /f makefile.win INSTDIR="\Apache2" LONG=Release _tryssl _tryzlib _dummy"
102 # PROP Rebuild_Opt ""
103-# PROP Target_File "\Apache21\bin\httpd.exe"
104+# PROP Target_File "\Apache2\bin\httpd.exe"
105 # PROP Bsc_Name ".\Browse\httpd.bsc"
106 # PROP Target_Dir ""
107
108@@ -52,15 +52,15 @@
109 # PROP BASE Intermediate_Dir ""
110 # PROP BASE Cmd_Line "NMAKE /f makefile.win"
111 # PROP BASE Rebuild_Opt "/a"
112-# PROP BASE Target_File "\Apache21\bin\httpd.exe"
113+# PROP BASE Target_File "\Apache2\bin\httpd.exe"
114 # PROP BASE Bsc_Name ".\Browse\BuildBin.bsc"
115 # PROP BASE Target_Dir ""
116 # PROP Use_Debug_Libraries 1
117 # PROP Output_Dir ""
118 # PROP Intermediate_Dir ""
119-# PROP Cmd_Line "NMAKE /f makefile.win INSTDIR="\Apache21" LONG=Debug _tryssl _tryzlib _dummy"
120+# PROP Cmd_Line "NMAKE /f makefile.win INSTDIR="\Apache2" LONG=Debug _tryssl _tryzlib _dummy"
121 # PROP Rebuild_Opt ""
122-# PROP Target_File "\Apache21\bin\httpd.exe"
123+# PROP Target_File "\Apache2\bin\httpd.exe"
124 # PROP Bsc_Name ".\Browse\httpd.bsc"
125 # PROP Target_Dir ""
126
127diff -ur httpd-2.2.0/CHANGES httpd-2.2.0-branch/CHANGES
128--- httpd-2.2.0/CHANGES 2005-11-29 10:00:39.000000000 +0200
129+++ httpd-2.2.0-branch/CHANGES 2005-12-22 04:02:47.000000000 +0200
130@@ -1,4 +1,29 @@
131 -*- coding: utf-8 -*-
132+Changes with Apache 2.2.1
133+
134+ *) Chunk filter: Fix chunk filter to create correct chunks in the case that
135+ a flush bucket is surrounded by data buckets. [Ruediger Pluem]
136+
137+ *) SECURITY: CVE-2005-3352 (cve.mitre.org)
138+ mod_imagemap: Escape untrusted referer header before outputting
139+ in HTML to avoid potential cross-site scripting. Change also
140+ made to ap_escape_html so we escape quotes. Reported by JPCERT.
141+ [Mark Cox]
142+
143+ *) Fix syntax error in httpd.h with strict compilers. PR 38740.
144+ [Per Olausson <pao darkheim.freeserve.co.uk>]
145+
146+ *) Preserve the Content-Length header for a proxied HEAD response.
147+ PR 18757. [Greg Ames]
148+
149+ *) Fix recursive ErrorDocument handling. PR 36090.
150+ [Chris Darroch <chrisd pearsoncmg.com>]
151+
152+ *) Don't hang on error return from post_read_request. PR37790 [Nick Kew]
153+
154+ *) Fix off-by-one error in proxy_balancer. PR37753
155+ [Kazuhiro Osawa <ko yappo ne jp>]
156+
157 Changes with Apache 2.2.0
158
159 *) mod_negotiation: Minor performance tweak by reusing already calculated
160diff -ur httpd-2.2.0/InstallBin.dsp httpd-2.2.0-branch/InstallBin.dsp
161--- httpd-2.2.0/InstallBin.dsp 2005-04-09 09:07:58.000000000 +0300
162+++ httpd-2.2.0-branch/InstallBin.dsp 2005-12-22 04:02:45.000000000 +0200
91ce595d
AM
163@@ -33,15 +33,15 @@
164 # PROP BASE Intermediate_Dir "Release"
165 # PROP BASE Cmd_Line "NMAKE /f InstallBin.mak"
166 # PROP BASE Rebuild_Opt "/a"
167-# PROP BASE Target_File "\Apache21\bin\httpd.exe"
168+# PROP BASE Target_File "\Apache2\bin\httpd.exe"
169 # PROP BASE Bsc_Name "InstallBin.bsc"
170 # PROP BASE Target_Dir ""
171 # PROP Use_Debug_Libraries 0
172 # PROP Output_Dir "Release"
173 # PROP Intermediate_Dir "Release"
174-# PROP Cmd_Line "NMAKE /f makefile.win INSTDIR="\Apache21" SHORT=R LONG=Release _install"
175+# PROP Cmd_Line "NMAKE /f makefile.win INSTDIR="\Apache2" SHORT=R LONG=Release _install"
176 # PROP Rebuild_Opt ""
177-# PROP Target_File "\Apache21\bin\httpd.exe"
178+# PROP Target_File "\Apache2\bin\httpd.exe"
179 # PROP Bsc_Name "Browse\httpd.bsc"
180 # PROP Target_Dir ""
181
182@@ -52,15 +52,15 @@
183 # PROP BASE Intermediate_Dir "Debug"
184 # PROP BASE Cmd_Line "NMAKE /f InstallBin.mak"
185 # PROP BASE Rebuild_Opt "/a"
186-# PROP BASE Target_File "\Apache21\bin\httpd.exe"
187+# PROP BASE Target_File "\Apache2\bin\httpd.exe"
188 # PROP BASE Bsc_Name "InstallBin.bsc"
189 # PROP BASE Target_Dir ""
190 # PROP Use_Debug_Libraries 1
191 # PROP Output_Dir "Debug"
192 # PROP Intermediate_Dir "Debug"
193-# PROP Cmd_Line "NMAKE /f makefile.win INSTDIR="\Apache21" SHORT=D LONG=Debug _install"
194+# PROP Cmd_Line "NMAKE /f makefile.win INSTDIR="\Apache2" SHORT=D LONG=Debug _install"
195 # PROP Rebuild_Opt ""
196-# PROP Target_File "\Apache21\bin\httpd.exe"
197+# PROP Target_File "\Apache2\bin\httpd.exe"
198 # PROP Bsc_Name ""
199 # PROP Target_Dir ""
200
54f125ce
ER
201diff -ur httpd-2.2.0/LAYOUT httpd-2.2.0-branch/LAYOUT
202--- httpd-2.2.0/LAYOUT 2005-11-29 10:00:39.000000000 +0200
203+++ httpd-2.2.0-branch/LAYOUT 2005-12-22 04:02:47.000000000 +0200
204@@ -163,11 +163,7 @@
91ce595d 205
54f125ce 206 experimental/ ...........
91ce595d 207
54f125ce 208- leader/ .................
91ce595d 209-
54f125ce 210- perchild/ ...............
91ce595d 211-
54f125ce
ER
212- threadpool/ .............
213+ event/ .................
91ce595d 214
54f125ce 215 mpmt_os2/ ...............
91ce595d 216
54f125ce
ER
217diff -ur httpd-2.2.0/Makefile.win httpd-2.2.0-branch/Makefile.win
218--- httpd-2.2.0/Makefile.win 2005-09-21 18:14:35.000000000 +0300
219+++ httpd-2.2.0-branch/Makefile.win 2005-12-22 04:02:47.000000000 +0200
220@@ -19,7 +19,7 @@
91ce595d 221 #
54f125ce 222 # For example;
91ce595d 223 #
54f125ce
ER
224-# nmake /f Makefile.win PORT=80 INSTDIR="d:\Program Files\Apache" installr
225+# nmake -f Makefile.win PORT=80 INSTDIR="d:\Program Files\Apache" installr
91ce595d 226 #
54f125ce
ER
227 # Be aware that certain awk's will not accept backslahed names,
228 # so the server root should be given in forward slashes (quoted),
229@@ -33,10 +33,10 @@
91ce595d 230
54f125ce
ER
231 !IF !EXIST("srclib\apr") || !EXIST("srclib\apr-util") || !EXIST("srclib\apr-iconv")
232 !MESSAGE Please check out or download and unpack the Apache Portability Runtime
233-!MESSAGE sources (apr, apr-iconv and apr-util) into your $(INSTDIR)\srclib dir.
234+!MESSAGE sources (apr, apr-iconv and apr-util) into your srclib dir.
235 !MESSAGE Apache cannot build without these libraries!
236 !MESSAGE
237-!ERROR Need $(INSTDIR)\srclib\ apr, apr-iconv and apr-util
238+!ERROR Need srclib\ apr, apr-iconv and apr-util
239 !ENDIF
91ce595d 240
54f125ce
ER
241 # Note; _tryssl: is only used by the msvc developer studio environment to 'fix up'
242@@ -119,18 +119,18 @@
243 !MESSAGE SERVERNAME = $(SERVERNAME)
244 !MESSAGE PORT = $(PORT)
245 !MESSAGE
246-!MESSAGE To change these options use 'nmake /f Makefile.win [option=value]'
247-!MESSAGE Example: nmake /f Makefile.win PORT=8080
248+!MESSAGE To change these options use 'nmake -f Makefile.win [option=value]'
249+!MESSAGE Example: nmake -f Makefile.win PORT=8080
250 !MESSAGE
251 !MESSAGE
252 !ENDIF
91ce595d 253
54f125ce
ER
254 !IFNDEF MAKEOPT
255 # Only default the behavior if MAKEOPT= is omitted
256-!IF "$(MAKE)" == "NMAKE"
257+!IFDEF _NMAKE_VER
258 # Microsoft NMake options
259 MAKEOPT=-nologo
260-!ELSEIF "($MAKE)" == "make"
261+!ELSEIF "$(MAKE)" == "make"
262 # Borland make options? Not really supported (yet)
263 MAKEOPT=-s -N
264 !ENDIF
265@@ -178,14 +178,14 @@
266 $(MAKE) $(MAKEOPT) -f apriconv.mak CFG="apriconv - Win32 $(LONG)" RECURSE=0 $(CTARGET)
267 $(MAKE) $(MAKEOPT) -f libapriconv.mak CFG="libapriconv - Win32 $(LONG)" RECURSE=0 $(CTARGET)
268 !IF "$(CTARGET)" == "CLEAN"
269- $(MAKE) $(MAKEOPT) /f build\modules.mk.win clean \
270+ $(MAKE) $(MAKEOPT) -f build\modules.mk.win clean \
271 BUILD_MODE=$(LONG) BIND_MODE=shared API_SOURCE=.
272 !ELSE
273 cd ccs
274- $(MAKE) /nologo /f Makefile.win all \
275+ $(MAKE) $(MAKEOPT) -f Makefile.win all \
276 BUILD_MODE=$(LONG) BIND_MODE=shared
277 cd ..\ces
278- $(MAKE) /nologo /f Makefile.win all \
279+ $(MAKE) $(MAKEOPT) -f Makefile.win all \
280 BUILD_MODE=$(LONG) BIND_MODE=shared
281 cd ..
282 !ENDIF
283@@ -216,6 +216,7 @@
284 $(MAKE) $(MAKEOPT) -f mod_auth_basic.mak CFG="mod_auth_basic - Win32 $(LONG)" RECURSE=0 $(CTARGET)
285 $(MAKE) $(MAKEOPT) -f mod_auth_digest.mak CFG="mod_auth_digest - Win32 $(LONG)" RECURSE=0 $(CTARGET)
286 $(MAKE) $(MAKEOPT) -f mod_authn_anon.mak CFG="mod_authn_anon - Win32 $(LONG)" RECURSE=0 $(CTARGET)
287+ $(MAKE) $(MAKEOPT) -f mod_authn_dbd.mak CFG="mod_authn_dbd - Win32 $(LONG)" RECURSE=0 $(CTARGET)
288 $(MAKE) $(MAKEOPT) -f mod_authn_dbm.mak CFG="mod_authn_dbm - Win32 $(LONG)" RECURSE=0 $(CTARGET)
289 $(MAKE) $(MAKEOPT) -f mod_authn_default.mak CFG="mod_authn_default - Win32 $(LONG)" RECURSE=0 $(CTARGET)
290 $(MAKE) $(MAKEOPT) -f mod_authn_file.mak CFG="mod_authn_file - Win32 $(LONG)" RECURSE=0 $(CTARGET)
291@@ -235,6 +236,9 @@
292 $(MAKE) $(MAKEOPT) -f mod_mem_cache.mak CFG="mod_mem_cache - Win32 $(LONG)" RECURSE=0 $(CTARGET)
293 $(MAKE) $(MAKEOPT) -f mod_disk_cache.mak CFG="mod_disk_cache - Win32 $(LONG)" RECURSE=0 $(CTARGET)
294 cd ..\..
295+ cd modules\database
296+ $(MAKE) $(MAKEOPT) -f mod_dbd.mak CFG="mod_dbd - Win32 $(LONG)" RECURSE=0 $(CTARGET)
297+ cd ..\..
298 cd modules\dav\main
299 $(MAKE) $(MAKEOPT) -f mod_dav.mak CFG="mod_dav - Win32 $(LONG)" RECURSE=0 $(CTARGET)
300 cd ..\..\..
301@@ -246,9 +250,9 @@
302 $(MAKE) $(MAKEOPT) -f mod_dumpio.mak CFG="mod_dumpio - Win32 $(LONG)" RECURSE=0 $(CTARGET)
303 cd ..\..
304 cd modules\experimental
305- $(MAKE) $(MAKEOPT) -f mod_charset_lite.mak CFG="mod_charset_lite - Win32 $(LONG)" RECURSE=0 $(CTARGET)
306 cd ..\..
307 cd modules\filters
308+ $(MAKE) $(MAKEOPT) -f mod_charset_lite.mak CFG="mod_charset_lite - Win32 $(LONG)" RECURSE=0 $(CTARGET)
309 !IF EXIST("srclib\zlib")
310 $(MAKE) $(MAKEOPT) -f mod_deflate.mak CFG="mod_deflate - Win32 $(LONG)" RECURSE=0 $(CTARGET)
311 !ENDIF
312@@ -356,7 +360,7 @@
313 "BuildBin - Win32 $(LONG)" $(CTARGET)
314 !IF "$(CTARGET)" == "/CLEAN"
315 @cd srclib\apr-iconv
316- @$(MAKE) $(MAKEOPT) /f build\modules.mk.win clean \
317+ @$(MAKE) $(MAKEOPT) -f build\modules.mk.win clean \
318 BUILD_MODE=$(LONG) BIND_MODE=shared API_SOURCE=.
319 @cd ..\..
320 !ENDIF
321@@ -382,6 +386,7 @@
322 copy modules\aaa\$(LONG)\mod_auth_basic.$(src_so) "$(inst_so)" <.y
323 copy modules\aaa\$(LONG)\mod_auth_digest.$(src_so) "$(inst_so)" <.y
324 copy modules\aaa\$(LONG)\mod_authn_anon.$(src_so) "$(inst_so)" <.y
325+ copy modules\aaa\$(LONG)\mod_authn_dbd.$(src_so) "$(inst_so)" <.y
326 copy modules\aaa\$(LONG)\mod_authn_dbm.$(src_so) "$(inst_so)" <.y
327 copy modules\aaa\$(LONG)\mod_authn_default.$(src_so) "$(inst_so)" <.y
328 copy modules\aaa\$(LONG)\mod_authn_file.$(src_so) "$(inst_so)" <.y
329@@ -396,11 +401,12 @@
330 copy modules\cache\$(LONG)\mod_file_cache.$(src_so) "$(inst_so)" <.y
331 copy modules\cache\$(LONG)\mod_mem_cache.$(src_so) "$(inst_so)" <.y
332 copy modules\cache\$(LONG)\mod_disk_cache.$(src_so) "$(inst_so)" <.y
333+ copy modules\database\$(LONG)\mod_dbd.$(src_so) "$(inst_so)" <.y
334 copy modules\dav\fs\$(LONG)\mod_dav_fs.$(src_so) "$(inst_so)" <.y
335 copy modules\dav\main\$(LONG)\mod_dav.$(src_so) "$(inst_so)" <.y
336 copy modules\debug\$(LONG)\mod_bucketeer.$(src_so) "$(inst_so)" <.y
337 copy modules\debug\$(LONG)\mod_dumpio.$(src_so) "$(inst_so)" <.y
338- copy modules\experimental\$(LONG)\mod_charset_lite.$(src_so) "$(inst_so)" <.y
339+ copy modules\filters\$(LONG)\mod_charset_lite.$(src_so) "$(inst_so)" <.y
340 !IF EXIST("srclib\zlib")
341 copy modules\filters\$(LONG)\mod_deflate.$(src_so) "$(inst_so)" <.y
342 !IF EXIST("srclib\zlib\zlib1.$(src_dll)")
343diff -ur httpd-2.2.0/README httpd-2.2.0-branch/README
344--- httpd-2.2.0/README 2005-11-29 10:00:39.000000000 +0200
345+++ httpd-2.2.0-branch/README 2005-12-22 04:02:47.000000000 +0200
346@@ -16,15 +16,15 @@
347 ------------------
348
349 Details of the latest version can be found on the Apache HTTP
350- server project page under http://httpd.apache.org/.
351+ server project page under <http://httpd.apache.org/>.
352
353 Documentation
354 -------------
355
356 The documentation available as of the date of this release is
357 included in HTML format in the docs/manual/ directory. The most
358- up-to-date documentation can be found at
359- http://httpd.apache.org/docs-2.2/.
360+ up-to-date documentation for the 2.2.x releases can be found at
361+ <http://httpd.apache.org/docs-2.2/>.
362
363 Installation
364 ------------
365@@ -43,28 +43,28 @@
366 o If you want to be informed about new code releases, bug fixes,
367 security fixes, general news and information about the Apache server
368 subscribe to the apache-announce mailing list as described under
369- http://httpd.apache.org/lists.html#http-announce
370+ <http://httpd.apache.org/lists.html#http-announce>
371
372 o If you want freely available support for running Apache please join the
373 Apache user community by subscribing to Users Mailing List at
374- http://httpd.apache.org/userslist.html or one of the following USENET
375- newsgroups:
376- comp.infosystems.www.servers.unix
377- comp.infosystems.www.servers.ms-windows
378+ <http://httpd.apache.org/userslist.html> or one of the following
379+ USENET newsgroups:
380+ comp.infosystems.www.servers.unix
381+ comp.infosystems.www.servers.ms-windows
382 Also available at:
383- http://groups.google.com/groups?group=comp.infosystems.www.servers
384+ <http://groups.google.com/groups?group=comp.infosystems.www.servers>
385
386 o If you want commercial support for running Apache please contact
387 one of the companies and contractors which are listed at
388- http://www.apache.org/info/support.cgi
389+ <http://www.apache.org/info/support.cgi>
390
391 o If you have a concrete bug report for Apache please go to the
392 Apache Group Bug Database and submit your report:
393- http://httpd.apache.org/bug_report.html
394+ <http://httpd.apache.org/bug_report.html>
395
396 o If you want to participate in actively developing Apache please
397 subscribe to the `dev@httpd.apache.org' mailing list as described at
398- http://www.apache.org/lists.html#http-dev
399+ <http://httpd.apache.org/lists.html#http-dev>
400
401 Acknowledgments
402 ----------------
403diff -ur httpd-2.2.0/docs/conf/extra/httpd-mpm.conf.in httpd-2.2.0-branch/docs/conf/extra/httpd-mpm.conf.in
404--- httpd-2.2.0/docs/conf/extra/httpd-mpm.conf.in 2005-11-20 06:44:18.000000000 +0200
405+++ httpd-2.2.0-branch/docs/conf/extra/httpd-mpm.conf.in 2005-12-22 04:02:45.000000000 +0200
406@@ -57,14 +57,6 @@
407 MaxRequestsPerChild 0
408 </IfModule>
409
410-# WinNT MPM
411-# ThreadsPerChild: constant number of worker threads in the server process
412-# MaxRequestsPerChild: maximum number of requests a server process serves
413-<IfModule mpm_winnt_module>
414- ThreadsPerChild 250
415- MaxRequestsPerChild 0
416-</IfModule>
417-
418 # BeOS MPM
419 # StartThreads: how many threads do we initially spawn?
420 # MaxClients: max number of threads we can have (1 thread == 1 client)
421diff -ur httpd-2.2.0/docs/conf/httpd-win.conf httpd-2.2.0-branch/docs/conf/httpd-win.conf
422--- httpd-2.2.0/docs/conf/httpd-win.conf 2005-11-13 19:17:31.000000000 +0200
423+++ httpd-2.2.0-branch/docs/conf/httpd-win.conf 2005-12-22 04:02:45.000000000 +0200
424@@ -161,6 +161,7 @@
425 AllowOverride None
426 Order deny,allow
427 Deny from all
428+ Satisfy all
429 </Directory>
430
431 #
432@@ -391,12 +392,6 @@
433 #
434 #AddHandler cgi-script .cgi
435
436- # For files that include their own HTTP headers:
437- #AddHandler send-as-is asis
438-
439- # For server-parsed imagemap files:
440- #AddHandler imap-file map
441-
442 # For type maps (negotiated resources):
443 #AddHandler type-map var
444
445diff -ur httpd-2.2.0/docs/conf/httpd.conf.in httpd-2.2.0-branch/docs/conf/httpd.conf.in
446--- httpd-2.2.0/docs/conf/httpd.conf.in 2005-11-13 19:17:31.000000000 +0200
447+++ httpd-2.2.0-branch/docs/conf/httpd.conf.in 2005-12-22 04:02:45.000000000 +0200
448@@ -53,7 +53,6 @@
449 #
450 @@LoadModule@@
451
452-<IfModule !mpm_winnt_module>
453 <IfModule !mpm_netware_module>
454 #
455 # If you wish httpd to run as a different user or group, you must run
456@@ -66,7 +65,6 @@
457 User daemon
458 Group daemon
459 </IfModule>
460-</IfModule>
461
462 # 'Main' server configuration
463 #
464@@ -173,6 +171,7 @@
465 <FilesMatch "^\.ht">
466 Order allow,deny
467 Deny from all
468+ Satisfy All
469 </FilesMatch>
470
471 #
472@@ -316,12 +315,6 @@
473 #
474 #AddHandler cgi-script .cgi
475
476- # For files that include their own HTTP headers:
477- #AddHandler send-as-is asis
478-
479- # For server-parsed imagemap files:
480- #AddHandler imap-file map
481-
482 # For type maps (negotiated resources):
483 #AddHandler type-map var
484
485diff -ur httpd-2.2.0/docs/manual/bind.html.de httpd-2.2.0-branch/docs/manual/bind.html.de
486--- httpd-2.2.0/docs/manual/bind.html.de 2005-11-13 08:38:36.000000000 +0200
487+++ httpd-2.2.0-branch/docs/manual/bind.html.de 2005-12-22 04:02:47.000000000 +0200
91ce595d
AM
488@@ -16,7 +16,7 @@
489 <img alt="" src="./images/feather.gif" /></div>
490 <div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="./images/left.gif" /></a></div>
491 <div id="path">
54f125ce
ER
492-<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP-Server</a> &gt; <a href="http://httpd.apache.org/docs-project/">Dokumentation</a> &gt; <a href="./">Version 2.2</a></div><div id="page-content"><div id="preamble"><h1>Anbindung</h1>
493+<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP-Server</a> &gt; <a href="http://httpd.apache.org/docs/">Dokumentation</a> &gt; <a href="./">Version 2.2</a></div><div id="page-content"><div id="preamble"><h1>Anbindung</h1>
91ce595d 494 <div class="toplang">
54f125ce
ER
495