Thu May 12 06:50:45 2011 UTC ()
Update "apache22" package to version 2.2.18. Changes since version 2.2.17:
- Log an error for failures to read a chunk-size, and return 408 instead
  413 when this is due to a read timeout.  This change also fixes some cases
  of two error documents being sent in the response for the same scenario.
  [Eric Covener] Bug 49167
- core: Only log a 408 if it is no keepalive timeout. Bug 39785
  [Ruediger Pluem,  Mark Montague <markmont umich.edu>]
- core: Treat timeout reading request as 408 error, not 400.
  Log 408 errors in access log as was done in Apache 1.3.x.
  Bug 39785 [Nobutaka Mantani <nobutaka nobutaka.org>, Stefan Fritsch,
  Dan Poirier]
- Core HTTP: disable keepalive when the Client has sent
  Expect: 100-continue
  but we respond directly with a non-100 response.  Keepalive here led
  to data from clients continuing being treated as a new request.
  Bug 47087.  [Nick Kew]
- htpasswd: Change the default algorithm for htpasswd to MD5 on all
  platforms. Crypt with its 8 character limit is not useful anymore;
  improve out of disk space handling (Bug 30877); print a warning if
  a password is truncated by crypt. [Stefan Fritsch]
- mod_win32: Added shebang check for '! so that .vbs scripts work as CGI.
  Win32's cscript interpreter can only use a single quote as comment char.
  [Guenter Knauf]
- configure: Fix htpasswd/htdbm libcrypt link errors with some newer
  linkers. [Stefan Fritsch]
- MinGW build improvements.  Bug 49535.  [John Vandenberg
  <jayvdb gmail.com>, Jeff Trawick]
- mod_ssl, ab: Support OpenSSL compiled without SSLv2 support.
  [Stefan Fritsch]
- core: AllowEncodedSlashes new option NoDecode to allow encoded slashes
  in request URL path info but not decode them. Bug 35256,
  Bug 46830.  [Dan Poirier]
- mod_rewrite: Allow to unset environment variables. Bug 50746.
  [Rainer Jung]
- suEXEC: Add Suexec directive to disable suEXEC without renaming the
  binary (Suexec Off), or force startup failure if suEXEC is required
  but not supported (Suexec On).  [Jeff Trawick]
- mod_proxy: Put the worker in error state if the SSL handshake with the
  backend fails. Bug 50332.
  [Daniel Ruggeri <DRuggeri primary.net>, Ruediger Pluem]
- prefork: Update MPM state in children during a graceful restart.
  Allow the HTTP connection handling loop to terminate early
  during a graceful restart.  Bug 41743.
  [Andrew Punch <andrew.punch 247realmedia.com>]
- mod_ssl: Correctly read full lines in input filter when the line is
  incomplete during first read. Bug 50481. [Ruediger Pluem]
- mod_autoindex: Merge IndexOptions from server to directory context when
  the directory has no mod_autoindex directives. Bug 47766. [Eric Covener]
- mod_cache: Make sure that we never allow a 304 Not Modified response
  that we asked for to leak to the client should the 304 response be
  uncacheable. Bug 45341 [Graham Leggett]
- mod_dav: Send 400 error if malformed Content-Range header is received for
  a put request (RFC 2616 14.16). Bug 49825. [Stefan Fritsch]
- mod_userdir: Add merging of enable, disable, and filename arguments
  to UserDir directive, leaving enable/disable of userlists unmerged.
  Bug 44076 [Eric Covener]
- core: Honor 'AcceptPathInfo OFF' during internal redirects,
  such as per-directory mod_rewrite substitutions.  Bug 50349.
  [Eric Covener]
- mod_cache: Check the request to determine whether we are allowed
  to return cached content at all, and respect a "Cache-Control:
  no-cache" header from a client. Previously, "no-cache" would
  behave like "max-age=0". [Graham Leggett]
- mod_mem_cache: Add a debug msg when a streaming response exceeds
  MCacheMaxStreamingBuffer, since mod_cache will follow up with a scary
  'memory allocation failed' debug message. Bug 49604. [Eric Covener]
- proxy_connect: Don't give up in the middle of a CONNECT tunnel
  when the child process is starting to exit. Bug 50220. [Eric Covener]


(tron)
diff -r1.63 -r1.64 pkgsrc/www/apache22/Makefile
diff -r1.18 -r1.19 pkgsrc/www/apache22/PLIST
diff -r1.36 -r1.37 pkgsrc/www/apache22/distinfo

cvs diff -r1.63 -r1.64 pkgsrc/www/apache22/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/www/apache22/Attic/Makefile 2010/11/24 12:20:39 1.63
+++ pkgsrc/www/apache22/Attic/Makefile 2011/05/12 06:50:44 1.64
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.63 2010/11/24 12:20:39 sborrill Exp $ 1# $NetBSD: Makefile,v 1.64 2011/05/12 06:50:44 tron Exp $
2 2
3DISTNAME= httpd-2.2.17 3DISTNAME= httpd-2.2.18
4PKGNAME= ${DISTNAME:S/httpd/apache/} 4PKGNAME= ${DISTNAME:S/httpd/apache/}
5CATEGORIES= www 5CATEGORIES= www
6MASTER_SITES= ${MASTER_SITE_APACHE:=httpd/} \ 6MASTER_SITES= ${MASTER_SITE_APACHE:=httpd/} \
7 http://archive.apache.org/dist/httpd/ \ 7 http://archive.apache.org/dist/httpd/ \
8 http://archive.eu.apache.org/dist/httpd/ 8 http://archive.eu.apache.org/dist/httpd/
9EXTRACT_SUFX= .tar.bz2 9EXTRACT_SUFX= .tar.bz2
10 10
11MAINTAINER= tron@NetBSD.org 11MAINTAINER= tron@NetBSD.org
12HOMEPAGE= http://httpd.apache.org/ 12HOMEPAGE= http://httpd.apache.org/
13COMMENT= Apache HTTP (Web) server, version 2.2 13COMMENT= Apache HTTP (Web) server, version 2.2
14LICENSE= apache-2.0 14LICENSE= apache-2.0
15 15
16PKG_DESTDIR_SUPPORT= user-destdir 16PKG_DESTDIR_SUPPORT= user-destdir

cvs diff -r1.18 -r1.19 pkgsrc/www/apache22/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/www/apache22/Attic/PLIST 2010/05/03 20:10:33 1.18
+++ pkgsrc/www/apache22/Attic/PLIST 2011/05/12 06:50:44 1.19
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.18 2010/05/03 20:10:33 tron Exp $ 1@comment $NetBSD: PLIST,v 1.19 2011/05/12 06:50:44 tron Exp $
2${PLIST.suexec}sbin/suexec 2${PLIST.suexec}sbin/suexec
3include/httpd/ap_compat.h 3include/httpd/ap_compat.h
4include/httpd/ap_config.h 4include/httpd/ap_config.h
5include/httpd/ap_config_auto.h 5include/httpd/ap_config_auto.h
6include/httpd/ap_config_layout.h 6include/httpd/ap_config_layout.h
7include/httpd/ap_listen.h 7include/httpd/ap_listen.h
8include/httpd/ap_mmn.h 8include/httpd/ap_mmn.h
9include/httpd/ap_mpm.h 9include/httpd/ap_mpm.h
10include/httpd/ap_provider.h 10include/httpd/ap_provider.h
11include/httpd/ap_regex.h 11include/httpd/ap_regex.h
12include/httpd/ap_regkey.h 12include/httpd/ap_regkey.h
13include/httpd/ap_release.h 13include/httpd/ap_release.h
14include/httpd/http_config.h 14include/httpd/http_config.h
@@ -452,100 +452,107 @@ share/httpd/manual/content-negotiation.h @@ -452,100 +452,107 @@ share/httpd/manual/content-negotiation.h
452share/httpd/manual/convenience.map 452share/httpd/manual/convenience.map
453share/httpd/manual/custom-error.html 453share/httpd/manual/custom-error.html
454share/httpd/manual/custom-error.html.en 454share/httpd/manual/custom-error.html.en
455share/httpd/manual/custom-error.html.es 455share/httpd/manual/custom-error.html.es
456share/httpd/manual/custom-error.html.ja.utf8 456share/httpd/manual/custom-error.html.ja.utf8
457share/httpd/manual/custom-error.html.ko.euc-kr 457share/httpd/manual/custom-error.html.ko.euc-kr
458share/httpd/manual/custom-error.html.tr.utf8 458share/httpd/manual/custom-error.html.tr.utf8
459share/httpd/manual/developer/API.html 459share/httpd/manual/developer/API.html
460share/httpd/manual/developer/API.html.en 460share/httpd/manual/developer/API.html.en
461share/httpd/manual/developer/debugging.html 461share/httpd/manual/developer/debugging.html
462share/httpd/manual/developer/debugging.html.en 462share/httpd/manual/developer/debugging.html.en
463share/httpd/manual/developer/documenting.html 463share/httpd/manual/developer/documenting.html
464share/httpd/manual/developer/documenting.html.en 464share/httpd/manual/developer/documenting.html.en
 465share/httpd/manual/developer/documenting.html.zh-cn
465share/httpd/manual/developer/filters.html 466share/httpd/manual/developer/filters.html
466share/httpd/manual/developer/filters.html.en 467share/httpd/manual/developer/filters.html.en
467share/httpd/manual/developer/hooks.html 468share/httpd/manual/developer/hooks.html
468share/httpd/manual/developer/hooks.html.en 469share/httpd/manual/developer/hooks.html.en
469share/httpd/manual/developer/index.html 470share/httpd/manual/developer/index.html
470share/httpd/manual/developer/index.html.en 471share/httpd/manual/developer/index.html.en
 472share/httpd/manual/developer/index.html.zh-cn
