You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by ge...@locus.apache.org on 2000/11/06 06:41:02 UTC

cvs commit: jakarta-velocity/build velocity.properties

geirm       00/11/05 21:41:02

  Added:       build    velocity.properties
  Log:
  Properties file for JUnit so we can specify template root properly for include to work.
  
  Revision  Changes    Path
  1.1                  jakarta-velocity/build/velocity.properties
  
  Index: velocity.properties
  ===================================================================
  ##
  # Properties for the template loader
  ##
  
  runtime.log = velocity.log
  
  template.loader=org.apache.velocity.runtime.loader.FileTemplateLoader
  
  template.modificationCheckInterval = 2
  
  # #
  # Path to templates.
  # Default=current directory 
  ## 
  template.path=../test/templates
  
  # #
  # 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
  
  
  #include.output.errormsg.start = <!-- include error : 
  #include.output.errormsg.end   =  see error log -->