APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2001/10/09 19:29:19 $]
+Last modified at [$Date: 2001/10/10 19:43:37 $]
Release:
RELEASE SHOWSTOPPERS:
- * Handler and Filter filetypes in mod_mime now trigger mod_negotiation
- recognition of files, but no mechanism exists to prioritize which of
- several mod_negotation files ought to be served by handler or filter.
- There needs to be a mechanism, or the change to reenable this match
- behavior must be reverted [OtherBill's veto of 1.3 behavior].
-
- gregames says: why is this a showstopper?
-
* If any request gets to the core handler, without a flag that this
r->filename was tested by dir/file_walk, we need to 500 at the very
end of the ap_process_request_internal() processing. This provides
*/
if (exinfo->handler && r->proxyreq == PROXYREQ_NONE) {
r->handler = exinfo->handler;
- found = 1;
}
/* XXX Two significant problems; 1, we don't check to see if we are
* setting redundant filters. 2, we insert these in the types config
&& (filter = ap_getword(r->pool, &filters, ';'))) {
ap_add_input_filter(filter, NULL, r, r->connection);
}
- found = 1;
}
if (exinfo->output_filters && r->proxyreq == PROXYREQ_NONE) {
const char *filter, *filters = exinfo->output_filters;
&& (filter = ap_getword(r->pool, &filters, ';'))) {
ap_add_output_filter(filter, NULL, r, r->connection);
}
- found = 1;
}
}