471share/httpd/manual/developer/modules.html 473share/httpd/manual/developer/modules.html
472share/httpd/manual/developer/modules.html.en 474share/httpd/manual/developer/modules.html.en
473share/httpd/manual/developer/modules.html.ja.utf8 475share/httpd/manual/developer/modules.html.ja.utf8
474share/httpd/manual/developer/request.html 476share/httpd/manual/developer/request.html
475share/httpd/manual/developer/request.html.en 477share/httpd/manual/developer/request.html.en
476share/httpd/manual/developer/thread_safety.html 478share/httpd/manual/developer/thread_safety.html
477share/httpd/manual/developer/thread_safety.html.en 479share/httpd/manual/developer/thread_safety.html.en
478share/httpd/manual/dns-caveats.html 480share/httpd/manual/dns-caveats.html
479share/httpd/manual/dns-caveats.html.en 481share/httpd/manual/dns-caveats.html.en
480share/httpd/manual/dns-caveats.html.ja.utf8 482share/httpd/manual/dns-caveats.html.ja.utf8
481share/httpd/manual/dns-caveats.html.ko.euc-kr 483share/httpd/manual/dns-caveats.html.ko.euc-kr
482share/httpd/manual/dns-caveats.html.tr.utf8 484share/httpd/manual/dns-caveats.html.tr.utf8
483share/httpd/manual/dso.html 485share/httpd/manual/dso.html
484share/httpd/manual/dso.html.en 486share/httpd/manual/dso.html.en
485share/httpd/manual/dso.html.ja.utf8 487share/httpd/manual/dso.html.ja.utf8
486share/httpd/manual/dso.html.ko.euc-kr 488share/httpd/manual/dso.html.ko.euc-kr
487share/httpd/manual/dso.html.tr.utf8 489share/httpd/manual/dso.html.tr.utf8
488share/httpd/manual/env.html 490share/httpd/manual/env.html
489share/httpd/manual/env.html.en 491share/httpd/manual/env.html.en
490share/httpd/manual/env.html.ja.utf8 492share/httpd/manual/env.html.ja.utf8
491share/httpd/manual/env.html.ko.euc-kr 493share/httpd/manual/env.html.ko.euc-kr
492share/httpd/manual/env.html.tr.utf8 494share/httpd/manual/env.html.tr.utf8
493share/httpd/manual/faq/index.html 495share/httpd/manual/faq/index.html
494share/httpd/manual/faq/index.html.en 496share/httpd/manual/faq/index.html.en
495share/httpd/manual/faq/index.html.tr.utf8 497share/httpd/manual/faq/index.html.tr.utf8
 498share/httpd/manual/faq/index.html.zh-cn
496share/httpd/manual/filter.html 499share/httpd/manual/filter.html
497share/httpd/manual/filter.html.en 500share/httpd/manual/filter.html.en
498share/httpd/manual/filter.html.es 501share/httpd/manual/filter.html.es
499share/httpd/manual/filter.html.fr 502share/httpd/manual/filter.html.fr
500share/httpd/manual/filter.html.ja.utf8 503share/httpd/manual/filter.html.ja.utf8
501share/httpd/manual/filter.html.ko.euc-kr 504share/httpd/manual/filter.html.ko.euc-kr
502share/httpd/manual/filter.html.tr.utf8 505share/httpd/manual/filter.html.tr.utf8
503share/httpd/manual/glossary.html 506share/httpd/manual/glossary.html
504share/httpd/manual/glossary.html.de 507share/httpd/manual/glossary.html.de
505share/httpd/manual/glossary.html.en 508share/httpd/manual/glossary.html.en
506share/httpd/manual/glossary.html.es 509share/httpd/manual/glossary.html.es
507share/httpd/manual/glossary.html.fr 510share/httpd/manual/glossary.html.fr
508share/httpd/manual/glossary.html.ja.utf8 511share/httpd/manual/glossary.html.ja.utf8
509share/httpd/manual/glossary.html.ko.euc-kr 512share/httpd/manual/glossary.html.ko.euc-kr
510share/httpd/manual/glossary.html.tr.utf8 513share/httpd/manual/glossary.html.tr.utf8
511share/httpd/manual/handler.html 514share/httpd/manual/handler.html
512share/httpd/manual/handler.html.en 515share/httpd/manual/handler.html.en
513share/httpd/manual/handler.html.es 516share/httpd/manual/handler.html.es
514share/httpd/manual/handler.html.fr 517share/httpd/manual/handler.html.fr
515share/httpd/manual/handler.html.ja.utf8 518share/httpd/manual/handler.html.ja.utf8
516share/httpd/manual/handler.html.ko.euc-kr 519share/httpd/manual/handler.html.ko.euc-kr
517share/httpd/manual/handler.html.ru.koi8-r 520share/httpd/manual/handler.html.ru.koi8-r
518share/httpd/manual/handler.html.tr.utf8 521share/httpd/manual/handler.html.tr.utf8
 522share/httpd/manual/handler.html.zh-cn
519share/httpd/manual/howto/access.html 523share/httpd/manual/howto/access.html
520share/httpd/manual/howto/access.html.en 524share/httpd/manual/howto/access.html.en
521share/httpd/manual/howto/auth.html 525share/httpd/manual/howto/auth.html
522share/httpd/manual/howto/auth.html.en 526share/httpd/manual/howto/auth.html.en
 527share/httpd/manual/howto/auth.html.fr
523share/httpd/manual/howto/auth.html.ja.utf8 528share/httpd/manual/howto/auth.html.ja.utf8
524share/httpd/manual/howto/auth.html.ko.euc-kr 529share/httpd/manual/howto/auth.html.ko.euc-kr
525share/httpd/manual/howto/auth.html.tr.utf8 530share/httpd/manual/howto/auth.html.tr.utf8
526share/httpd/manual/howto/cgi.html 531share/httpd/manual/howto/cgi.html
527share/httpd/manual/howto/cgi.html.en 532share/httpd/manual/howto/cgi.html.en
528share/httpd/manual/howto/cgi.html.ja.utf8 533share/httpd/manual/howto/cgi.html.ja.utf8
529share/httpd/manual/howto/cgi.html.ko.euc-kr 534share/httpd/manual/howto/cgi.html.ko.euc-kr
530share/httpd/manual/howto/htaccess.html 535share/httpd/manual/howto/htaccess.html
531share/httpd/manual/howto/htaccess.html.en 536share/httpd/manual/howto/htaccess.html.en
 537share/httpd/manual/howto/htaccess.html.fr
532share/httpd/manual/howto/htaccess.html.ja.utf8 538share/httpd/manual/howto/htaccess.html.ja.utf8
533share/httpd/manual/howto/htaccess.html.ko.euc-kr 539share/httpd/manual/howto/htaccess.html.ko.euc-kr
534share/httpd/manual/howto/htaccess.html.pt-br 540share/httpd/manual/howto/htaccess.html.pt-br
535share/httpd/manual/howto/index.html 541share/httpd/manual/howto/index.html
536share/httpd/manual/howto/index.html.en 542share/httpd/manual/howto/index.html.en
537share/httpd/manual/howto/index.html.ja.utf8 543share/httpd/manual/howto/index.html.ja.utf8
538share/httpd/manual/howto/index.html.ko.euc-kr 544share/httpd/manual/howto/index.html.ko.euc-kr
 545share/httpd/manual/howto/index.html.zh-cn
539share/httpd/manual/howto/public_html.html 546share/httpd/manual/howto/public_html.html
540share/httpd/manual/howto/public_html.html.en 547share/httpd/manual/howto/public_html.html.en
541share/httpd/manual/howto/public_html.html.ja.utf8 548share/httpd/manual/howto/public_html.html.ja.utf8
542share/httpd/manual/howto/public_html.html.ko.euc-kr 549share/httpd/manual/howto/public_html.html.ko.euc-kr
543share/httpd/manual/howto/public_html.html.tr.utf8 550share/httpd/manual/howto/public_html.html.tr.utf8
544share/httpd/manual/howto/ssi.html 551share/httpd/manual/howto/ssi.html
545share/httpd/manual/howto/ssi.html.en 552share/httpd/manual/howto/ssi.html.en
546share/httpd/manual/howto/ssi.html.ja.utf8 553share/httpd/manual/howto/ssi.html.ja.utf8
547share/httpd/manual/howto/ssi.html.ko.euc-kr 554share/httpd/manual/howto/ssi.html.ko.euc-kr
548share/httpd/manual/images/apache_header.gif 555share/httpd/manual/images/apache_header.gif
549share/httpd/manual/images/caching_fig1.gif 556share/httpd/manual/images/caching_fig1.gif
550share/httpd/manual/images/caching_fig1.png 557share/httpd/manual/images/caching_fig1.png
551share/httpd/manual/images/caching_fig1.tr.png 558share/httpd/manual/images/caching_fig1.tr.png
@@ -558,44 +565,48 @@ share/httpd/manual/images/filter_arch.pn @@ -558,44 +565,48 @@ share/httpd/manual/images/filter_arch.pn
558share/httpd/manual/images/filter_arch.tr.png 565share/httpd/manual/images/filter_arch.tr.png
559share/httpd/manual/images/home.gif 566share/httpd/manual/images/home.gif
560share/httpd/manual/images/index.gif 567share/httpd/manual/images/index.gif
561share/httpd/manual/images/left.gif 568share/httpd/manual/images/left.gif
562share/httpd/manual/images/mod_filter_new.gif 569share/httpd/manual/images/mod_filter_new.gif
563share/httpd/manual/images/mod_filter_new.png 570share/httpd/manual/images/mod_filter_new.png
564share/httpd/manual/images/mod_filter_new.tr.png 571share/httpd/manual/images/mod_filter_new.tr.png
565share/httpd/manual/images/mod_filter_old.gif 572share/httpd/manual/images/mod_filter_old.gif
566share/httpd/manual/images/mod_rewrite_fig1.gif 573share/httpd/manual/images/mod_rewrite_fig1.gif
567share/httpd/manual/images/mod_rewrite_fig1.png 574share/httpd/manual/images/mod_rewrite_fig1.png
568share/httpd/manual/images/mod_rewrite_fig2.gif 575share/httpd/manual/images/mod_rewrite_fig2.gif
569share/httpd/manual/images/mod_rewrite_fig2.png 576share/httpd/manual/images/mod_rewrite_fig2.png
570share/httpd/manual/images/pixel.gif 577share/httpd/manual/images/pixel.gif
 578share/httpd/manual/images/rewrite_rule_flow.png
