org.apache.turbine.services.pull.tools |
Pull Tools to be used in a template based view.
$Id: package.html 264148 2005-08-29 14:21:04Z henning $
|
Java Source File Name | Type | Comment |
ContentTool.java | Class | Terribly simple tool to translate URIs into Turbine Links.
Equivalent to URIUtils.getAbsoluteLink() in a pull tool.
If you're missing any routines from the 'old' $content tool concerning
path_info or query data, you did use the wrong tool then. |
RelativeTemplateLink.java | Class | This is exactly the same thing as TemplateLink but it returns a
relative link on toString(). |
TemplateLink.java | Class | This is a pull to to be used in Templates to convert links in
Templates into the correct references.
The pull service might insert this tool into the Context.
in templates. |
TemplateLinkWithSlash.java | Class | This class allows one to specify paths in the setPage method
using '/' slash as opposed to the ',' used in TemplateLink.
It is less efficient as the '/' are converted to ',' to avoid
problems parsing the pathinfo after conversion in a web server.
It is recommended that projects standardize on using the ','
separator and use TemplateLink. |