Point docstrings at Apache 2.2 documentation
authorClinton Ebadi <clinton@unknownlamer.org>
Sat, 29 Mar 2014 00:19:09 +0000 (20:19 -0400)
committerClinton Ebadi <clinton@unknownlamer.org>
Sat, 29 Mar 2014 00:20:22 +0000 (20:20 -0400)
lib/apache_auth.dtl
lib/apache_options.dtl
lib/mod_autoindex.dtl
lib/mod_dav.dtl
lib/mod_env.dtl
lib/mod_expires.dtl
lib/mod_mime.dtl
lib/mod_rewrite.dtl

index b8ee03a..041f4c1 100644 (file)
@@ -6,39 +6,39 @@ extern val digest : authType;
 extern val kerberos : authType;
 {{The kerberos auth type is hardwired for HCOOP.NET Kerberos only!}}
 extern val authType : authType -> [Location];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#authtype">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/core.html#authtype">the
   Apache documentation</a>.}}
 
 extern val authName : no_newlines -> [Location];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#authname">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/core.html#authname">the
   Apache documentation</a>.}}
 
 extern val authUserFile : your_path -> [Location];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#authuserfile">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/core.html#authuserfile">the
   Apache documentation</a>.}}
 
 extern val requireValidUser : [Location];
 extern val requireUser : [user] -> [Location];
 extern val requireGroup : [group] -> [Location];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#require">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/core.html#require">the
   Apache documentation</a>.}}
 
 extern val orderAllowDeny : [Location];
 extern val orderDenyAllow : [Location];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_access.html#order">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_access.html#order">the
   Apache documentation</a>.}}
 
 extern val allowFromAll : [Location];
 extern val allowFrom : [no_spaces] -> [Location];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_access.html#allow">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_access.html#allow">the
   Apache documentation</a>.}}
 
 extern val denyFromAll : [Location];
 extern val denyFrom : [no_spaces] -> [Location];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_access.html#deny">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_access.html#deny">the
   Apache documentation</a>.}}
 
 extern val satisfyAll : [Location];
 extern val satisfyAny : [Location];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#satisfy">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/core.html#satisfy">the
   Apache documentation</a>.}}
index 300a482..f36e653 100644 (file)
@@ -1,7 +1,7 @@
 {{Per-directory options for Apache}}
 
 extern type apache_option;
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#options">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/core.html#options">the
   Apache documentation</a> for what the options mean.}}
 
 extern val execCGI : apache_option;
@@ -27,11 +27,11 @@ extern val forceTypeOff : [Location];
   type.}}
 
 extern val action : no_spaces -> location -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_actions.html#action">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_actions.html#action">the
   Apache documentation</a>.}}
 
 extern val addDefaultCharset : no_spaces -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/core.html#adddefaultcharset">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/core.html#adddefaultcharset">the
   Apache documentation</a>.}}
 
 extern type file_extension;
index 3028fd3..580ba70 100644 (file)
@@ -2,15 +2,15 @@
   index pages}}
 
 extern val addDescription : string -> [no_spaces] -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_autoindex.html#adddescription">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_autoindex.html#adddescription">the
   Apache documentation</a> for <tt>AddDescription</tt>.}}
 
 extern val addIcon : location -> [no_spaces] -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_autoindex.html#addicon">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_autoindex.html#addicon">the
   Apache documentation</a> for <tt>AddIcon</tt>.}}
 
 extern val indexIgnore : [no_spaces] -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_autoindex.html#indexignore">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_autoindex.html#indexignore">the
   Apache documentation</a> for <tt>IndexIgnore</tt>.}}
 
 extern type autoindex_width;
@@ -19,7 +19,7 @@ extern val autofit : autoindex_width;
 extern val characters : int -> autoindex_width;
 
 extern type autoindex_option;
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_autoindex.html#indexoptions">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_autoindex.html#indexoptions">the
   Apache documentation</a> for what the options mean.}}
 
 extern val descriptionWidth : autoindex_width -> autoindex_option;