571share/httpd/manual/images/right.gif 579share/httpd/manual/images/right.gif
572share/httpd/manual/images/ssl_intro_fig1.gif 580share/httpd/manual/images/ssl_intro_fig1.gif
573share/httpd/manual/images/ssl_intro_fig1.png 581share/httpd/manual/images/ssl_intro_fig1.png
574share/httpd/manual/images/ssl_intro_fig2.gif 582share/httpd/manual/images/ssl_intro_fig2.gif
575share/httpd/manual/images/ssl_intro_fig2.png 583share/httpd/manual/images/ssl_intro_fig2.png
576share/httpd/manual/images/ssl_intro_fig3.gif 584share/httpd/manual/images/ssl_intro_fig3.gif
577share/httpd/manual/images/ssl_intro_fig3.png 585share/httpd/manual/images/ssl_intro_fig3.png
578share/httpd/manual/images/sub.gif 586share/httpd/manual/images/sub.gif
 587share/httpd/manual/images/syntax_rewritecond.png
 588share/httpd/manual/images/syntax_rewriterule.png
579share/httpd/manual/images/up.gif 589share/httpd/manual/images/up.gif
580share/httpd/manual/index.html 590share/httpd/manual/index.html
581share/httpd/manual/index.html.de 591share/httpd/manual/index.html.de
582share/httpd/manual/index.html.en 592share/httpd/manual/index.html.en
583share/httpd/manual/index.html.es 593share/httpd/manual/index.html.es
584share/httpd/manual/index.html.fr 594share/httpd/manual/index.html.fr
585share/httpd/manual/index.html.ja.utf8 595share/httpd/manual/index.html.ja.utf8
586share/httpd/manual/index.html.ko.euc-kr 596share/httpd/manual/index.html.ko.euc-kr
587share/httpd/manual/index.html.pt-br 597share/httpd/manual/index.html.pt-br
588share/httpd/manual/index.html.tr.utf8 598share/httpd/manual/index.html.tr.utf8
 599share/httpd/manual/index.html.zh-cn
589share/httpd/manual/install.html 600share/httpd/manual/install.html
590share/httpd/manual/install.html.de 601share/httpd/manual/install.html.de
591share/httpd/manual/install.html.en 602share/httpd/manual/install.html.en
592share/httpd/manual/install.html.es 603share/httpd/manual/install.html.es
593share/httpd/manual/install.html.fr 604share/httpd/manual/install.html.fr
594share/httpd/manual/install.html.ja.utf8 605share/httpd/manual/install.html.ja.utf8
595share/httpd/manual/install.html.ko.euc-kr 606share/httpd/manual/install.html.ko.euc-kr
596share/httpd/manual/install.html.tr.utf8 607share/httpd/manual/install.html.tr.utf8
597share/httpd/manual/invoking.html 608share/httpd/manual/invoking.html
598share/httpd/manual/invoking.html.de 609share/httpd/manual/invoking.html.de
599share/httpd/manual/invoking.html.en 610share/httpd/manual/invoking.html.en
600share/httpd/manual/invoking.html.es 611share/httpd/manual/invoking.html.es
601share/httpd/manual/invoking.html.fr 612share/httpd/manual/invoking.html.fr
@@ -604,142 +615,152 @@ share/httpd/manual/invoking.html.ko.euc- @@ -604,142 +615,152 @@ share/httpd/manual/invoking.html.ko.euc-
604share/httpd/manual/invoking.html.ru.koi8-r 615share/httpd/manual/invoking.html.ru.koi8-r
605share/httpd/manual/invoking.html.tr.utf8 616share/httpd/manual/invoking.html.tr.utf8
606share/httpd/manual/license.html 617share/httpd/manual/license.html
607share/httpd/manual/license.html.en 618share/httpd/manual/license.html.en
608share/httpd/manual/logs.html 619share/httpd/manual/logs.html
609share/httpd/manual/logs.html.en 620share/httpd/manual/logs.html.en
610share/httpd/manual/logs.html.ja.utf8 621share/httpd/manual/logs.html.ja.utf8
611share/httpd/manual/logs.html.ko.euc-kr 622share/httpd/manual/logs.html.ko.euc-kr
612share/httpd/manual/logs.html.tr.utf8 623share/httpd/manual/logs.html.tr.utf8
613share/httpd/manual/misc/index.html 624share/httpd/manual/misc/index.html
614share/httpd/manual/misc/index.html.en 625share/httpd/manual/misc/index.html.en
615share/httpd/manual/misc/index.html.ko.euc-kr 626share/httpd/manual/misc/index.html.ko.euc-kr
616share/httpd/manual/misc/index.html.tr.utf8 627share/httpd/manual/misc/index.html.tr.utf8
 628share/httpd/manual/misc/index.html.zh-cn
617share/httpd/manual/misc/password_encryptions.html 629share/httpd/manual/misc/password_encryptions.html
618share/httpd/manual/misc/password_encryptions.html.en 630share/httpd/manual/misc/password_encryptions.html.en
619share/httpd/manual/misc/perf-tuning.html 631share/httpd/manual/misc/perf-tuning.html
620share/httpd/manual/misc/perf-tuning.html.en 632share/httpd/manual/misc/perf-tuning.html.en
621share/httpd/manual/misc/perf-tuning.html.ko.euc-kr 633share/httpd/manual/misc/perf-tuning.html.ko.euc-kr
622share/httpd/manual/misc/perf-tuning.html.tr.utf8 634share/httpd/manual/misc/perf-tuning.html.tr.utf8
623share/httpd/manual/misc/relevant_standards.html 635share/httpd/manual/misc/relevant_standards.html
624share/httpd/manual/misc/relevant_standards.html.en 636share/httpd/manual/misc/relevant_standards.html.en
625share/httpd/manual/misc/relevant_standards.html.ko.euc-kr 637share/httpd/manual/misc/relevant_standards.html.ko.euc-kr
626share/httpd/manual/misc/rewriteguide.html 638share/httpd/manual/misc/rewriteguide.html
627share/httpd/manual/misc/rewriteguide.html.en 639share/httpd/manual/misc/rewriteguide.html.en
628share/httpd/manual/misc/rewriteguide.html.ko.euc-kr 640share/httpd/manual/misc/rewriteguide.html.ko.euc-kr
629share/httpd/manual/misc/security_tips.html 641share/httpd/manual/misc/security_tips.html
630share/httpd/manual/misc/security_tips.html.en 642share/httpd/manual/misc/security_tips.html.en
631share/httpd/manual/misc/security_tips.html.ko.euc-kr 643share/httpd/manual/misc/security_tips.html.ko.euc-kr
632share/httpd/manual/misc/security_tips.html.tr.utf8 644share/httpd/manual/misc/security_tips.html.tr.utf8
633share/httpd/manual/mod/beos.html 645share/httpd/manual/mod/beos.html
634share/httpd/manual/mod/beos.html.de 646share/httpd/manual/mod/beos.html.de
635share/httpd/manual/mod/beos.html.en 647share/httpd/manual/mod/beos.html.en
636share/httpd/manual/mod/beos.html.es 648share/httpd/manual/mod/beos.html.es
637share/httpd/manual/mod/beos.html.ko.euc-kr 649share/httpd/manual/mod/beos.html.ko.euc-kr
638share/httpd/manual/mod/core.html 650share/httpd/manual/mod/core.html
639share/httpd/manual/mod/core.html.de 651share/httpd/manual/mod/core.html.de
640share/httpd/manual/mod/core.html.en 652share/httpd/manual/mod/core.html.en
 653share/httpd/manual/mod/core.html.fr
641share/httpd/manual/mod/core.html.ja.utf8 654share/httpd/manual/mod/core.html.ja.utf8
642share/httpd/manual/mod/core.html.tr.utf8 655share/httpd/manual/mod/core.html.tr.utf8
643share/httpd/manual/mod/directive-dict.html 656share/httpd/manual/mod/directive-dict.html
644share/httpd/manual/mod/directive-dict.html.en 657share/httpd/manual/mod/directive-dict.html.en
645share/httpd/manual/mod/directive-dict.html.ja.utf8 658share/httpd/manual/mod/directive-dict.html.ja.utf8
646share/httpd/manual/mod/directive-dict.html.ko.euc-kr 659share/httpd/manual/mod/directive-dict.html.ko.euc-kr
647share/httpd/manual/mod/directive-dict.html.tr.utf8 660share/httpd/manual/mod/directive-dict.html.tr.utf8
648share/httpd/manual/mod/directives.html 661share/httpd/manual/mod/directives.html
649share/httpd/manual/mod/directives.html.de 662share/httpd/manual/mod/directives.html.de
650share/httpd/manual/mod/directives.html.en 663share/httpd/manual/mod/directives.html.en
651share/httpd/manual/mod/directives.html.es 664share/httpd/manual/mod/directives.html.es
652share/httpd/manual/mod/directives.html.ja.utf8 665share/httpd/manual/mod/directives.html.ja.utf8
653share/httpd/manual/mod/directives.html.ko.euc-kr 666share/httpd/manual/mod/directives.html.ko.euc-kr
654share/httpd/manual/mod/directives.html.ru.koi8-r 667share/httpd/manual/mod/directives.html.ru.koi8-r
655share/httpd/manual/mod/directives.html.tr.utf8 668share/httpd/manual/mod/directives.html.tr.utf8
 669share/httpd/manual/mod/directives.html.zh-cn
