From: William A. Rowe Jr Date: Tue, 28 Aug 2001 15:45:01 +0000 (+0000) Subject: This is the same granularity of control as mod_mime gave to set handlers X-Git-Tag: 2.0.25~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=12912e8dbb85b3abca517d4300019d6e181d3995;p=apache This is the same granularity of control as mod_mime gave to set handlers (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 --- diff --git a/server/core.c b/server/core.c index 63c4dc9cba..ac1dcb0d79 100644 --- a/server/core.c +++ b/server/core.c @@ -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"), /*