@@ -52,9 +52,9 @@ extern val unset_indexOptions : [autoindex_option] -> [^Vhost];
 {{Specify some options to be set or unset, leaving the rest as they are.}}
 
 extern val headerName : no_spaces -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_autoindex.html#headername">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_autoindex.html#headername">the
   Apache documentation</a>.}}
 
 extern val readmeName : no_spaces -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_autoindex.html#readmename">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_autoindex.html#readmename">the
   Apache documentation</a>.}}
index 7558454..ca661f8 100644 (file)
@@ -1,5 +1,5 @@
 {{Apache mod_dav}}
 
 extern val davFilesystem : [Location];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_dav.html#dav">the
+{{See <a href="http://httpd.apache.org/docs/2.2/Mod/mod_dav.html#dav">the
 Apache documentation</a>.}}
index 305ef1f..c9c509f 100644 (file)
@@ -1,5 +1,5 @@
 {{Support for Apache's mod_env, which deals with UNIX environment variables}}
 
 extern val setEnv : no_spaces -> no_newlines -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_env.html#setenv">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_env.html#setenv">the
   Apache documentation</a>.}}
index 649fca4..0d4023c 100644 (file)
@@ -16,5 +16,5 @@ extern val minutes : interval;
 extern val seconds : interval;
 
 extern val expiresByType : mime_type -> interval_base -> int -> interval -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_expires.html#expiresbytype">
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_expires.html#expiresbytype">
   Apache documentation</a>.}}
index d46a7af..e321d3e 100644 (file)
@@ -1,12 +1,12 @@
 {{Support for Apache's mod_mime}}
 
 extern val addType : no_spaces -> no_spaces -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_mime.html#addtype">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_mime.html#addtype">the
   Apache documentation</a>.}}
 
 extern type filter;
 extern val includes : filter;
 extern val deflate : filter;
 extern val addOutputFilter : [filter] -> [no_spaces] -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_mime.html#addoutputfilter">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_mime.html#addoutputfilter">the
   Apache documentation</a>.}}
index 294033a..8c1a11d 100644 (file)
@@ -20,7 +20,7 @@ extern type rewrite_arg;
   arguments, which excludes commas and some other characters.}}
 
 extern type mod_rewrite_flag;
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#rewriterule">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewriterule">the
   Apache documentation</a> for information on what these flags mean.}}
 
 extern val redirect : mod_rewrite_flag;
@@ -40,22 +40,22 @@ extern val skip : int -> mod_rewrite_flag;
 extern val env : rewrite_arg -> rewrite_arg -> mod_rewrite_flag;
 
 extern type mod_rewrite_cond_flag;
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#rewritecond">the
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritecond">the
   Apache documentation</a> for information on what these flags mean.}}
 
 extern val cond_nocase : mod_rewrite_cond_flag;
 extern val ornext : mod_rewrite_cond_flag;
 
 extern val rewriteRule : regexp -> no_spaces -> [mod_rewrite_flag] -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#rewriterule">Apache
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewriterule">Apache
   documentation for <tt>RewriteRule</tt></a>.}}
 
 extern val rewriteCond : no_spaces -> regexp -> [mod_rewrite_cond_flag] -> [^Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#rewritecond">Apache
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritecond">Apache
   documentation for <tt>RewriteCond</tt></a>.}}
 
 extern val rewriteBase : no_spaces -> [Location];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#rewritebase">Apache
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritebase">Apache
   documentation for <tt>RewriteBase</tt></a>.}}
 
 extern type proxy_port;
@@ -68,5 +68,5 @@ extern val localProxyRewrite : no_spaces -> no_spaces -> proxy_port -> [^Vhost];
   mod_rewrite.}}
 
 extern val rewriteLogLevel : int -> [Vhost];
-{{See <a href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#rewriteloglevel">Apache
+{{See <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewriteloglevel">Apache
   documentation for <tt>RewriteLogLevel</tt></a>.}}