656share/httpd/manual/mod/event.html 670share/httpd/manual/mod/event.html
657share/httpd/manual/mod/event.html.en 671share/httpd/manual/mod/event.html.en
658share/httpd/manual/mod/index.html 672share/httpd/manual/mod/index.html
659share/httpd/manual/mod/index.html.de 673share/httpd/manual/mod/index.html.de
660share/httpd/manual/mod/index.html.en 674share/httpd/manual/mod/index.html.en
661share/httpd/manual/mod/index.html.es 675share/httpd/manual/mod/index.html.es
662share/httpd/manual/mod/index.html.ja.utf8 676share/httpd/manual/mod/index.html.ja.utf8
663share/httpd/manual/mod/index.html.ko.euc-kr 677share/httpd/manual/mod/index.html.ko.euc-kr
664share/httpd/manual/mod/index.html.tr.utf8 678share/httpd/manual/mod/index.html.tr.utf8
 679share/httpd/manual/mod/index.html.zh-cn
665share/httpd/manual/mod/mod_actions.html 680share/httpd/manual/mod/mod_actions.html
666share/httpd/manual/mod/mod_actions.html.de 681share/httpd/manual/mod/mod_actions.html.de
667share/httpd/manual/mod/mod_actions.html.en 682share/httpd/manual/mod/mod_actions.html.en
668share/httpd/manual/mod/mod_actions.html.ja.utf8 683share/httpd/manual/mod/mod_actions.html.ja.utf8
669share/httpd/manual/mod/mod_actions.html.ko.euc-kr 684share/httpd/manual/mod/mod_actions.html.ko.euc-kr
670share/httpd/manual/mod/mod_alias.html 685share/httpd/manual/mod/mod_alias.html
671share/httpd/manual/mod/mod_alias.html.en 686share/httpd/manual/mod/mod_alias.html.en
672share/httpd/manual/mod/mod_alias.html.ja.utf8 687share/httpd/manual/mod/mod_alias.html.ja.utf8
673share/httpd/manual/mod/mod_alias.html.ko.euc-kr 688share/httpd/manual/mod/mod_alias.html.ko.euc-kr
674share/httpd/manual/mod/mod_alias.html.tr.utf8 689share/httpd/manual/mod/mod_alias.html.tr.utf8
675share/httpd/manual/mod/mod_asis.html 690share/httpd/manual/mod/mod_asis.html
676share/httpd/manual/mod/mod_asis.html.en 691share/httpd/manual/mod/mod_asis.html.en
677share/httpd/manual/mod/mod_asis.html.ja.utf8 692share/httpd/manual/mod/mod_asis.html.ja.utf8
678share/httpd/manual/mod/mod_asis.html.ko.euc-kr 693share/httpd/manual/mod/mod_asis.html.ko.euc-kr
679share/httpd/manual/mod/mod_auth_basic.html 694share/httpd/manual/mod/mod_auth_basic.html
680share/httpd/manual/mod/mod_auth_basic.html.en 695share/httpd/manual/mod/mod_auth_basic.html.en
 696share/httpd/manual/mod/mod_auth_basic.html.fr
681share/httpd/manual/mod/mod_auth_basic.html.ja.utf8 697share/httpd/manual/mod/mod_auth_basic.html.ja.utf8
682share/httpd/manual/mod/mod_auth_basic.html.ko.euc-kr 698share/httpd/manual/mod/mod_auth_basic.html.ko.euc-kr
683share/httpd/manual/mod/mod_auth_digest.html 699share/httpd/manual/mod/mod_auth_digest.html
684share/httpd/manual/mod/mod_auth_digest.html.en 700share/httpd/manual/mod/mod_auth_digest.html.en
 701share/httpd/manual/mod/mod_auth_digest.html.fr
685share/httpd/manual/mod/mod_auth_digest.html.ko.euc-kr 702share/httpd/manual/mod/mod_auth_digest.html.ko.euc-kr
686share/httpd/manual/mod/mod_authn_alias.html 703share/httpd/manual/mod/mod_authn_alias.html
687share/httpd/manual/mod/mod_authn_alias.html.en 704share/httpd/manual/mod/mod_authn_alias.html.en
 705share/httpd/manual/mod/mod_authn_alias.html.fr
688share/httpd/manual/mod/mod_authn_anon.html 706share/httpd/manual/mod/mod_authn_anon.html
689share/httpd/manual/mod/mod_authn_anon.html.en 707share/httpd/manual/mod/mod_authn_anon.html.en
690share/httpd/manual/mod/mod_authn_anon.html.ja.utf8 708share/httpd/manual/mod/mod_authn_anon.html.ja.utf8
691share/httpd/manual/mod/mod_authn_anon.html.ko.euc-kr 709share/httpd/manual/mod/mod_authn_anon.html.ko.euc-kr
692share/httpd/manual/mod/mod_authn_dbd.html 710share/httpd/manual/mod/mod_authn_dbd.html
693share/httpd/manual/mod/mod_authn_dbd.html.en 711share/httpd/manual/mod/mod_authn_dbd.html.en
694share/httpd/manual/mod/mod_authn_dbm.html 712share/httpd/manual/mod/mod_authn_dbm.html
695share/httpd/manual/mod/mod_authn_dbm.html.en 713share/httpd/manual/mod/mod_authn_dbm.html.en
696share/httpd/manual/mod/mod_authn_dbm.html.ja.utf8 714share/httpd/manual/mod/mod_authn_dbm.html.ja.utf8
697share/httpd/manual/mod/mod_authn_dbm.html.ko.euc-kr 715share/httpd/manual/mod/mod_authn_dbm.html.ko.euc-kr
698share/httpd/manual/mod/mod_authn_default.html 716share/httpd/manual/mod/mod_authn_default.html
699share/httpd/manual/mod/mod_authn_default.html.en 717share/httpd/manual/mod/mod_authn_default.html.en
700share/httpd/manual/mod/mod_authn_default.html.ja.utf8 718share/httpd/manual/mod/mod_authn_default.html.ja.utf8
701share/httpd/manual/mod/mod_authn_default.html.ko.euc-kr 719share/httpd/manual/mod/mod_authn_default.html.ko.euc-kr
702share/httpd/manual/mod/mod_authn_file.html 720share/httpd/manual/mod/mod_authn_file.html
703share/httpd/manual/mod/mod_authn_file.html.en 721share/httpd/manual/mod/mod_authn_file.html.en
 722share/httpd/manual/mod/mod_authn_file.html.fr
704share/httpd/manual/mod/mod_authn_file.html.ja.utf8 723share/httpd/manual/mod/mod_authn_file.html.ja.utf8
705share/httpd/manual/mod/mod_authn_file.html.ko.euc-kr 724share/httpd/manual/mod/mod_authn_file.html.ko.euc-kr
706share/httpd/manual/mod/mod_authnz_ldap.html 725share/httpd/manual/mod/mod_authnz_ldap.html
707share/httpd/manual/mod/mod_authnz_ldap.html.en 726share/httpd/manual/mod/mod_authnz_ldap.html.en
 727share/httpd/manual/mod/mod_authnz_ldap.html.fr
708share/httpd/manual/mod/mod_authz_dbm.html 728share/httpd/manual/mod/mod_authz_dbm.html
709share/httpd/manual/mod/mod_authz_dbm.html.en 729share/httpd/manual/mod/mod_authz_dbm.html.en
710share/httpd/manual/mod/mod_authz_dbm.html.ko.euc-kr 730share/httpd/manual/mod/mod_authz_dbm.html.ko.euc-kr
711share/httpd/manual/mod/mod_authz_default.html 731share/httpd/manual/mod/mod_authz_default.html
712share/httpd/manual/mod/mod_authz_default.html.en 732share/httpd/manual/mod/mod_authz_default.html.en
713share/httpd/manual/mod/mod_authz_default.html.ja.utf8 733share/httpd/manual/mod/mod_authz_default.html.ja.utf8
714share/httpd/manual/mod/mod_authz_default.html.ko.euc-kr 734share/httpd/manual/mod/mod_authz_default.html.ko.euc-kr
715share/httpd/manual/mod/mod_authz_groupfile.html 735share/httpd/manual/mod/mod_authz_groupfile.html
716share/httpd/manual/mod/mod_authz_groupfile.html.en 736share/httpd/manual/mod/mod_authz_groupfile.html.en
717share/httpd/manual/mod/mod_authz_groupfile.html.ja.utf8 737share/httpd/manual/mod/mod_authz_groupfile.html.ja.utf8
718share/httpd/manual/mod/mod_authz_groupfile.html.ko.euc-kr 738share/httpd/manual/mod/mod_authz_groupfile.html.ko.euc-kr
719share/httpd/manual/mod/mod_authz_host.html 739share/httpd/manual/mod/mod_authz_host.html
720share/httpd/manual/mod/mod_authz_host.html.en 740share/httpd/manual/mod/mod_authz_host.html.en
721share/httpd/manual/mod/mod_authz_host.html.ja.utf8 741share/httpd/manual/mod/mod_authz_host.html.ja.utf8
722share/httpd/manual/mod/mod_authz_host.html.ko.euc-kr 742share/httpd/manual/mod/mod_authz_host.html.ko.euc-kr
723share/httpd/manual/mod/mod_authz_owner.html 743share/httpd/manual/mod/mod_authz_owner.html
724share/httpd/manual/mod/mod_authz_owner.html.en 744share/httpd/manual/mod/mod_authz_owner.html.en
725share/httpd/manual/mod/mod_authz_owner.html.ja.utf8 745share/httpd/manual/mod/mod_authz_owner.html.ja.utf8
726share/httpd/manual/mod/mod_authz_owner.html.ko.euc-kr 746share/httpd/manual/mod/mod_authz_owner.html.ko.euc-kr
727share/httpd/manual/mod/mod_authz_user.html 747share/httpd/manual/mod/mod_authz_user.html
728share/httpd/manual/mod/mod_authz_user.html.en 748share/httpd/manual/mod/mod_authz_user.html.en
729share/httpd/manual/mod/mod_authz_user.html.ja.utf8 749share/httpd/manual/mod/mod_authz_user.html.ja.utf8
730share/httpd/manual/mod/mod_authz_user.html.ko.euc-kr 750share/httpd/manual/mod/mod_authz_user.html.ko.euc-kr
731share/httpd/manual/mod/mod_autoindex.html 751share/httpd/manual/mod/mod_autoindex.html
732share/httpd/manual/mod/mod_autoindex.html.en 752share/httpd/manual/mod/mod_autoindex.html.en
 753share/httpd/manual/mod/mod_autoindex.html.fr
