Changes with Apache 2.0.25-dev
+ *) Add the ability for mod_include to add the INCLUDES filter
+ if the file is configured for the server-parsed handler.
+ This makes the configuration for .shtml files much easier
+ to understand, and allows mod_include to honor Apache 1.3
+ config files. Based on Doug MacEachern's patch to PHP
+ to do the same thing. [Ryan Bloom]
+
*) force OpenSSL to ignore process local-caching and to always
get/set/delete sessions using mod_ssl's callbacks
[Madhusudan Mathihalli <madhusudan_mathihalli@hp.com>,
#endif
}
+static void insert_filter(request_rec *r)
+{
+ if (r->handler && (strcmp(r->handler, "server-parsed") == 0)) {
+ ap_add_output_filter("INCLUDES", NULL, r, r->connection);
+ r->content_type = "text/html";
+ r->handler = "default-handler";
+ }
+}
+
static void register_hooks(apr_pool_t *p)
{
APR_REGISTER_OPTIONAL_FN(ap_ssi_get_tag_and_value);
APR_REGISTER_OPTIONAL_FN(ap_register_include_handler);
ap_hook_post_config(include_post_config, NULL, NULL, APR_HOOK_REALLY_FIRST);
ap_hook_handler(xbithack_handler, NULL, NULL, APR_HOOK_MIDDLE);
+ ap_hook_insert_filter(insert_filter, NULL, NULL, APR_HOOK_MIDDLE);
ap_register_output_filter("INCLUDES", includes_filter, AP_FTYPE_CONTENT);
}