add bin/ to repository
[hcoop/domtool2.git] / lib / apache_options.dtl
index a40105d..279348b 100644 (file)
@@ -1,13 +1,14 @@
 {{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;
 extern val followSymLinks : apache_option;
 extern val includesNOEXEC : apache_option;
 extern val indexes : apache_option;
+extern val multiViews : apache_option;
 
 extern val options : [apache_option] -> [^Vhost];
 {{Declare exactly the set of options in effect for the current scope.}}
@@ -26,9 +27,16 @@ 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;
+extern val cgiExtension : file_extension -> [^Vhost];
+{{Ask for all files ending in a particular extension to be executed as CGI.}}
+
+extern val allowEncodedSlashes : bool -> [Vhost];
+{{Enable or disable <a href="https://httpd.apache.org/docs/2.2/mod/core.html#allowencodedslashes">encoded lashes</a>. Default is false, true sets <code>NoDecode</code>, full decoding is insecure and unsupported.}}
\ No newline at end of file