733share/httpd/manual/mod/mod_autoindex.html.ja.utf8 754share/httpd/manual/mod/mod_autoindex.html.ja.utf8
734share/httpd/manual/mod/mod_autoindex.html.ko.euc-kr 755share/httpd/manual/mod/mod_autoindex.html.ko.euc-kr
735share/httpd/manual/mod/mod_autoindex.html.tr.utf8 756share/httpd/manual/mod/mod_autoindex.html.tr.utf8
736share/httpd/manual/mod/mod_cache.html 757share/httpd/manual/mod/mod_cache.html
737share/httpd/manual/mod/mod_cache.html.en 758share/httpd/manual/mod/mod_cache.html.en
738share/httpd/manual/mod/mod_cache.html.ja.utf8 759share/httpd/manual/mod/mod_cache.html.ja.utf8
739share/httpd/manual/mod/mod_cache.html.ko.euc-kr 760share/httpd/manual/mod/mod_cache.html.ko.euc-kr
740share/httpd/manual/mod/mod_cern_meta.html 761share/httpd/manual/mod/mod_cern_meta.html
741share/httpd/manual/mod/mod_cern_meta.html.en 762share/httpd/manual/mod/mod_cern_meta.html.en
742share/httpd/manual/mod/mod_cern_meta.html.ko.euc-kr 763share/httpd/manual/mod/mod_cern_meta.html.ko.euc-kr
743share/httpd/manual/mod/mod_cgi.html 764share/httpd/manual/mod/mod_cgi.html
744share/httpd/manual/mod/mod_cgi.html.en 765share/httpd/manual/mod/mod_cgi.html.en
745share/httpd/manual/mod/mod_cgi.html.ja.utf8 766share/httpd/manual/mod/mod_cgi.html.ja.utf8
@@ -848,71 +869,75 @@ share/httpd/manual/mod/mod_mem_cache.htm @@ -848,71 +869,75 @@ share/httpd/manual/mod/mod_mem_cache.htm
848share/httpd/manual/mod/mod_mem_cache.html.ko.euc-kr 869share/httpd/manual/mod/mod_mem_cache.html.ko.euc-kr
849share/httpd/manual/mod/mod_mime.html 870share/httpd/manual/mod/mod_mime.html
850share/httpd/manual/mod/mod_mime.html.en 871share/httpd/manual/mod/mod_mime.html.en
851share/httpd/manual/mod/mod_mime.html.ja.utf8 872share/httpd/manual/mod/mod_mime.html.ja.utf8
852share/httpd/manual/mod/mod_mime_magic.html 873share/httpd/manual/mod/mod_mime_magic.html
853share/httpd/manual/mod/mod_mime_magic.html.en 874share/httpd/manual/mod/mod_mime_magic.html.en
854share/httpd/manual/mod/mod_negotiation.html 875share/httpd/manual/mod/mod_negotiation.html
855share/httpd/manual/mod/mod_negotiation.html.en 876share/httpd/manual/mod/mod_negotiation.html.en
856share/httpd/manual/mod/mod_negotiation.html.ja.utf8 877share/httpd/manual/mod/mod_negotiation.html.ja.utf8
857share/httpd/manual/mod/mod_nw_ssl.html 878share/httpd/manual/mod/mod_nw_ssl.html
858share/httpd/manual/mod/mod_nw_ssl.html.en 879share/httpd/manual/mod/mod_nw_ssl.html.en
859share/httpd/manual/mod/mod_proxy.html 880share/httpd/manual/mod/mod_proxy.html
860share/httpd/manual/mod/mod_proxy.html.en 881share/httpd/manual/mod/mod_proxy.html.en
 882share/httpd/manual/mod/mod_proxy.html.fr
861share/httpd/manual/mod/mod_proxy.html.ja.utf8 883share/httpd/manual/mod/mod_proxy.html.ja.utf8
862share/httpd/manual/mod/mod_proxy_ajp.html 884share/httpd/manual/mod/mod_proxy_ajp.html
863share/httpd/manual/mod/mod_proxy_ajp.html.en 885share/httpd/manual/mod/mod_proxy_ajp.html.en
864share/httpd/manual/mod/mod_proxy_ajp.html.ja.utf8 886share/httpd/manual/mod/mod_proxy_ajp.html.ja.utf8
865share/httpd/manual/mod/mod_proxy_balancer.html 887share/httpd/manual/mod/mod_proxy_balancer.html
866share/httpd/manual/mod/mod_proxy_balancer.html.en 888share/httpd/manual/mod/mod_proxy_balancer.html.en
867share/httpd/manual/mod/mod_proxy_balancer.html.ja.utf8 889share/httpd/manual/mod/mod_proxy_balancer.html.ja.utf8
868share/httpd/manual/mod/mod_proxy_connect.html 890share/httpd/manual/mod/mod_proxy_connect.html
869share/httpd/manual/mod/mod_proxy_connect.html.en 891share/httpd/manual/mod/mod_proxy_connect.html.en
870share/httpd/manual/mod/mod_proxy_connect.html.ja.utf8 892share/httpd/manual/mod/mod_proxy_connect.html.ja.utf8
871share/httpd/manual/mod/mod_proxy_ftp.html 893share/httpd/manual/mod/mod_proxy_ftp.html
872share/httpd/manual/mod/mod_proxy_ftp.html.en 894share/httpd/manual/mod/mod_proxy_ftp.html.en
873share/httpd/manual/mod/mod_proxy_http.html 895share/httpd/manual/mod/mod_proxy_http.html
874share/httpd/manual/mod/mod_proxy_http.html.en 896share/httpd/manual/mod/mod_proxy_http.html.en
 897share/httpd/manual/mod/mod_proxy_http.html.fr
875share/httpd/manual/mod/mod_proxy_scgi.html 898share/httpd/manual/mod/mod_proxy_scgi.html
876share/httpd/manual/mod/mod_proxy_scgi.html.en 899share/httpd/manual/mod/mod_proxy_scgi.html.en
877share/httpd/manual/mod/mod_reqtimeout.html 900share/httpd/manual/mod/mod_reqtimeout.html
878share/httpd/manual/mod/mod_reqtimeout.html.en 901share/httpd/manual/mod/mod_reqtimeout.html.en
879share/httpd/manual/mod/mod_rewrite.html 902share/httpd/manual/mod/mod_rewrite.html
880share/httpd/manual/mod/mod_rewrite.html.en 903share/httpd/manual/mod/mod_rewrite.html.en
 904share/httpd/manual/mod/mod_rewrite.html.fr
881share/httpd/manual/mod/mod_setenvif.html 905share/httpd/manual/mod/mod_setenvif.html
882share/httpd/manual/mod/mod_setenvif.html.en 906share/httpd/manual/mod/mod_setenvif.html.en
883share/httpd/manual/mod/mod_setenvif.html.ja.utf8 907share/httpd/manual/mod/mod_setenvif.html.ja.utf8
884share/httpd/manual/mod/mod_setenvif.html.ko.euc-kr 908share/httpd/manual/mod/mod_setenvif.html.ko.euc-kr
885share/httpd/manual/mod/mod_setenvif.html.tr.utf8 909share/httpd/manual/mod/mod_setenvif.html.tr.utf8
886share/httpd/manual/mod/mod_so.html 910share/httpd/manual/mod/mod_so.html
887share/httpd/manual/mod/mod_so.html.en 911share/httpd/manual/mod/mod_so.html.en
888share/httpd/manual/mod/mod_so.html.ja.utf8 912share/httpd/manual/mod/mod_so.html.ja.utf8
889share/httpd/manual/mod/mod_so.html.ko.euc-kr 913share/httpd/manual/mod/mod_so.html.ko.euc-kr
890share/httpd/manual/mod/mod_so.html.tr.utf8 914share/httpd/manual/mod/mod_so.html.tr.utf8
891share/httpd/manual/mod/mod_speling.html 915share/httpd/manual/mod/mod_speling.html
892share/httpd/manual/mod/mod_speling.html.en 916share/httpd/manual/mod/mod_speling.html.en
893share/httpd/manual/mod/mod_speling.html.ja.utf8 917share/httpd/manual/mod/mod_speling.html.ja.utf8
894share/httpd/manual/mod/mod_speling.html.ko.euc-kr 918share/httpd/manual/mod/mod_speling.html.ko.euc-kr
895share/httpd/manual/mod/mod_ssl.html 919share/httpd/manual/mod/mod_ssl.html
896share/httpd/manual/mod/mod_ssl.html.en 920share/httpd/manual/mod/mod_ssl.html.en
897share/httpd/manual/mod/mod_status.html 921share/httpd/manual/mod/mod_status.html
898share/httpd/manual/mod/mod_status.html.en 922share/httpd/manual/mod/mod_status.html.en
899share/httpd/manual/mod/mod_status.html.ja.utf8 923share/httpd/manual/mod/mod_status.html.ja.utf8
900share/httpd/manual/mod/mod_status.html.ko.euc-kr 924share/httpd/manual/mod/mod_status.html.ko.euc-kr
901share/httpd/manual/mod/mod_status.html.tr.utf8 925share/httpd/manual/mod/mod_status.html.tr.utf8
902share/httpd/manual/mod/mod_substitute.html 926share/httpd/manual/mod/mod_substitute.html
903share/httpd/manual/mod/mod_substitute.html.en 927share/httpd/manual/mod/mod_substitute.html.en
904share/httpd/manual/mod/mod_suexec.html 928share/httpd/manual/mod/mod_suexec.html
905share/httpd/manual/mod/mod_suexec.html.en 929share/httpd/manual/mod/mod_suexec.html.en
 930share/httpd/manual/mod/mod_suexec.html.fr
