From: Chris W. <la...@us...> - 2004-11-28 07:25:35
|
Update of /cvsroot/openinteract/OpenInteract2/sample/website/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21739/sample/website/conf Modified Files: server.ini Log Message: move the 'dir.cache_tt' to 'content_generator.TT.compile_dir'; fix confusing labels in TT 'cache_' params Index: server.ini =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/sample/website/conf/server.ini,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** server.ini 26 Sep 2004 19:26:19 -0000 1.47 --- server.ini 28 Nov 2004 04:28:59 -0000 1.48 *************** *** 440,444 **** error = $WEBSITE/error log = $WEBSITE/logs - cache_tt = $WEBSITE/cache/tt config = $WEBSITE/conf data = $WEBSITE/data --- 440,443 ---- *************** *** 480,485 **** # for files with a given name and no extension # ! # cache_*: How many templates the Template Toolkit should cache in ! # memory (size); expiration time of Template in cache (expire) # # compile_cleanup: If true, will remove all compiled files on server --- 479,485 ---- # for files with a given name and no extension # ! # cache_size: How many templates TT should cache in memory ! # ! # cache_size: How long TT should keep cached templates in memory (seconds) # # compile_cleanup: If true, will remove all compiled files on server *************** *** 487,490 **** --- 487,493 ---- # costs aren't so heavy) # + # compile_dir: Directory where compiled files are stored; this is + # resolved at runtime under the website directory. + # # compile_ext: Extension for compiled TT files. Most people won't (or # shouldn't) care about this. *************** *** 508,511 **** --- 511,515 ---- cache_expire = 900 compile_cleanup = 1 + compile_dir = cache/tt compile_ext = .ttc custom_init_class = |