]> granicus.if.org Git - apache/commitdiff
This is the same granularity of control as mod_mime gave to set handlers
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 28 Aug 2001 15:45:01 +0000 (15:45 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 28 Aug 2001 15:45:01 +0000 (15:45 +0000)
  (and now AddInputFilter and AddOutputFilter by extension) so this seems
  entirely appropriate in the core as well.  Options FileInfo is required
  to change the processing behavior of files.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90760 13f79535-47bb-0310-9956-ffa450edef68

server/core.c

index 63c4dc9cba274f0dbade6fbdcbea111a881c967e..ac1dcb0d79e0941bc60a85d1c8cb5cf599118e83 100644 (file)
@@ -2817,14 +2817,9 @@ AP_INIT_TAKE12("RLimitNPROC", set_limit_nproc,
 AP_INIT_TAKE12("RLimitNPROC", no_set_limit, NULL,
    OR_ALL, "soft/hard limits for max number of processes per uid"),
 #endif
-/* XXX These should be allowable in .htaccess files, but currently it won't
- * play well with the Options stuff.  Until that is fixed, I would prefer
- * to leave it just in the conf file.  Other should feel free to disagree
- * with me.  Rbb.
- */
-AP_INIT_ITERATE("SetOutputFilter", add_filter, NULL, ACCESS_CONF,
+AP_INIT_ITERATE("SetOutputFilter", add_filter, NULL, OR_FILEINFO,
    "filters to be run"),
-AP_INIT_ITERATE("SetInputFilter", add_input_filter, NULL, ACCESS_CONF,
+AP_INIT_ITERATE("SetInputFilter", add_input_filter, NULL, OR_FILEINFO,
    "filters to be run on the request body"),
 
 /*