<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
<blockquote>
<strong>Warning:</strong> This document has not been updated
return NULL;
}
</pre>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="../images/index.gif" alt="Index" /></a>
+ <a href="../"><img src="../images/home.gif" alt="Home" /></a>
+
+
+
</body>
</html>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
<h1 align="center">\e$B%b%8%e!<%k$r\e(B Apache 1.3 \e$B$+$i\e(B Apache 2.0 \e$B$X\e(B</h1>
<li>ap_hook_type_checker <em>(\e$BJ8=q7?$N7hDj$H@_Dj!#$"$k$$$O$=$NJRJ}\e(B)</em></li>
</ul>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="../images/index.gif" alt="Index" /></a>
+ <a href="../"><img src="../images/home.gif" alt="Home" /></a>
+
+
+
</body>
</html>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
+
<h1 align="center">µ¿Àû°øÀ¯°´Ã¼ (DSO) Áö¿ø</h1>
´Ù¸¥ Äڵ带 »ç¿ëÇÏ´Â ¹æ¹ýÀº ¾ÆÆÄÄ¡ ÇÙ½ÉÀÌ ±×°ÍÀ» ÂüÁ¶ÇÏ´øÁö,
<code>dlopen()</code>À¸·Î Á÷Á¢ Äڵ带 ÀоîµéÀÌ´Â °ÍÀÌ´Ù.</li>
</ul>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="images/index.gif" alt="Index" /></a>
+
+
+
</body>
</html>
+++ /dev/null
-#!/usr/bin/perl
-
-# This is a very simple Perl script to expand server-side includes
-# in the directory it is run, and direct subdirectories. It will
-# work only on SSI directives of the form
-#
-# <!--#include virtual="filename" -->
-#
-# Filename must be relative to the directory the file appears in.
-#
-# Nov 30, 1996 - Alexei Kosut <akosut@apache.org>
-
-# ====================================================================
-# The Apache Software License, Version 1.1
-#
-# Copyright (c) 2000-2003 The Apache Software Foundation. All rights
-# reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in
-# the documentation and/or other materials provided with the
-# distribution.
-#
-# 3. The end-user documentation included with the redistribution,
-# if any, must include the following acknowledgment:
-# "This product includes software developed by the
-# Apache Software Foundation (http://www.apache.org/)."
-# Alternately, this acknowledgment may appear in the software itself,
-# if and wherever such third-party acknowledgments normally appear.
-#
-# 4. The names "Apache" and "Apache Software Foundation" must
-# not be used to endorse or promote products derived from this
-# software without prior written permission. For written
-# permission, please contact apache@apache.org.
-#
-# 5. Products derived from this software may not be called "Apache",
-# nor may "Apache" appear in their name, without prior written
-# permission of the Apache Software Foundation.
-#
-# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
-# ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
-# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
-# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-# SUCH DAMAGE.
-# ====================================================================
-#
-# This software consists of voluntary contributions made by many
-# individuals on behalf of the Apache Software Foundation. For more
-# information on the Apache Software Foundation, please see
-# <http://www.apache.org/>.
-#
-
-# Put a list of dirs (except ..) into @dirs
-
-opendir DIR, "." or die "Could not open directory: $!";
-@dirs = grep !/^\.\.$/, (grep -d, readdir DIR);
-closedir DIR;
-
-foreach $dir (@dirs) {
- print "Entering directory $dir\n";
- opendir SUBDIR, "$dir" or die "Could not open subdir $dir: $!";
- foreach $file (grep /\.html(\.[^.]+)*$/, readdir SUBDIR) {
- print "Expanding file $dir/$file\n";
- rename "$dir/$file", "$dir/${file}.old";
- open READ, "$dir/${file}.old" or die "Couldn't read $dir/$file: $!";
- open WRITE, ">$dir/$file" or die "Couldn't write $dir/$file: $!";
- while ($r = <READ>) {
- if ($r =~ /<!--#include virtual="(.*)" -->/) {
- ($pre, $include, $post) = ($`, $1, $');
- print WRITE $pre;
-
- open INC, "$dir/$include" or
- print "Could not include file $dir/$include: $!";
- print WRITE while (<INC>);
- close INC;
-
- print WRITE $post;
- }
- else {
- print WRITE $r;
- }
- }
- close READ;
- close WRITE;
- unlink "$dir/$file.old";
- }
- closedir SUBDIR;
-}
-
-
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
<h1 align="center">\e$BG'>Z\e(B</h1>
<a id="__index__" name="__index__"></a> <!-- INDEX BEGIN -->
</tr>
</table>
</div>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="images/index.gif" alt="Index" /></a>
+
+
+
</body>
</html>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
+
<h1 align="center">ÄÄÆÄÀϰú ¼³Ä¡</h1>
<blockquote>
<code>$ <em>PREFIX</em>/bin/apachectl stop</code>
</blockquote>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="images/index.gif" alt="Index" /></a>
+
+
+
</body>
</html>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
+
<h1 align="center">¾ÆÆÄÄ¡ ´ÙÁßó¸® ¸ðµâ</h1>
<li>À©µµ¿ìÁî: winnt</li>
</ul>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="images/index.gif" alt="Index" /></a>
+
+
+
</body>
</html>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
+
<h1 align="center">Aperçu des nouvelles
fonctionnalités d'Apache 2.0</h1>
dans la version d'Apache 1.3, en ajoutant davantage de
possibilités de cache.</dd>
</dl>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="images/index.gif" alt="Index" /></a>
+
+
+
</body>
</html>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
+
<h1 align="center">Apache 2.0ÀÇ »õ·Î¿î ±â´É °³¿ä</h1>
</dl>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="images/index.gif" alt="Index" /></a>
+
+
+
</body>
</html>
<body bgcolor="#ffffff" text="#000000" link="#0000ff"
vlink="#000080" alink="#ff0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
<h1 align="center">Manual Page: ab</h1>
<!-- This document was autogenerated from the man page -->
<strong>httpd(8)</strong>
</pre>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="../images/index.gif" alt="Index" /></a>
+ <a href="../"><img src="../images/home.gif" alt="Home" /></a>
+
+
</body>
</html>
<body bgcolor="#ffffff" text="#000000" link="#0000ff"
vlink="#000080" alink="#ff0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
<h1 align="center">Manual Page: apxs</h1>
<!-- This document was autogenerated from the man page -->
<strong>apachectl(1), httpd(8).</strong>
</pre>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="../images/index.gif" alt="Index" /></a>
+ <a href="../"><img src="../images/home.gif" alt="Home" /></a>
+
+
</body>
</html>
<body bgcolor="#ffffff" text="#000000" link="#0000ff"
vlink="#000080" alink="#ff0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
<h1 align="center">Manual Page: dbmmanage</h1>
<!-- This document was autogenerated from the man page -->
<strong>httpd(8)</strong>
</pre>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="../images/index.gif" alt="Index" /></a>
+ <a href="../"><img src="../images/home.gif" alt="Home" /></a>
+
+
</body>
</html>
<body bgcolor="#ffffff" text="#000000" link="#0000ff"
vlink="#000080" alink="#ff0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
<h1 align="center">Manual Page: htdigest</h1>
<!-- This document was autogenerated from the man page -->
<strong>httpd(8)</strong>
</pre>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="../images/index.gif" alt="Index" /></a>
+ <a href="../"><img src="../images/home.gif" alt="Home" /></a>
+
+
</body>
</html>
<body bgcolor="#ffffff" text="#000000" link="#0000ff"
vlink="#000080" alink="#ff0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
<h1 align="center">Manual Page: htpasswd</h1>
<!-- This document was autogenerated from the man page -->
distribution.
</pre>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="../images/index.gif" alt="Index" /></a>
+ <a href="../"><img src="../images/home.gif" alt="Home" /></a>
+
+
</body>
</html>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
<h1 align="center">Other Programs</h1>
<p>The combined log file is read from stdin. Records read will
be appended to any existing log files.</p>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="../images/index.gif" alt="Index" /></a>
+ <a href="../"><img src="../images/home.gif" alt="Home" /></a>
+
+
</body>
</html>
<body bgcolor="#ffffff" text="#000000" link="#0000ff"
vlink="#000080" alink="#ff0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
<h1 align="center">Manual Page: suexec</h1>
<!-- This document was autogenerated from the man page -->
<strong>httpd(8)</strong>
</pre>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="../images/index.gif" alt="Index" /></a>
+ <a href="../"><img src="../images/home.gif" alt="Home" /></a>
+
+
</body>
</html>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
+
<h1 align="center">Mise à de la version 1.3 à la
version 2.0</h1>
<strong>ne fonctionneront pas</strong> sur Apache 2.0 sans
modifications. Plus de détails sont fournis dans la <a
href="developer/">documentation du développeur</a>.</p>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="images/index.gif" alt="Index" /></a>
+
+
+
</body>
</html>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
+
<h1 align="center">1.3¿¡¼ 2.0À¸·Î ¾÷±×·¹À̵å</h1>
¸ÂÃçÁø ±âÁ¸ ¸ðµâÀº ¼öÁ¤¾øÀÌ Apache 2.0¿¡¼ »ç¿ëÇÒ ¼ö
<strong>¾ø´Ù</strong>. ÀÚ¼¼ÇÑ Á¤º¸´Â <a href="developer/">°³¹ßÀÚ
¹®¼</a>¸¦ Âü°íÇ϶ó.</p>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="images/index.gif" alt="Index" /></a>
+
+
+
</body>
</html>
<!-- English revision: 1.17 -->
<body bgcolor="#ffffff" text="#000000" link="#0000ff"
vlink="#000080" alink="#ff0000">
- <!--#include virtual="header.html" -->
+ <div align="center">
+ <img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]" />
+
+ <h3>Apache HTTP Server Version 2.1</h3>
+ </div>
+
+
+
<p>\e$B$3$NJ8=q$G$OL>A0%Y!<%9$N%P!<%A%c%k%[%9%H$r$I$s$J$H$-!"\e(B
\e$B$^$?$I$&$d$C$F;H$&$N$+$H$$$&$3$H$r@bL@$7$^$9!#\e(B</p>
\e$B:n@.$7$?%Z!<%8$,8+$($k$H$$$&$3$H$rJ]>Z$7$^$9!#\e(B</p>
<p>\e$B;29M\e(B: <a href="examples.html#serverpath">ServerPath \e$B@_DjNc\e(B</a></p>
- <!--#include virtual="footer.html" -->
+ <hr />
+
+ <h3 align="center">Apache HTTP Server Version 2.1</h3>
+ <a href="./"><img src="../images/index.gif" alt="Index" /></a>
+ <a href="../"><img src="../images/home.gif" alt="Home" /></a>
+
</body>
</html>