906share/httpd/manual/mod/mod_suexec.html.ja.utf8 931share/httpd/manual/mod/mod_suexec.html.ja.utf8
907share/httpd/manual/mod/mod_suexec.html.ko.euc-kr 932share/httpd/manual/mod/mod_suexec.html.ko.euc-kr
908share/httpd/manual/mod/mod_suexec.html.tr.utf8 933share/httpd/manual/mod/mod_suexec.html.tr.utf8
909share/httpd/manual/mod/mod_unique_id.html 934share/httpd/manual/mod/mod_unique_id.html
910share/httpd/manual/mod/mod_unique_id.html.en 935share/httpd/manual/mod/mod_unique_id.html.en
911share/httpd/manual/mod/mod_unique_id.html.ja.utf8 936share/httpd/manual/mod/mod_unique_id.html.ja.utf8
912share/httpd/manual/mod/mod_unique_id.html.ko.euc-kr 937share/httpd/manual/mod/mod_unique_id.html.ko.euc-kr
913share/httpd/manual/mod/mod_userdir.html 938share/httpd/manual/mod/mod_userdir.html
914share/httpd/manual/mod/mod_userdir.html.en 939share/httpd/manual/mod/mod_userdir.html.en
915share/httpd/manual/mod/mod_userdir.html.ja.utf8 940share/httpd/manual/mod/mod_userdir.html.ja.utf8
916share/httpd/manual/mod/mod_userdir.html.ko.euc-kr 941share/httpd/manual/mod/mod_userdir.html.ko.euc-kr
917share/httpd/manual/mod/mod_userdir.html.tr.utf8 942share/httpd/manual/mod/mod_userdir.html.tr.utf8
918share/httpd/manual/mod/mod_usertrack.html 943share/httpd/manual/mod/mod_usertrack.html
@@ -945,60 +970,63 @@ share/httpd/manual/mod/mpmt_os2.html.en @@ -945,60 +970,63 @@ share/httpd/manual/mod/mpmt_os2.html.en
945share/httpd/manual/mod/prefork.html 970share/httpd/manual/mod/prefork.html
946share/httpd/manual/mod/prefork.html.de 971share/httpd/manual/mod/prefork.html.de
947share/httpd/manual/mod/prefork.html.en 972share/httpd/manual/mod/prefork.html.en
948share/httpd/manual/mod/prefork.html.ja.utf8 973share/httpd/manual/mod/prefork.html.ja.utf8
949share/httpd/manual/mod/prefork.html.tr.utf8 974share/httpd/manual/mod/prefork.html.tr.utf8
950share/httpd/manual/mod/quickreference.html 975share/httpd/manual/mod/quickreference.html
951share/httpd/manual/mod/quickreference.html.de 976share/httpd/manual/mod/quickreference.html.de
952share/httpd/manual/mod/quickreference.html.en 977share/httpd/manual/mod/quickreference.html.en
953share/httpd/manual/mod/quickreference.html.es 978share/httpd/manual/mod/quickreference.html.es
954share/httpd/manual/mod/quickreference.html.ja.utf8 979share/httpd/manual/mod/quickreference.html.ja.utf8
955share/httpd/manual/mod/quickreference.html.ko.euc-kr 980share/httpd/manual/mod/quickreference.html.ko.euc-kr
956share/httpd/manual/mod/quickreference.html.ru.koi8-r 981share/httpd/manual/mod/quickreference.html.ru.koi8-r
957share/httpd/manual/mod/quickreference.html.tr.utf8 982share/httpd/manual/mod/quickreference.html.tr.utf8
 983share/httpd/manual/mod/quickreference.html.zh-cn
958share/httpd/manual/mod/worker.html 984share/httpd/manual/mod/worker.html
959share/httpd/manual/mod/worker.html.de 985share/httpd/manual/mod/worker.html.de
960share/httpd/manual/mod/worker.html.en 986share/httpd/manual/mod/worker.html.en
961share/httpd/manual/mod/worker.html.ja.utf8 987share/httpd/manual/mod/worker.html.ja.utf8
962share/httpd/manual/mod/worker.html.tr.utf8 988share/httpd/manual/mod/worker.html.tr.utf8
963share/httpd/manual/mpm.html 989share/httpd/manual/mpm.html
964share/httpd/manual/mpm.html.de 990share/httpd/manual/mpm.html.de
965share/httpd/manual/mpm.html.en 991share/httpd/manual/mpm.html.en
966share/httpd/manual/mpm.html.es 992share/httpd/manual/mpm.html.es
967share/httpd/manual/mpm.html.fr 993share/httpd/manual/mpm.html.fr
968share/httpd/manual/mpm.html.ja.utf8 994share/httpd/manual/mpm.html.ja.utf8
969share/httpd/manual/mpm.html.ko.euc-kr 995share/httpd/manual/mpm.html.ko.euc-kr
970share/httpd/manual/mpm.html.tr.utf8 996share/httpd/manual/mpm.html.tr.utf8
 997share/httpd/manual/mpm.html.zh-cn
971share/httpd/manual/new_features_2_0.html 998share/httpd/manual/new_features_2_0.html
972share/httpd/manual/new_features_2_0.html.de 999share/httpd/manual/new_features_2_0.html.de
973share/httpd/manual/new_features_2_0.html.en 1000share/httpd/manual/new_features_2_0.html.en
974share/httpd/manual/new_features_2_0.html.fr 1001share/httpd/manual/new_features_2_0.html.fr
975share/httpd/manual/new_features_2_0.html.ja.utf8 1002share/httpd/manual/new_features_2_0.html.ja.utf8
976share/httpd/manual/new_features_2_0.html.ko.euc-kr 1003share/httpd/manual/new_features_2_0.html.ko.euc-kr
977share/httpd/manual/new_features_2_0.html.pt-br 1004share/httpd/manual/new_features_2_0.html.pt-br
978share/httpd/manual/new_features_2_0.html.ru.koi8-r 1005share/httpd/manual/new_features_2_0.html.ru.koi8-r
979share/httpd/manual/new_features_2_0.html.tr.utf8 1006share/httpd/manual/new_features_2_0.html.tr.utf8
980share/httpd/manual/new_features_2_2.html 1007share/httpd/manual/new_features_2_2.html
981share/httpd/manual/new_features_2_2.html.en 1008share/httpd/manual/new_features_2_2.html.en
982share/httpd/manual/new_features_2_2.html.fr 1009share/httpd/manual/new_features_2_2.html.fr
983share/httpd/manual/new_features_2_2.html.ko.euc-kr 1010share/httpd/manual/new_features_2_2.html.ko.euc-kr
984share/httpd/manual/new_features_2_2.html.pt-br 1011share/httpd/manual/new_features_2_2.html.pt-br
985share/httpd/manual/new_features_2_2.html.tr.utf8 1012share/httpd/manual/new_features_2_2.html.tr.utf8
986share/httpd/manual/platform/ebcdic.html 1013share/httpd/manual/platform/ebcdic.html
987share/httpd/manual/platform/ebcdic.html.en 1014share/httpd/manual/platform/ebcdic.html.en
988share/httpd/manual/platform/ebcdic.html.ko.euc-kr 1015share/httpd/manual/platform/ebcdic.html.ko.euc-kr
989share/httpd/manual/platform/index.html 1016share/httpd/manual/platform/index.html
990share/httpd/manual/platform/index.html.en 1017share/httpd/manual/platform/index.html.en
991share/httpd/manual/platform/index.html.ko.euc-kr 1018share/httpd/manual/platform/index.html.ko.euc-kr
 1019share/httpd/manual/platform/index.html.zh-cn
992share/httpd/manual/platform/netware.html 1020share/httpd/manual/platform/netware.html
993share/httpd/manual/platform/netware.html.en 1021share/httpd/manual/platform/netware.html.en
994share/httpd/manual/platform/netware.html.ko.euc-kr 1022share/httpd/manual/platform/netware.html.ko.euc-kr
995share/httpd/manual/platform/perf-hp.html 1023share/httpd/manual/platform/perf-hp.html
996share/httpd/manual/platform/perf-hp.html.en 1024share/httpd/manual/platform/perf-hp.html.en
997share/httpd/manual/platform/perf-hp.html.ko.euc-kr 1025share/httpd/manual/platform/perf-hp.html.ko.euc-kr
998share/httpd/manual/platform/win_compiling.html 1026share/httpd/manual/platform/win_compiling.html
999share/httpd/manual/platform/win_compiling.html.en 1027share/httpd/manual/platform/win_compiling.html.en
1000share/httpd/manual/platform/win_compiling.html.ko.euc-kr 1028share/httpd/manual/platform/win_compiling.html.ko.euc-kr
1001share/httpd/manual/platform/windows.html 1029share/httpd/manual/platform/windows.html
1002share/httpd/manual/platform/windows.html.en 1030share/httpd/manual/platform/windows.html.en
1003share/httpd/manual/platform/windows.html.ko.euc-kr 1031share/httpd/manual/platform/windows.html.ko.euc-kr
1004share/httpd/manual/programs/ab.html 1032share/httpd/manual/programs/ab.html
@@ -1039,77 +1067,97 @@ share/httpd/manual/programs/htpasswd.htm @@ -1039,77 +1067,97 @@ share/httpd/manual/programs/htpasswd.htm
1039share/httpd/manual/programs/httpd.html 1067share/httpd/manual/programs/httpd.html
1040share/httpd/manual/programs/httpd.html.en 1068share/httpd/manual/programs/httpd.html.en
1041share/httpd/manual/programs/httpd.html.ko.euc-kr 1069share/httpd/manual/programs/httpd.html.ko.euc-kr
1042share/httpd/manual/programs/httpd.html.tr.utf8 1070share/httpd/manual/programs/httpd.html.tr.utf8
1043share/httpd/manual/programs/httxt2dbm.html 1071share/httpd/manual/programs/httxt2dbm.html
1044share/httpd/manual/programs/httxt2dbm.html.en 1072share/httpd/manual/programs/httxt2dbm.html.en
1045share/httpd/manual/programs/httxt2dbm.html.tr.utf8 1073share/httpd/manual/programs/httxt2dbm.html.tr.utf8
1046share/httpd/manual/programs/index.html 1074share/httpd/manual/programs/index.html
1047share/httpd/manual/programs/index.html.en 1075share/httpd/manual/programs/index.html.en
1048share/httpd/manual/programs/index.html.es 1076share/httpd/manual/programs/index.html.es
1049share/httpd/manual/programs/index.html.ko.euc-kr 1077share/httpd/manual/programs/index.html.ko.euc-kr
1050share/httpd/manual/programs/index.html.ru.koi8-r 1078share/httpd/manual/programs/index.html.ru.koi8-r
1051share/httpd/manual/programs/index.html.tr.utf8 1079share/httpd/manual/programs/index.html.tr.utf8
 1080share/httpd/manual/programs/index.html.zh-cn
