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/10/02 17:54:28 UTC

svn commit: r1392993 - /httpd/site/trunk/content/test/flood/building.mdtext

Author: humbedooh
Date: Tue Oct  2 15:54:28 2012
New Revision: 1392993

URL: http://svn.apache.org/viewvc?rev=1392993&view=rev
Log:
Fixing some <pre> tags that didn't work quite well.

Modified:
    httpd/site/trunk/content/test/flood/building.mdtext

Modified: httpd/site/trunk/content/test/flood/building.mdtext
URL: http://svn.apache.org/viewvc/httpd/site/trunk/content/test/flood/building.mdtext?rev=1392993&r1=1392992&r2=1392993&view=diff
==============================================================================
--- httpd/site/trunk/content/test/flood/building.mdtext (original)
+++ httpd/site/trunk/content/test/flood/building.mdtext Tue Oct  2 15:54:28 2012
@@ -41,12 +41,12 @@ configure APR and APR-util if they are i
 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
-` 
+
+    % 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}
 
@@ -61,12 +61,12 @@ default in flood. If you wish to enable 
 
 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
-` 
+
+    %./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.
@@ -75,35 +75,34 @@ Certificate Authorities ( **CA** s) for 
 `$openssl_prefix/certs`.
 
 ### Running configure from the flood directory ###
-`
-%./buildconf
-%./configure --disable-shared
-` 
+
+    %./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
-` 
+
+    % 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
-` 
+
+    %./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
-` 
+
+    %./examples/analyze-relative foo.out
+
 
 # Questions # {#Questions}