About
Community
Docs
Related Sites
|
texen
Texen is a general purpose text generating utility. It is capable of producing almost any sort of text output. Driven by NAnt, essentially an NAnt Task, Texen uses a control template, an optional set of worker templates, and control context to govern the generated output. Although TexenTask can be used directly, it is usually subclassed to initialize your control context before generating any output.
Parameters
controltemplate |
Set the control template for the generating process. |
true |
outputdirectory |
The directory where new files will be created. |
false |
templatepath |
This is the path to the templateRoot which is the directory where your site.vsl file is located. This can be defined in the nvelocity.properties or it can be defined here. It it an optional argument if it is defined in the NVelocity properties file already. However, if defined, this value will override the path defined in the nvelocity.properties file. |
true |
outputfile |
This is the file where the generated text will be placed. |
false |
Context Objects
$strings |
NVelocity.Util.StringUtils tool, loaded by default texen.properties. |
$files |
NVelocity.NAnt.Texen.FileUtil tool, loaded by default texen.properties. |
$properties |
NVelocity.NAnt.Texen.PropertiesUtil tool, loaded by default texen.properties. |
Examples
<texen
controlTemplate="Control.vm"
outputDirectory="."
templatePath="."
outputFile="generation.report"
/>
|