1052share/httpd/manual/programs/logresolve.html 1081share/httpd/manual/programs/logresolve.html
1053share/httpd/manual/programs/logresolve.html.en 1082share/httpd/manual/programs/logresolve.html.en
1054share/httpd/manual/programs/logresolve.html.ko.euc-kr 1083share/httpd/manual/programs/logresolve.html.ko.euc-kr
1055share/httpd/manual/programs/logresolve.html.tr.utf8 1084share/httpd/manual/programs/logresolve.html.tr.utf8
1056share/httpd/manual/programs/other.html 1085share/httpd/manual/programs/other.html
1057share/httpd/manual/programs/other.html.en 1086share/httpd/manual/programs/other.html.en
1058share/httpd/manual/programs/other.html.ko.euc-kr 1087share/httpd/manual/programs/other.html.ko.euc-kr
1059share/httpd/manual/programs/other.html.tr.utf8 1088share/httpd/manual/programs/other.html.tr.utf8
1060share/httpd/manual/programs/rotatelogs.html 1089share/httpd/manual/programs/rotatelogs.html
1061share/httpd/manual/programs/rotatelogs.html.en 1090share/httpd/manual/programs/rotatelogs.html.en
1062share/httpd/manual/programs/rotatelogs.html.ko.euc-kr 1091share/httpd/manual/programs/rotatelogs.html.ko.euc-kr
1063share/httpd/manual/programs/rotatelogs.html.tr.utf8 1092share/httpd/manual/programs/rotatelogs.html.tr.utf8
1064share/httpd/manual/programs/suexec.html 1093share/httpd/manual/programs/suexec.html
1065share/httpd/manual/programs/suexec.html.en 1094share/httpd/manual/programs/suexec.html.en
1066share/httpd/manual/programs/suexec.html.ko.euc-kr 1095share/httpd/manual/programs/suexec.html.ko.euc-kr
1067share/httpd/manual/programs/suexec.html.tr.utf8 1096share/httpd/manual/programs/suexec.html.tr.utf8
 1097share/httpd/manual/rewrite/access.html
 1098share/httpd/manual/rewrite/access.html.en
 1099share/httpd/manual/rewrite/advanced.html
 1100share/httpd/manual/rewrite/advanced.html.en
 1101share/httpd/manual/rewrite/avoid.html
 1102share/httpd/manual/rewrite/avoid.html.en
 1103share/httpd/manual/rewrite/flags.html
 1104share/httpd/manual/rewrite/flags.html.en
 1105share/httpd/manual/rewrite/flags.html.fr
 1106share/httpd/manual/rewrite/htaccess.html
 1107share/httpd/manual/rewrite/htaccess.html.en
1068share/httpd/manual/rewrite/index.html 1108share/httpd/manual/rewrite/index.html
1069share/httpd/manual/rewrite/index.html.en 1109share/httpd/manual/rewrite/index.html.en
 1110share/httpd/manual/rewrite/index.html.fr
1070share/httpd/manual/rewrite/index.html.tr.utf8 1111share/httpd/manual/rewrite/index.html.tr.utf8
1071share/httpd/manual/rewrite/rewrite_flags.html 1112share/httpd/manual/rewrite/index.html.zh-cn
1072share/httpd/manual/rewrite/rewrite_flags.html.en 1113share/httpd/manual/rewrite/intro.html
1073share/httpd/manual/rewrite/rewrite_guide.html 1114share/httpd/manual/rewrite/intro.html.en
1074share/httpd/manual/rewrite/rewrite_guide.html.en 1115share/httpd/manual/rewrite/intro.html.fr
1075share/httpd/manual/rewrite/rewrite_guide_advanced.html 1116share/httpd/manual/rewrite/proxy.html
1076share/httpd/manual/rewrite/rewrite_guide_advanced.html.en 1117share/httpd/manual/rewrite/proxy.html.en
1077share/httpd/manual/rewrite/rewrite_intro.html 1118share/httpd/manual/rewrite/remapping.html
1078share/httpd/manual/rewrite/rewrite_intro.html.en 1119share/httpd/manual/rewrite/remapping.html.en
1079share/httpd/manual/rewrite/rewrite_tech.html 1120share/httpd/manual/rewrite/rewritemap.html
1080share/httpd/manual/rewrite/rewrite_tech.html.en 1121share/httpd/manual/rewrite/rewritemap.html.en
 1122share/httpd/manual/rewrite/tech.html
 1123share/httpd/manual/rewrite/tech.html.en
 1124share/httpd/manual/rewrite/tech.html.fr
 1125share/httpd/manual/rewrite/vhosts.html
 1126share/httpd/manual/rewrite/vhosts.html.en
1081share/httpd/manual/sections.html 1127share/httpd/manual/sections.html
1082share/httpd/manual/sections.html.en 1128share/httpd/manual/sections.html.en
1083share/httpd/manual/sections.html.fr 1129share/httpd/manual/sections.html.fr
1084share/httpd/manual/sections.html.ja.utf8 1130share/httpd/manual/sections.html.ja.utf8
1085share/httpd/manual/sections.html.ko.euc-kr 1131share/httpd/manual/sections.html.ko.euc-kr
1086share/httpd/manual/sections.html.tr.utf8 1132share/httpd/manual/sections.html.tr.utf8
1087share/httpd/manual/server-wide.html 1133share/httpd/manual/server-wide.html
1088share/httpd/manual/server-wide.html.en 1134share/httpd/manual/server-wide.html.en
1089share/httpd/manual/server-wide.html.ja.utf8 1135share/httpd/manual/server-wide.html.ja.utf8
1090share/httpd/manual/server-wide.html.ko.euc-kr 1136share/httpd/manual/server-wide.html.ko.euc-kr
1091share/httpd/manual/server-wide.html.tr.utf8 1137share/httpd/manual/server-wide.html.tr.utf8
1092share/httpd/manual/sitemap.html 1138share/httpd/manual/sitemap.html
1093share/httpd/manual/sitemap.html.de 1139share/httpd/manual/sitemap.html.de
1094share/httpd/manual/sitemap.html.en 1140share/httpd/manual/sitemap.html.en
1095share/httpd/manual/sitemap.html.es 1141share/httpd/manual/sitemap.html.es
1096share/httpd/manual/sitemap.html.ja.utf8 1142share/httpd/manual/sitemap.html.ja.utf8
1097share/httpd/manual/sitemap.html.ko.euc-kr 1143share/httpd/manual/sitemap.html.ko.euc-kr
1098share/httpd/manual/sitemap.html.tr.utf8 1144share/httpd/manual/sitemap.html.tr.utf8
 1145share/httpd/manual/sitemap.html.zh-cn
1099share/httpd/manual/ssl/index.html 1146share/httpd/manual/ssl/index.html
1100share/httpd/manual/ssl/index.html.en 1147share/httpd/manual/ssl/index.html.en
1101share/httpd/manual/ssl/index.html.ja.utf8 1148share/httpd/manual/ssl/index.html.ja.utf8
1102share/httpd/manual/ssl/index.html.tr.utf8 1149share/httpd/manual/ssl/index.html.tr.utf8
 1150share/httpd/manual/ssl/index.html.zh-cn
1103share/httpd/manual/ssl/ssl_compat.html 1151share/httpd/manual/ssl/ssl_compat.html
1104share/httpd/manual/ssl/ssl_compat.html.en 1152share/httpd/manual/ssl/ssl_compat.html.en
1105share/httpd/manual/ssl/ssl_faq.html 1153share/httpd/manual/ssl/ssl_faq.html
1106share/httpd/manual/ssl/ssl_faq.html.en 1154share/httpd/manual/ssl/ssl_faq.html.en
1107share/httpd/manual/ssl/ssl_howto.html 1155share/httpd/manual/ssl/ssl_howto.html
1108share/httpd/manual/ssl/ssl_howto.html.en 1156share/httpd/manual/ssl/ssl_howto.html.en
1109share/httpd/manual/ssl/ssl_intro.html 1157share/httpd/manual/ssl/ssl_intro.html
1110share/httpd/manual/ssl/ssl_intro.html.en 1158share/httpd/manual/ssl/ssl_intro.html.en
1111share/httpd/manual/ssl/ssl_intro.html.ja.utf8 1159share/httpd/manual/ssl/ssl_intro.html.ja.utf8
1112share/httpd/manual/stopping.html 1160share/httpd/manual/stopping.html
1113share/httpd/manual/stopping.html.de 1161share/httpd/manual/stopping.html.de
1114share/httpd/manual/stopping.html.en 1162share/httpd/manual/stopping.html.en
1115share/httpd/manual/stopping.html.es 1163share/httpd/manual/stopping.html.es
@@ -1124,26 +1172,27 @@ share/httpd/manual/style/css/manual-loos @@ -1124,26 +1172,27 @@ share/httpd/manual/style/css/manual-loos
1124share/httpd/manual/style/css/manual-print.css 1172share/httpd/manual/style/css/manual-print.css
1125share/httpd/manual/style/css/manual-zip-100pc.css 1173share/httpd/manual/style/css/manual-zip-100pc.css
1126share/httpd/manual/style/css/manual-zip.css 1174share/httpd/manual/style/css/manual-zip.css
1127share/httpd/manual/style/css/manual.css 1175share/httpd/manual/style/css/manual.css
1128share/httpd/manual/style/faq.dtd 1176share/httpd/manual/style/faq.dtd
1129share/httpd/manual/style/lang.dtd 1177share/httpd/manual/style/lang.dtd
1130share/httpd/manual/style/latex/atbeginend.sty 1178share/httpd/manual/style/latex/atbeginend.sty
1131share/httpd/manual/style/manualpage.dtd 1179share/httpd/manual/style/manualpage.dtd
1132share/httpd/manual/style/modulesynopsis.dtd 1180share/httpd/manual/style/modulesynopsis.dtd
1133share/httpd/manual/style/sitemap.dtd 1181share/httpd/manual/style/sitemap.dtd
1134share/httpd/manual/style/version.ent 1182share/httpd/manual/style/version.ent
1135share/httpd/manual/suexec.html 1183share/httpd/manual/suexec.html
1136share/httpd/manual/suexec.html.en 1184share/httpd/manual/suexec.html.en
 1185share/httpd/manual/suexec.html.fr
