Difference between revisions of "XSLHelper"
(Created page with "Class FQN: '''it.greenvulcano.util.xml.XSLTUtils''' ==Following the XSLTUtils public static methods== <syntaxhighlight lang="java5"> /** * @param str * @return the string in upp...") |
|||
(3 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | + | In some cases it may be necessary to manipulate data at XSL transformation time. This can be done by mean of tools called XSL helpers. | |
− | + | There are three ways to implement an XSL helper: | |
− | + | * [[XSLTUtils]] : date/time and strings manipulation | |
− | + | * [[GenericRetriever]] : data conversion by querying the database | |
− | * | + | * [[JavaScriptRetriever]] : data handling by executing JavaScript code |
− | * | + | * [[TableRetriever]] : data conversion by querying the database |
− | + | <br> | |
− | + | ---- | |
− | + | Other informations about data manipulation and retrievers can be found [[Retriever_Config|here]]. | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 14:15, 22 May 2012
In some cases it may be necessary to manipulate data at XSL transformation time. This can be done by mean of tools called XSL helpers.
There are three ways to implement an XSL helper:
- XSLTUtils : date/time and strings manipulation
- GenericRetriever : data conversion by querying the database
- JavaScriptRetriever : data handling by executing JavaScript code
- TableRetriever : data conversion by querying the database
Other informations about data manipulation and retrievers can be found here.