velocity.properties
上传用户:qing5858
上传日期:2015-10-27
资源大小:6056k
文件大小:2k
源码类别:

搜索引擎

开发平台:

Java

  1. # -----------------------------------------------------------------------------
  2. # Velocity Plugin Configuration File
  3. # -----------------------------------------------------------------------------
  4. #
  5. # $Id: velocity.properties,v 1.4 2003/04/02 20:54:52 vanrogu Exp $
  6. #
  7. # Example plugin configuration of a velocity plugin.
  8. # Generates output in a file according to a set of predefined, customizable
  9. # velocity templates (.vm macros).
  10. #
  11. # For more information on velocity, visit http://jakarta.apache.org/velocity
  12. #
  13. #
  14. # PROPERTIES :
  15. #
  16. #  plugin.class
  17. #    java class of the plugin module to handle the event for this plugin module
  18. #
  19. #  plugin.templatefolder
  20. #    name of the subfolder that contains the velocity templates to be used
  21. #
  22. #  plugin.trace.write
  23. #    Whether to writer a trace file containing all spider events occured
  24. #    ( true or false )
  25. #
  26. #  plugin.velocity.trace.filename
  27. #    file in which the plugin will write its trace output.
  28. #    Relative to the output folder of jspider.
  29. #
  30. #  plugin.velocity.dump.write
  31. #    Whether to writer a dump file (containing all site/resources found)
  32. #    ( true or false )
  33. #
  34. #  plugin.velocity.dump.filename
  35. #    file in which the plugin will write its dump output.
  36. #    Relative to the output folder of jspider.
  37. #
  38. #  plugin.filter.enabled
  39. #    determines whether filters are applied to the incoming events before they
  40. #    are dispatched to the plugin.  (true or false)
  41. #
  42. #  plugin.filter.engine
  43. #    event filter class handling all engine events for this plugin module
  44. #    only applicable if jspider.filter.enabled=true
  45. #
  46. #  plugin.filter.monitoring
  47. #    event filter class handling all monitoring events for this plugin module
  48. #    only applicable if jspider.filter.enabled=true
  49. #
  50. #  plugin.filter.spider
  51. #    event filter class handling all spidering events for this plugin module
  52. #    only applicable if jspider.filter.enabled=true
  53. #
  54. # -----------------------------------------------------------------------------
  55. plugin.class=net.javacoding.jspider.mod.plugin.velocity.VelocityPlugin
  56. plugin.config.templatefolder=velocity
  57. plugin.config.trace.write=true
  58. plugin.config.trace.filename=./velocity-trace.out
  59. plugin.config.dump.write=true
  60. plugin.config.dump.filename=./velocity-dump.out
  61. plugin.filter.enabled=true
  62. plugin.filter.engine=net.javacoding.jspider.mod.eventfilter.AllowAllEventFilter
  63. plugin.filter.monitoring=net.javacoding.jspider.mod.eventfilter.AllowNoneEventFilter
  64. plugin.filter.spider=net.javacoding.jspider.mod.eventfilter.AllowAllEventFilter