You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/05/06 18:03:57 UTC

svn commit: r1334673 - in /httpd/site/trunk/content/test/flood: building.mdtext building.xml faq.mdtext faq.xml index.mdtext index.xml

Author: humbedooh
Date: Sun May  6 16:03:56 2012
New Revision: 1334673

URL: http://svn.apache.org/viewvc?rev=1334673&view=rev
Log:
updates for test/flood

Added:
    httpd/site/trunk/content/test/flood/building.mdtext
      - copied, changed from r1334665, httpd/site/trunk/content/test/flood/building.xml
    httpd/site/trunk/content/test/flood/faq.mdtext
      - copied, changed from r1334665, httpd/site/trunk/content/test/flood/faq.xml
    httpd/site/trunk/content/test/flood/index.mdtext
      - copied, changed from r1334665, httpd/site/trunk/content/test/flood/index.xml
Removed:
    httpd/site/trunk/content/test/flood/building.xml
    httpd/site/trunk/content/test/flood/faq.xml
    httpd/site/trunk/content/test/flood/index.xml

Copied: httpd/site/trunk/content/test/flood/building.mdtext (from r1334665, httpd/site/trunk/content/test/flood/building.xml)
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/test/flood/building.mdtext?p2=httpd/site/trunk/content/test/flood/building.mdtext&p1=httpd/site/trunk/content/test/flood/building.xml&r1=1334665&r2=1334673&rev=1334673&view=diff
==============================================================================
--- httpd/site/trunk/content/test/flood/building.xml (original)
+++ httpd/site/trunk/content/test/flood/building.mdtext Sun May  6 16:03:56 2012
@@ -1,129 +1,113 @@
-<?xml version="1.0"?>
-<document>
-  <properties>
-    <author email="docs@httpd.apache.org">Documentation Group</author>
-    <title>Compiling and running Flood</title>
-  </properties>
-<body>
-
-<section id="Overview">
-<title>Overview</title>
-<p>This document explains how to compile and run flood.</p>
-
-<p>Flood is built around 
-<a href="http://apr.apache.org/">Apache Portable Runtime</a> - specifically 
-apr and apr-util.</p>
-
-<p>Flood has been primarily developed on Linux and Solaris.  FreeBSD is also
-known to work.  Since flood is built around APR, any APR-supported platform
-should work without too much hassle.  We expect Win32 would work with some 
-additional magic provided someone has the time and inclination to do so.  
-APR has completed most of the dirty work, but none of the current flood 
-developers use Win32.</p>
-</section>
+Title: Compiling and running Flood
+Notice:    Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you under the Apache License, Version 2.0 (the
+           "License"); you may not use this file except in compliance
+           with the License.  You may obtain a copy of the License at
+           .
+             http://www.apache.org/licenses/LICENSE-2.0
+           .
+           Unless required by applicable law or agreed to in writing,
+           software distributed under the License is distributed on an
+           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+           KIND, either express or implied.  See the License for the
+           specific language governing permissions and limitations
+           under the License.
+
+# Overview # {#Overview}
+
+This document explains how to compile and run flood.
+
+Flood is built around [Apache Portable Runtime](http://apr.apache.org/) -
+specifically apr and apr-util.
+
+Flood has been primarily developed on Linux and Solaris. FreeBSD is also
+known to work. Since flood is built around APR, any APR-supported platform
+should work without too much hassle. We expect Win32 would work with some
+additional magic provided someone has the time and inclination to do so.
+APR has completed most of the dirty work, but none of the current flood
+developers use Win32.
 
-<section id="Checkout">
-<title>Checking out flood</title>
+# Checking out flood # {#Checkout}
 
-<p>The current copy of flood is available via Subversion.  Flood also depends
+The current copy of flood is available via Subversion. Flood also depends
 on the apr and apr-util packages available from the same Subversion
-repository.</p>
+repository.
 
-<p><b><font color="red">Note:</font></b> Flood will automatically detect
-and configure APR and APR-util if they are in the appropriate 
-subdirectories.  If you have an already installed copy of APR and 
-APR-util (such as the ones that come with httpd-2.0 or Subversion), you 
-may specify --with-apr and --with-apr-util at configure-time.</p>
-
-<pre>
- % svn co http://svn.apache.org/repos/asf/httpd/flood/trunk flood
- % cd flood
- % svn co http://svn.apache.org/repos/asf/apr/apr/trunk apr
- % svn co http://svn.apache.org/repos/asf/apr/apr-util/trunk apr-util
-</pre>
-</section>
-
-<section id="Configuring">
-<title>Configuring flood and its dependencies</title>
-
-<p>Now that you have all of the required modules checked out, you now
-need to generate the configure scripts and execute them for your
-platform.</p>
-
-<h3>Flood and SSL support</h3>
-<p><b><font color="red">Note:</font></b> SSL support is <b>not</b> 
-enabled by default in flood.  If you wish to enable SSL support, you 
-must specify <code>--enable-ssl</code> when configuring flood.</p>
-
-<p>If you attempt to run flood against a https URL without SSL
-support compiled-in, you will receive an error similar to the 
-following:</p>
-
-<pre>
- % ./flood examples/round-robin-ssl.xml
- open request failed (https://www.modssl.org/example/test.phtml).
- Error running farmer 'Joe': This function has not been implemented on this
- platform
-</pre>
-
-<p>The <code>--enable-ssl</code> option enables detection of the
-OpenSSL libraries.  If flood can not automatically detect OpenSSL, 
-you will need to specify <code>--with-openssl</code> to point at 
-the appropriate installed version of OpenSSL.  The 
-<code>--with-capath</code> option points at a directory that contains 
-the Certificate Authorities (<b>CA</b>s) for OpenSSL.  The default 
-capath is in <code>$openssl_prefix/certs</code>.</p>
-
-<h3>Running configure from the flood directory</h3>
-<pre>
- % ./buildconf
- % ./configure --disable-shared
-</pre>
-</section>
-
-<section id="Compiling">
-<title>Compiling flood and its dependencies</title>
-
-<p>In this example, APR and apr-util will automatically be built with
-flood.  So, you only need to issue a make in the flood directory.</p>
-
-<pre>
- % make all
-</pre>
-</section>
-
-<section id="Running">
-<title>Running flood</title>
-
-<p>By default, flood is a static executable, so the executable is 
-relocatable.  There are some example flood profiles in the examples/
-directory from CVS.</p>
-
-<pre>
- % ./flood examples/round-robin.xml &gt; foo.out
-</pre>
-</section>
-
-<section id="Analysis">
-<title>Analyzing flood output</title>
-
-<p>The foo.out file generated above is in a simple easy-to-parse format.
-There are some included shell and awk scripts in the examples directory
-that provide some easy mechanisms to extract info from the flood output
-files.</p>
-
-<pre>
- % ./examples/analyze-relative foo.out
-</pre>
-</section>
-
-<section id="Questions">
-<title>Questions</title>
-
-<p>This should provide a quick and easy way to jumpstart your flood
-installation.  If you have any questions, please email the 
-dev@httpd.apache.org mailing list.</p>
-</section>
+**<font color="red">Note:</font>** Flood will automatically detect and
+configure APR and APR-util if they are in the appropriate subdirectories.
+If you have an already installed copy of APR and APR-util (such as the ones
+that come with httpd-2.0 or Subversion), you may specify --with-apr and
+--with-apr-util at configure-time.
+`
+% svn co http://svn.apache.org/repos/asf/httpd/flood/trunk flood
+% cd flood
+% svn co http://svn.apache.org/repos/asf/apr/apr/trunk apr
+% svn co http://svn.apache.org/repos/asf/apr/apr-util/trunk apr-util
+` 
+
+# Configuring flood and its dependencies # {#Configuring}
+
+Now that you have all of the required modules checked out, you now need to
+generate the configure scripts and execute them for your platform.
+
+### Flood and SSL support ###
+
+**<font color="red">Note:</font>** SSL support is **not** enabled by
+default in flood. If you wish to enable SSL support, you must specify
+`--enable-ssl` when configuring flood.
+
+If you attempt to run flood against a https URL without SSL support
+compiled-in, you will receive an error similar to the following:
+`
+%./flood examples/round-robin-ssl.xml
+open request failed (https://www.modssl.org/example/test.phtml).
+Error running farmer 'Joe': This function has not been implemented on this
+platform
+` 
+The `--enable-ssl` option enables detection of the OpenSSL libraries. If
+flood can not automatically detect OpenSSL, you will need to specify
+`--with-openssl` to point at the appropriate installed version of OpenSSL.
+The `--with-capath` option points at a directory that contains the
+Certificate Authorities ( **CA** s) for OpenSSL. The default capath is in
+`$openssl_prefix/certs`.
+
+### Running configure from the flood directory ###
+`
+%./buildconf
+%./configure --disable-shared
+` 
+
+# Compiling flood and its dependencies # {#Compiling}
+
+In this example, APR and apr-util will automatically be built with flood.
+So, you only need to issue a make in the flood directory.
+`
+% make all
+` 
+
+# Running flood # {#Running}
+
+By default, flood is a static executable, so the executable is relocatable.
+There are some example flood profiles in the examples/ directory from CVS.
+`
+%./flood examples/round-robin.xml &gt; foo.out
+` 
+
+# Analyzing flood output # {#Analysis}
+
+The foo.out file generated above is in a simple easy-to-parse format. There
+are some included shell and awk scripts in the examples directory that
+provide some easy mechanisms to extract info from the flood output files.
+`
+%./examples/analyze-relative foo.out
+` 
+
+# Questions # {#Questions}
+
+This should provide a quick and easy way to jumpstart your flood
+installation. If you have any questions, please email the
+dev@httpd.apache.org mailing list.
 
-</body>
-</document>

Copied: httpd/site/trunk/content/test/flood/faq.mdtext (from r1334665, httpd/site/trunk/content/test/flood/faq.xml)
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/test/flood/faq.mdtext?p2=httpd/site/trunk/content/test/flood/faq.mdtext&p1=httpd/site/trunk/content/test/flood/faq.xml&r1=1334665&r2=1334673&rev=1334673&view=diff
==============================================================================
--- httpd/site/trunk/content/test/flood/faq.xml (original)
+++ httpd/site/trunk/content/test/flood/faq.mdtext Sun May  6 16:03:56 2012
@@ -1,88 +1,76 @@
-<?xml version="1.0"?>
-<document>
-  <properties>
-    <author email="docs@httpd.apache.org">Documentation Group</author>
-    <title>FAQ</title>
-  </properties>
-<body>
+Title: FAQ
+Notice:    Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you under the Apache License, Version 2.0 (the
+           "License"); you may not use this file except in compliance
+           with the License.  You may obtain a copy of the License at
+           .
+             http://www.apache.org/licenses/LICENSE-2.0
+           .
+           Unless required by applicable law or agreed to in writing,
+           software distributed under the License is distributed on an
+           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+           KIND, either express or implied.  See the License for the
+           specific language governing permissions and limitations
+           under the License.
 
-<section id="Questions">
-<title>Frequently Asked Questions</title>
+# Frequently Asked Questions # {#Questions}
 
-<ul>
-<li><a href="#WhatIsFlood">What is Flood?</a></li>
-<li><a href="#FloodFeatures">What are some of the features of Flood?</a></li>
-<li><a href="#FloodRegex">How does Flood retrieve variables from pages?</a></li>
-<li><a href="#FloodSSL">Can I use Flood with SSL sites?</a></li>
-<li><a href="#TCPFIN">Flood seems like it is stalling.</a></li>
-</ul>
-</section>
+-  [What is Flood?](#WhatIsFlood) 
 
-<section id="WhatIsFlood">
-<title>What is Flood?</title>
-<p>Flood is a profile-driven HTTP load tester.  In layman's terms,
-it means that flood is capable of generating large amounts of web
-traffic.  Flood's flexibility and power arises in its configuration
-syntax.  It is able to work well with dynamic content.</p>
-</section>
+-  [What are some of the features of Flood?](#FloodFeatures) 
 
-<section id="FloodFeatures">
-<title>What are some of the features of Flood?</title>
-<ul>
-<li>XML-based configuration</li>
-<li>Able to set and retrieve variables from pages</li>
-<li>Uses threads and processes intelligently to scale</li>
-<li>Works with SSL</li>
-</ul>
-</section>
+-  [How does Flood retrieve variables from pages?](#FloodRegex) 
 
-<section id="FloodRegex">
-<title>How does Flood retrieve variables from pages?</title>
+-  [Can I use Flood with SSL sites?](#FloodSSL) 
 
-<p>Flood's configuration syntax allows for regular expression
-matching to isolate values in a page.</p>
+-  [Flood seems like it is stalling.](#TCPFIN) 
 
-<p>Consider placing an order on a website.  You add the order and
-you know that the order confirmation page has the following format:</p>
+# What is Flood? # {#WhatIsFlood}
 
-<pre>"Order XYZZY placed successfully."</pre>
+Flood is a profile-driven HTTP load tester. In layman's terms, it means
+that flood is capable of generating large amounts of web traffic. Flood's
+flexibility and power arises in its configuration syntax. It is able to
+work well with dynamic content.
 
-<p>By using the following semantics, flood can store XYZZY into the
-OrderID variable:</p>
+# What are some of the features of Flood? # {#FloodFeatures}
 
-<pre>responsetemplate=&quot;Order ([^ ]*) placed successfully&quot; responsename="OrderID"</pre>
+- XML-based configuration
 
-<p>In a subsequent request, you can use this OrderID variable in any
-template variable:</p>
+- Able to set and retrieve variables from pages
 
-<pre>requesttemplate=&quot;https://localhost/getOrderStatus?orderId=${orderID}&quot;</pre>
+- Uses threads and processes intelligently to scale
 
-<p>This will send the following request:</p>
+- Works with SSL
 
-<pre>https://localhost/getOrderStatus?orderId=XYZZY</pre>
+# How does Flood retrieve variables from pages? # {#FloodRegex}
 
-</section>
+Flood's configuration syntax allows for regular expression matching to
+isolate values in a page.
 
-<section id="FloodSSL">
-<title>Can I use Flood with SSL sites?</title>
+Consider placing an order on a website. You add the order and you know that
+the order confirmation page has the following format:
+`"Order XYZZY placed successfully."` 
+By using the following semantics, flood can store XYZZY into the OrderID
+variable:
+`responsetemplate="Order ([^ ]*) placed successfully"
+responsename="OrderID"` 
+In a subsequent request, you can use this OrderID variable in any template
+variable:
+`requesttemplate="https://localhost/getOrderStatus?orderId=${orderID}"` 
+This will send the following request:
+`https://localhost/getOrderStatus?orderId=XYZZY` 
 
-<p>Yes.  However, due to export regulations and laws, Flood does not have 
-SSL support enabled by default.  When configuring flood, you must pass
-the <code>--enable-ssl</code> flag.  Flood currently works with 
-OpenSSL.</p>
+# Can I use Flood with SSL sites? # {#FloodSSL}
 
-</section>
+Yes. However, due to export regulations and laws, Flood does not have SSL
+support enabled by default. When configuring flood, you must pass the
+`--enable-ssl` flag. Flood currently works with OpenSSL.
 
-<section id="TCPFIN">
-<title>Flood seems like it is stalling.</title>
+# Flood seems like it is stalling. # {#TCPFIN}
 
-<!-- Need better information here -->
+Your TCP implementation may have run out of ephemeral ports. Please consult
+your operating systems' manuals on how to decrease the FIN timeout.
 
-<p>Your TCP implementation may have run out of ephemeral ports.
-Please consult your operating systems' manuals on how to decrease
-the FIN timeout.</p>
-
-</section>
-
-</body>
-</document>

Copied: httpd/site/trunk/content/test/flood/index.mdtext (from r1334665, httpd/site/trunk/content/test/flood/index.xml)
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/test/flood/index.mdtext?p2=httpd/site/trunk/content/test/flood/index.mdtext&p1=httpd/site/trunk/content/test/flood/index.xml&r1=1334665&r2=1334673&rev=1334673&view=diff
==============================================================================
--- httpd/site/trunk/content/test/flood/index.xml (original)
+++ httpd/site/trunk/content/test/flood/index.mdtext Sun May  6 16:03:56 2012
@@ -1,111 +1,116 @@
-<?xml version="1.0"?>
-<document>
-  <properties>
-    <author email="docs@httpd.apache.org">Documentation Group</author>
-    <title>Flood</title>
-  </properties>
-<body>
-<section id="Welcome">
-<title>Flood - a profile-driven HTTP load tester</title>
-
-<p>Flood is a profile-driven HTTP load tester.  It can be used to
-gather important performance metrics for your website.</p>
-
-<p>Please see the <a href="faq.html">FAQ</a> for common questions about 
-flood.</p>
-
-</section>
-
-<section id="Getting">
-<title>Getting and using flood</title>
-
-<p>Please read the <a href="building.html">Building flood</a> document
-for a quick installation guide for flood.</p>
-</section>
-
-<section id="Examples">
-<title>Example profiles</title>
-
-<p>Flood's configuration is XML-based.  Some of the links below showcase some
-of the features available in flood.  All of these files are available in the
-examples directory in flood's Subversion repository.</p>
-
-<ul>
-<li><a href="http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/round-robin.xml">Round-robin annotated flood config example</a> (<b>Recommended for flood newbies</b>)</li>
-<li><a href="http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/round-robin-dynamic.xml">An example using dynamic content-specific variables</a></li>
-<li><a href="http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/round-robin-keepalive.xml">An example using keepalives</a></li>
-<li><a href="http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/round-robin-ssl.xml">An example using SSL</a></li>
-<li><a href="http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/round-robin-timed.xml">An example using timers</a></li>
-<li><a href="http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/analyze-relative">A sh/gawk script that shows how to interpret the relative_times output of flood</a></li>
-</ul>
-</section>
-
-<section id="SVN">
-<title>Subversion Access</title>
-
-<p>You may browse the flood's Subversion repository <a href="http://svn.apache.org/repos/asf/httpd/flood/trunk/">online</a> or via <a href="http://svn.apache.org/viewcvs.cgi/httpd/flood/trunk">flood ViewCVS</a></p>
-
-<p>Anonymous Subversion access (via WebDAV) is available.</p>
-
-<pre>
- % svn co http://svn.apache.org/repos/asf/httpd/flood/trunk flood
-</pre>
-</section>
-
-<section id="Mail">
-<title>Mailing Lists</title>
-
-<p>Our mailing lists are open to the public.</p>
-
-<p>Subscription</p>
-<ul>
-<li><a href="mailto:dev-subscribe@httpd.apache.org">dev@httpd.apache.org</a> - discussion of what to do</li>
-<li><a href="mailto:cvs-subscribe@httpd.apache.org">cvs@httpd.apache.org</a> - commit notifications</li>
-</ul>
-
-<p>Archives</p>
-<ul>
-<li><a href="http://mail-archives.apache.org/mod_mbox/httpd-dev/">dev Archives</a></li>
-<li><a href="http://mail-archives.apache.org/mod_mbox/httpd-cvs/">cvs Archives</a></li>
-<li><a href="http://httpd.apache.org/mail/dev/">dev Archives (Raw)</a></li>
-<li><a href="http://httpd.apache.org/mail/cvs/">cvs Archives (Raw)</a></li>
-</ul>
-
-<p>On December 22, 2005, test-dev@httpd.apache.org was merged with
-dev@httpd.apache.org.  Our old archives are still available.</p>
-
-<ul>
-<li><a href="http://mail-archives.apache.org/mod_mbox/httpd-test-dev/">test-dev Archives</a></li>
-<li><a href="http://mail-archives.apache.org/mod_mbox/httpd-test-cvs">test-cvs Archives</a></li>
-<li><a href="http://httpd.apache.org/mail/test-dev/">test-dev Archives (Raw)</a></li>
-<li><a href="http://httpd.apache.org/mail/test-cvs/">test-cvs Archives (Raw)</a></li>
-</ul>
-
-</section>
-
-<section id="License">
-<title>License</title>
-
-<p>Like all Apache Software Foundation projects, flood is licensed under
-<a href="http://www.apache.org/licenses/">The Apache License</a>.</p>
-</section>
-
-<section id="Search">
-<title>Search Site</title>
-<center>
-<form action="http://search.apache.org/" method="post">
-<input type="text" name="keyword" size="40" />
-<input type="hidden" name="results" value="20" />
-<input type="hidden" name="what" value="httpd.apache.org" />
-<input type="hidden" name="version" value="2" />
-<input type="submit" value="Search Site" />
-</form>
-</center>
-
-<p align="center"><a href="/images/apache_pb.gif"><img border="0"
-src="/images/apache_pb.gif" alt="Powered by Apache" width="259"
-height="32" /></a></p>
-</section>
+Title: Flood
+Notice:    Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you under the Apache License, Version 2.0 (the
+           "License"); you may not use this file except in compliance
+           with the License.  You may obtain a copy of the License at
+           .
+             http://www.apache.org/licenses/LICENSE-2.0
+           .
+           Unless required by applicable law or agreed to in writing,
+           software distributed under the License is distributed on an
+           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+           KIND, either express or implied.  See the License for the
+           specific language governing permissions and limitations
+           under the License.
+
+# Flood - a profile-driven HTTP load tester # {#Welcome}
+
+Flood is a profile-driven HTTP load tester. It can be used to gather
+important performance metrics for your website.
+
+Please see the [FAQ](faq.html) for common questions about flood.
+
+# Getting and using flood # {#Getting}
+
+Please read the [Building flood](building.html) document for a quick
+installation guide for flood.
+
+# Example profiles # {#Examples}
+
+Flood's configuration is XML-based. Some of the links below showcase some
+of the features available in flood. All of these files are available in the
+examples directory in flood's Subversion repository.
+
+-  [Round-robin annotated flood config
+example](http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/round-robin.xml)
+( **Recommended for flood newbies** )
+
+-  [An example using dynamic content-specific
+variables](http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/round-robin-dynamic.xml) 
+
+-  [An example using
+keepalives](http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/round-robin-keepalive.xml) 
+
+-  [An example using
+SSL](http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/round-robin-ssl.xml) 
+
+-  [An example using
+timers](http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/round-robin-timed.xml) 
+
+-  [A sh/gawk script that shows how to interpret the relative_times output
+of
+flood](http://svn.apache.org/repos/asf/httpd/flood/trunk/examples/analyze-relative) 
+
+# Subversion Access # {#SVN}
+
+You may browse the flood's Subversion repository
+[online](http://svn.apache.org/repos/asf/httpd/flood/trunk/) or via [flood
+ViewCVS](http://svn.apache.org/viewcvs.cgi/httpd/flood/trunk) 
+
+Anonymous Subversion access (via WebDAV) is available.
+`
+% svn co http://svn.apache.org/repos/asf/httpd/flood/trunk flood
+` 
+
+# Mailing Lists # {#Mail}
+
+Our mailing lists are open to the public.
+
+Subscription
+
+-  [dev@httpd.apache.org](mailto:dev-subscribe@httpd.apache.org) -
+discussion of what to do
+
+-  [cvs@httpd.apache.org](mailto:cvs-subscribe@httpd.apache.org) - commit
+notifications
+
+Archives
+
+-  [dev Archives](http://mail-archives.apache.org/mod_mbox/httpd-dev/) 
+
+-  [cvs Archives](http://mail-archives.apache.org/mod_mbox/httpd-cvs/) 
+
+-  [dev Archives (Raw)](http://httpd.apache.org/mail/dev/) 
+
+-  [cvs Archives (Raw)](http://httpd.apache.org/mail/cvs/) 
+
+On December 22, 2005, test-dev@httpd.apache.org was merged with
+dev@httpd.apache.org. Our old archives are still available.
+
+-  [test-dev
+Archives](http://mail-archives.apache.org/mod_mbox/httpd-test-dev/) 
+
+-  [test-cvs
+Archives](http://mail-archives.apache.org/mod_mbox/httpd-test-cvs) 
+
+-  [test-dev Archives (Raw)](http://httpd.apache.org/mail/test-dev/) 
+
+-  [test-cvs Archives (Raw)](http://httpd.apache.org/mail/test-cvs/) 
+
+# License # {#License}
+
+Like all Apache Software Foundation projects, flood is licensed under [The
+Apache License](http://www.apache.org/licenses/).
+
+# Search Site # {#Search}
+<center><form action="http://search.apache.org/" method="post"><input
+type="text" name="keyword" size="40"></input><input type="hidden"
+name="results" value="20"></input><input type="hidden" name="what"
+value="httpd.apache.org"></input><input type="hidden" name="version"
+value="2"></input><input type="submit" value="Search
+Site"></input></form></center>
+[](/images/apache_pb.gif) 
 
-</body>
-</document>