geirm 00/11/26 20:02:52 Modified: test/misc velocity.properties Log: Removed all the unncessary crap, and put in the three new properties that turn on the stack trace, since this is the debugging directory.. Revision Changes Path 1.4 +9 -37 jakarta-velocity/test/misc/velocity.properties Index: velocity.properties =================================================================== RCS file: /home/cvs/jakarta-velocity/test/misc/velocity.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- velocity.properties 2000/11/04 03:00:27 1.3 +++ velocity.properties 2000/11/27 04:02:52 1.4 @@ -1,38 +1,10 @@ -## -# Properties for the template loader -## +# +# properties for test/misc +# +# since this is for debugging and testing, lets turn on the stack trace stuff +# + +runtime.log.error.stacktrace = true +runtime.log.warn.stacktrace = true +runtime.log.info.stacktrace = true -runtime.log = velocity.log - -template.loader=org.apache.velocity.runtime.loader.FileTemplateLoader - -template.modificationCheckInterval = 2 - -# # -# Path to templates. -# Default=current directory -## -template.path=. - -# # -# Cache the templates? -# # -template.cache=false - -# Encoding -template.encoding=8859_1 - -# This is for #foreach loops. You can -# retrieve the current number of the item -# being operated on by using the special -# $velocityCount variable. Here you can specify -# what to start the counter at 0 or 1. -counter.initial.value = 1 - -# You can name what the counter -# variable can be accessed as. -counter.name = velocityCount - -# The value for the default content type to return -# in VelocityServlet -default.contentType=text/html