1137share/httpd/manual/suexec.html.ja.utf8 1186share/httpd/manual/suexec.html.ja.utf8
1138share/httpd/manual/suexec.html.ko.euc-kr 1187share/httpd/manual/suexec.html.ko.euc-kr
1139share/httpd/manual/suexec.html.tr.utf8 1188share/httpd/manual/suexec.html.tr.utf8
1140share/httpd/manual/upgrading.html 1189share/httpd/manual/upgrading.html
1141share/httpd/manual/upgrading.html.de 1190share/httpd/manual/upgrading.html.de
1142share/httpd/manual/upgrading.html.en 1191share/httpd/manual/upgrading.html.en
1143share/httpd/manual/upgrading.html.fr 1192share/httpd/manual/upgrading.html.fr
1144share/httpd/manual/urlmapping.html 1193share/httpd/manual/urlmapping.html
1145share/httpd/manual/urlmapping.html.en 1194share/httpd/manual/urlmapping.html.en
1146share/httpd/manual/urlmapping.html.ja.utf8 1195share/httpd/manual/urlmapping.html.ja.utf8
1147share/httpd/manual/urlmapping.html.ko.euc-kr 1196share/httpd/manual/urlmapping.html.ko.euc-kr
1148share/httpd/manual/urlmapping.html.tr.utf8 1197share/httpd/manual/urlmapping.html.tr.utf8
1149share/httpd/manual/vhosts/details.html 1198share/httpd/manual/vhosts/details.html
@@ -1161,26 +1210,27 @@ share/httpd/manual/vhosts/fd-limits.html @@ -1161,26 +1210,27 @@ share/httpd/manual/vhosts/fd-limits.html
1161share/httpd/manual/vhosts/fd-limits.html.en 1210share/httpd/manual/vhosts/fd-limits.html.en
1162share/httpd/manual/vhosts/fd-limits.html.fr 1211share/httpd/manual/vhosts/fd-limits.html.fr
1163share/httpd/manual/vhosts/fd-limits.html.ja.utf8 1212share/httpd/manual/vhosts/fd-limits.html.ja.utf8
1164share/httpd/manual/vhosts/fd-limits.html.ko.euc-kr 1213share/httpd/manual/vhosts/fd-limits.html.ko.euc-kr
1165share/httpd/manual/vhosts/fd-limits.html.tr.utf8 1214share/httpd/manual/vhosts/fd-limits.html.tr.utf8
1166share/httpd/manual/vhosts/index.html 1215share/httpd/manual/vhosts/index.html
1167share/httpd/manual/vhosts/index.html.de 1216share/httpd/manual/vhosts/index.html.de
1168share/httpd/manual/vhosts/index.html.en 1217share/httpd/manual/vhosts/index.html.en
1169share/httpd/manual/vhosts/index.html.fr 1218share/httpd/manual/vhosts/index.html.fr
1170share/httpd/manual/vhosts/index.html.ja.utf8 1219share/httpd/manual/vhosts/index.html.ja.utf8
1171share/httpd/manual/vhosts/index.html.ko.euc-kr 1220share/httpd/manual/vhosts/index.html.ko.euc-kr
1172share/httpd/manual/vhosts/index.html.ru.koi8-r 1221share/httpd/manual/vhosts/index.html.ru.koi8-r
1173share/httpd/manual/vhosts/index.html.tr.utf8 1222share/httpd/manual/vhosts/index.html.tr.utf8
 1223share/httpd/manual/vhosts/index.html.zh-cn
1174share/httpd/manual/vhosts/ip-based.html 1224share/httpd/manual/vhosts/ip-based.html
1175share/httpd/manual/vhosts/ip-based.html.en 1225share/httpd/manual/vhosts/ip-based.html.en
1176share/httpd/manual/vhosts/ip-based.html.fr 1226share/httpd/manual/vhosts/ip-based.html.fr
1177share/httpd/manual/vhosts/ip-based.html.ja.utf8 1227share/httpd/manual/vhosts/ip-based.html.ja.utf8
1178share/httpd/manual/vhosts/ip-based.html.ko.euc-kr 1228share/httpd/manual/vhosts/ip-based.html.ko.euc-kr
1179share/httpd/manual/vhosts/ip-based.html.tr.utf8 1229share/httpd/manual/vhosts/ip-based.html.tr.utf8
1180share/httpd/manual/vhosts/mass.html 1230share/httpd/manual/vhosts/mass.html
1181share/httpd/manual/vhosts/mass.html.en 1231share/httpd/manual/vhosts/mass.html.en
1182share/httpd/manual/vhosts/mass.html.ko.euc-kr 1232share/httpd/manual/vhosts/mass.html.ko.euc-kr
1183share/httpd/manual/vhosts/mass.html.tr.utf8 1233share/httpd/manual/vhosts/mass.html.tr.utf8
1184share/httpd/manual/vhosts/name-based.html 1234share/httpd/manual/vhosts/name-based.html
1185share/httpd/manual/vhosts/name-based.html.de 1235share/httpd/manual/vhosts/name-based.html.de
1186share/httpd/manual/vhosts/name-based.html.en 1236share/httpd/manual/vhosts/name-based.html.en

cvs diff -r1.36 -r1.37 pkgsrc/www/apache22/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/www/apache22/Attic/distinfo 2011/03/20 03:18:21 1.36
+++ pkgsrc/www/apache22/Attic/distinfo 2011/05/12 06:50:44 1.37
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1$NetBSD: distinfo,v 1.36 2011/03/20 03:18:21 dholland Exp $ 1$NetBSD: distinfo,v 1.37 2011/05/12 06:50:44 tron Exp $
2 2
3SHA1 (httpd-2.2.17.tar.bz2) = 5c9b44620dee449a86ba1bcba1715033c2c26b08 3SHA1 (httpd-2.2.18.tar.bz2) = da69107a9c70dcd719432aa3e8ce0fda5d14fb5f
4RMD160 (httpd-2.2.17.tar.bz2) = 4a2f16f2891094d4176565fadf0e8fcadf7dbaff 4RMD160 (httpd-2.2.18.tar.bz2) = c3e5ac2deba19c609ce761ea0c5b791f96e1e931
5Size (httpd-2.2.17.tar.bz2) = 4951247 bytes 5Size (httpd-2.2.18.tar.bz2) = 5323067 bytes
6SHA1 (patch-aa) = e0bfdf6bc9cb034bea46a390a12a5508e363c9a7 6SHA1 (patch-aa) = e0bfdf6bc9cb034bea46a390a12a5508e363c9a7
7SHA1 (patch-ab) = 365cc3b0ac2d9d68ccb94f5699fe168a1c9b0150 7SHA1 (patch-ab) = 365cc3b0ac2d9d68ccb94f5699fe168a1c9b0150
8SHA1 (patch-ac) = 515043b5c215d49fe8f6d3191b502c978e2a2dad 8SHA1 (patch-ac) = 515043b5c215d49fe8f6d3191b502c978e2a2dad
9SHA1 (patch-ad) = 088d6ff0e7a8acfe70b4f85a6ce58d42c935fd13 9SHA1 (patch-ad) = 088d6ff0e7a8acfe70b4f85a6ce58d42c935fd13
10SHA1 (patch-ae) = 86b307d6eefef232b6223afc3f69e64be40bd913 10SHA1 (patch-ae) = 86b307d6eefef232b6223afc3f69e64be40bd913
11SHA1 (patch-af) = 312d3bce5e1bf6e747b5f0f313d89bf5b4636392 11SHA1 (patch-af) = 312d3bce5e1bf6e747b5f0f313d89bf5b4636392
12SHA1 (patch-ag) = 78dcb023f524ef65928b529320932c9664ec0d01 12SHA1 (patch-ag) = 78dcb023f524ef65928b529320932c9664ec0d01
13SHA1 (patch-ai) = 4ebc3bd580a298973928eb6d13d2ce745eac0312 13SHA1 (patch-ai) = 4ebc3bd580a298973928eb6d13d2ce745eac0312
14SHA1 (patch-al) = 56b9f5c2f6fd01fe5067f9210e328cbf674c68f1 14SHA1 (patch-al) = 56b9f5c2f6fd01fe5067f9210e328cbf674c68f1
15SHA1 (patch-am) = ab4a2f7e5a1a3064e908b61157e7fd349c0b0c08 15SHA1 (patch-am) = ab4a2f7e5a1a3064e908b61157e7fd349c0b0c08
16SHA1 (patch-aw) = ca53d67beeb2c2c4d9adb04d3d79e24a8c427fd4 16SHA1 (patch-aw) = ca53d67beeb2c2c4d9adb04d3d79e24a8c427fd4