[Modcplusplus-devel] (johnksterling) mod_cplusplus/test/t/conf extra.conf.in
Brought to you by:
gr84b8,
johnksterling
From: Mod C. C. L. <mod...@so...> - 2006-01-21 21:46:12
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : test Dir : mod_cplusplus/test/t/conf Modified Files: extra.conf.in Log Message: add support for passing server rec to the constructors. This allow the contructors to initialize things instead of the past technique of lazy initializing. This change will not be backward compatibile - so existing modules will need to be upgraded =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/test/t/conf/extra.conf.in,v retrieving revision 1.15 retrieving revision 1.16 diff -u -3 -r1.15 -r1.16 --- extra.conf.in 27 Feb 2005 22:32:05 -0000 1.15 +++ extra.conf.in 21 Jan 2006 21:45:36 -0000 1.16 @@ -1,4 +1,5 @@ LoadModule cplusplus_module @CPLUSPLUS_BUILDDIR@/src/.libs/libmod_cplusplus@SHLIB_EXT@ +PassCPPServerVar tolower Host LoadCPPHandler test_handler @CPLUSPLUS_BUILDDIR@/example/handler/.libs/libtest_handler@SHLIB_EXT@ LoadCPPHandler test_auth @CPLUSPLUS_BUILDDIR@/example/handler/.libs/libtest_handler@SHLIB_EXT@ LoadCPPHandler test_output_filter @CPLUSPLUS_BUILDDIR@/example/output_filter/.libs/libtest_output@SHLIB_EXT@ @@ -31,7 +32,6 @@ AddCPPOutputFilter test_output_filter </Location> -PassCPPServerVar tolower Host <Location /cpp-input> AddCPPHandler test_handler </Location> |