Tagged Questions
2
votes
1answer
44 views
How to throw an user-defined exception from Velocity Template Script (VTL)?
How to throw an user-defined exception from Velocity Template Script (VTL) ?
From my velocity script, i need to throw an exception based on a condition, so that the caller can catch the exception and ...
1
vote
1answer
109 views
Velocity Template Language dynamic variable
I read all the manual/guide (http://velocity.apache.org/engine/devel/user-guide.html) and I don’t see how can acces to dynamic variable:
The Scenario:
> #set ($u14 = “MARCOS SANCHEZ”)
> #set ...
1
vote
1answer
64 views
Is there a velocity port in JavaScript
I know apache velocity is available for Java and .NET.
Is there also a port to JavaScript?
My aim is to translate VTL templates inside the browser without a roundtrip to the web server.
1
vote
0answers
155 views
Sorting an array of strings in VTL
Being mainly a VB.NET programmer, I am extremely new to VTL (Velocity Template Language). I am currently trying to customise an application that uses Velocity templates and Jython.
I have the ...
0
votes
1answer
381 views
Output part of a string in velocity
apologies if I waffle or talk a bit of jibberish but I'm new to velocity, and these forums!
I need to check the contents of a string for a certain character and output the second part of the text if ...
2
votes
1answer
1k views
Get count of items in a velocity list
I'm creating a set of custom templates and structures for a Liferay site.
One structure provides for a repeatable section, which its matching template then iterates over.
However, for styling ...
1
vote
1answer
312 views
Using the output of one velocity template in another
I have a velocity template (in a Confluence user macro) that looks like:
## This macro takes a jiraissues macro in the body with "Show Total Only" configured to TRUE.
## It then parses the return and ...
1
vote
2answers
217 views
Including literal JSON content in Velocity (avoiding HTML escapes)
I'm trying to use the Velocity engine embedded in Atlassian's products (and exposed through com.atlassian.templaterenderer) to substitute a JSON value into a template.
In the template, this looks a ...
0
votes
2answers
5k views
Velocity (VM) template request parameters: Getting GET variables
How do i access GET variables as passed in the URI in a VM template?
This works only when loading the widget URL:
$request.get("parameters").get("fav").get(0)
I'm looking for a neat solution ...
1
vote
2answers
531 views
Is ther a JSP like Java based Web template engine that can load page templates from persistent storage?
I would like to provide users to write plugins to my application, the initial design and implementaion involve a Velocity (VTL) template engine to allow
Secure: uesrs can't call internall Java code ...
0
votes
1answer
792 views
Incrementing operation in VTL
I am trying to use the substring method in VTL as mentioned below
#set ($Score = $row.getValue("Score").substring(0,$row.getValue("Score").length()-1))
but it says
Encountered "-1" at
Was ...
0
votes
4answers
1k views
velocity: tri-state Boolean property check
How do I fork three different cases depending on all the three states that Boolean property may have? Java code for this looks simple:
public class Foo {
public Boolean getBool() { return null /* ...
1
vote
1answer
247 views
What is the lexically correct statement in Velocity Template Language
The following line of code is a generic version of a line in a template I'm working on. I have locked at the Velocity Template Language Documentation but I keep gettting errors no matter how I format ...
0
votes
1answer
197 views
How to escape trailing backslash in NVelocity
I am using NVelocity to process various PowerShell scripts before they are executed against a server.
My question is how to escape a backslash trailing a variable:
e.g.
ls \\$computername\c$
...
2
votes
2answers
2k views
Reference a Map by name within Velocity Template
Pretty sure there is an easy answer to this, but just can't find the right VTL syntax.
In my context I'm passing a Map which contains other Maps. I'd like to reference these inner maps by name and ...
5
votes
3answers
3k views
Is there a way to debug Velocity templates in the traditional code debugging sense?
We make heavy use of Velocity in our web application. While it is easy to debug the Java side of things and ensure the Velocity Context is populated correctly, it would be extremely valuable to be ...
