Apache Velocity is a Java-based template engine. It can be used to dynamically generate web pages, email messages, source code, or any other text file.
0
votes
2answers
23 views
Velocity Template engine - key-value-map
i have some problems wo use a key-value-map into Velocity.
I've googled quite a while, but i found no code.
Someone has an example of this functionality?
$myMap ={}
$myMap.put("mykey1", "myvalue")
...
0
votes
1answer
19 views
Save into the file with value instead of placeholder
I use Apache Velocity, so I have a *.vm file, the content of which "Hello $name".
Velocity.init();
VelocityContext context = new VelocityContext();
context.put("name", "Velocity");
StringWriter w = ...
0
votes
2answers
192 views
Velocity PagerTool is creating incorrect links in my pagination
I'm trying to use the velocity PagerTool to add pagination to my velocity template. I followed the instructions on their website and even used their sample code. I populate the pager items and set the ...
0
votes
1answer
28 views
Property value is not printing on velocity template
I am using Spring with Velocity and I try to print some literal on my velocity template, but it is not working. Here is my template, exporteComplete.vm:
${savePath}
Here is the code:
@Override
...
0
votes
1answer
18 views
Manage Role users in velocity
I want to manage the users role in my theme velocity template:
#set ($foundUser = $cmsuser.getUserByUserId($session.getAttribute("user_id")))
#if($foundUser)
#if($cmsuser.isUserRole($foundUser, ...
0
votes
2answers
29 views
Velocity cannot link the CSS file
I am trying to link CSS file in my velocity file but for some reason is not working properly.
Any ideas?
CSS filename:custom.css
velocity file snip code:
<html class="#language("lang.dir")" ...
10
votes
2answers
6k views
“for” loop in velocity template
I already posted a similar question a week ago on How to use 'for' loop in velocity template?.
So...basically I can't use 'for' loop in a velocity template.
Let's say I have a variable that ...
10
votes
3answers
4k views
how to plot a streamlines , when i know u and v components of velocity(numpy 2d arrays), using a plotting program in python?
i hope the title itself was quite clear , i am solving 2D lid-driven cavity(square domain) problem using fractional step method , finite difference formulation (Navier-Stokes primitive variable form) ...
0
votes
0answers
21 views
Is there a way to use Apache Velocity with .properties file?
I've a JSON template in a property file in my project. Is there a way I can use Apache Velocity for embedding dynamic content without using .vm file ?
I've something like:
template = [ { "name" : ...
0
votes
1answer
26 views
Velocity email template in /WEB-INF subfolder
I coded service to send email. Now I have to integrate velocity freamwork and so I edit my mail-context.xml
....
<bean id="mailService" class="xxx.xxxx.xxxx.service.MailServiceImpl">
...
0
votes
0answers
32 views
User autocomplete textbox in velocity template
In JIRA, how can i create user picker autocomplete field into velocity template.
is there any service which can be use or any documentation or stuff helps a lot.
Thank You
0
votes
1answer
29 views
spring + velocity how to handle URL between dev and production?
<c:url value="/vm/index" /> could translate relative url to absolute url in JSP page.
Is there any similar solution in velocity?
now my solution is:
public class ConstVar {
pulic static ...
0
votes
1answer
16 views
Pass Data to template files in liferay
i would like to pass data such as navigation items or languages supported to the portal_normal.vm file so that it gets displayed on the portal. I don't have a clue about how to do it. i've seen that ...
0
votes
0answers
8 views
Parse output of breadcrumbs function
Hi guys could you give me a hand on this...
I amb using the breadcrumbs function provided by velocity:
#if ($the_title != "Home")
<nav class="site-breadcrumbs" id="breadcrumbs" ...
2
votes
1answer
36 views
spring security with velocity?
i have an application where the pages are not in jsp but velocity, and it isn't running with spring either... i want to integrate spring security to it, but i couldn't find any documentation... i ...
0
votes
0answers
9 views
Edit objects in a page with Xwiki
I'm trying to edit a object in a wiki page
I created a class with name = "Test.Message" and a single string attribute named "text"
I put this code in a page
{{velocity}}
{{html clean="false" ...
0
votes
0answers
16 views
Unable to find resource velocity + mvc + spring
I've a webapp build to MVC+spring pattern. I want use velocity to send email (html format).
MVC's layer is ok and my project runs good, I've some problem with velocity.
I've a folder ...
1
vote
1answer
36 views
How many times are Liferay theme velocity templates executed?
Are all vm files of the theme executed each time a page is requested? Maybe custom_init.vm is executed only once per session or some other optimizations occur?
1
vote
1answer
51 views
Velocity and Time Elapsed in sfml 2.0
So I have been looking for hours now and I can't seem to find anything to help me with this, so I'll start by saying I am new, like very new, but I do understand that in order to have constant move ...
0
votes
1answer
12 views
Apache Velocity + Servlet 3.0
I'm upgrading from servlet 2.5 to 3.0, and I'm using Apache Velocity for templating, after a mvn dependency:tree I see velocity-tools depends on servlet-api:jar:2.3, there's a way to use servlet 3.0 ...
1
vote
1answer
25 views
Velocity variables not set/defined from the parent file
I am using velocity.
page.html
...
#set($localDecimal='#,##0.00')
#set($localInteger='#,##0')
#set($localNumber='#,##0')
#set($localCurrency=${currentCurrency}+'#,##0.00')
...
#parse('welcome.html')
...
1
vote
4answers
780 views
Apache Velocity: Which variables are available in templates?
Is it possible to get a list of variables inside the template and fill them in using the list?
I would like my users to create their templates that means i won't know before hand what variables will ...
0
votes
2answers
53 views
How to get the page title in a Liferay velocity template
How can I get the title of current page in a CMS velocity template ?
I need the same String as is shown in the last part of the breadcrump, in other words, the page title.
0
votes
0answers
31 views
Getting placeholder list from a Velocity template
suppose I have a Velocity template like this:
Hi!, my name is ${name} and I'm ${age} years old.
Note the template has no loops or conditional statements.
I would like to get a list with these ...
-5
votes
0answers
45 views
How do I make this java code [closed]
link
How do I make this java code for determining the height, width, etc, of a tower/building and allowing the user to determine if the building/tower is stable?
2
votes
1answer
27 views
Can I access by property names in Velocity?
I got an example
#set($organizationId = $layout.getGroup().getOrganizationId())
can I rewrite it as
#set($organizationId = $layout.group.organizationId)
?
Will it be exactly the same?
0
votes
0answers
39 views
Spring + Velocity Webapp Resource Loading
This was a real pain. I am trying to configure Spring to use Velocity templates for emails we are going to send. Following are not acceptable in my scenario.
Jar up the templates and adding it to ...
2
votes
2answers
3k views
Using Velocity's WebappResourceLoader with Spring
I'm trying to use Velocity to create an email template that is mailed by Spring's JavaMailSender class. The resource loader that I decided to use to find the Velocity template in my web app is ...
0
votes
0answers
19 views
Regex for velocity template attribute
I am using HtmlCompressor and ant to compress velocity templates i.e.
<apply executable="java">
<fileset dir="/WEB-INF/templates" includes="**/*.vm">
...
2
votes
1answer
57 views
How to catch NoSuchLayoutException in Liferay Velocity theme when layout not found?
I have the following code in a velocity template theme:
#set($currLayout = $layoutLocalService.getFriendlyURLLayout($group_id, true, $currFriendlyUrl))
which throws a
...
-1
votes
1answer
27 views
Problems with Velocity Resource Path
So, here's the deal.
I'm using Spring Framework to develop a appointment app.
Everything's going fine in my localhost, even the email send part.
But when i pass the project to my weblogic, the ...
1
vote
3answers
1k views
How to access Session or Request object in Velocity Template
I am trying to access HttpServletRequest in some velocity template but never succeed.
I have already tried following flavor of syntax
Current URL: $req.get("attributes").get("CURRENT_URL"))
Result ...
0
votes
0answers
74 views
Spring MVC Form backing object field names
Is it possible to specify a text input field id to bind a form backing object to? My form is using third-party javascript and I do not have control over the input's id value.
For example:
<input ...
6
votes
3answers
2k views
Velocity in OSGi: how to load templates from classpath
I am developing an application for OSGi with velocity template engine.
It works great for loading my templates by file loader but now I have to implement this templates in my jar and load it as ...
0
votes
0answers
35 views
Maven Archetype Use Velocity Templates in File Names
I'm creating a Maven archetype, and I want it to generate some directory names (Java package names) and file names using Velocity templates based on a single property.
For example:
I have this ...
0
votes
1answer
39 views
Apache Velocity Initialised error
I have a Maven project that I built using Netbeans 7.2 and runs on Glassfish 3. I thought I would try my luck at upgraded from Netbeans 7.2 to 7.3 yesterday but the transition has caused an error with ...
0
votes
1answer
36 views
Check if string has url using regular expression
i want to check if a given string has a regular expression or not. I am using this
#if($feed.message.matches('.*https?://.*'))
$feed.message <a href="$feed.message"></a>
#else
...
-2
votes
1answer
213 views
Android horizontal scrolling like Gallery [closed]
First of all, sorry for my bad english. Hope to understand about that.
https://dl.dropboxusercontent.com/u/48372563/Masterpieces/device-2013-04-17-003424.png
I want horizontal scroll like Gallery. ...
0
votes
4answers
204 views
can Velocity set a default value for a variable when no value found in VelocityContext?
Velocity just print the tag name if no value was found in VelocityContext, ie, $name in my template file, but there is no value for "name" in VelocityContext, so just "$name" was printed. I want ...
0
votes
0answers
31 views
Populating Drop Down list using macro velocity
i am having four timezone maps referring to each timezones like PST, CST, EST and MST.
I have to populate the drop down list with time using macro and vm file.
can anyone guide me how to invoke ...
20
votes
7answers
12k views
JSP vs Velocity what is better?
What is better between JSP and velocity in
- Performance
- Ease of use
- Ease of creating reusable components
- Availability of open source 3rd parties
- IDE support
0
votes
1answer
61 views
Passing value from JSP to velocity template [duplicate]
Can anyone tell me how to pass value from JSP file to velocity template.
0
votes
1answer
99 views
In AJAX, variable value is not updated
Below is my jquery stuff, it works correct to call REST Service and response result return back to AJAX Success event.
But, every time when it executes then it does not update the variable ...
0
votes
0answers
18 views
echo a Velocity object as a javascript object [duplicate]
I have a velocity object:
#set($data = [{
"type": 'Product',
"clicks": 9252
}, {
"type": 'Service',
"clicks": 1882
}])
I am currently using the following to assign this (object) to ...
0
votes
2answers
114 views
Dynamically Add New form fields pre-populated with user's input from another form using jquery?
Ok here's what I need to do---
Need to create a form - with two inputs: item and quantity
The user will input... There will be an add button like below.
<form id="form1">
<input ...
1
vote
2answers
47 views
How to combine two form fields and submit as one field with jquery?
Ok Here's my problem.
I made a form where you can enter multiple items and quantities -
You can add additional form fields if you need to add more items.
The form can be accessed at : ...
0
votes
1answer
27 views
Spring MCV 3 showErrors doesn't display anything
I try to validate a simple form. The validation is well executed but the result page doesn't display the errors.
I use velocity to render the page.
I've used as example the PetClinic project from ...
4
votes
2answers
5k views
Unable to find velocity template resources
Just a simple velocity standalone app based on maven structure. Here is the code snippet written in Scala to render the template helloworld.vm in ${basedir}/src/main/resources folder:
...
0
votes
0answers
31 views
Jira Custom Release Notes: Velocity if(..) Statements and Returned Values from Macros
I have been experimenting with Jira's custom release notes feature, which requires writing a custom .vm file. This is my first time working with Velocity and would greatly appreciate a hand with this ...
0
votes
0answers
19 views
Changing speed of a point moving along a graph in MATLAB
I have used the code provided by @Amro in other question:
%# control animation speed
DELAY = 0.01;
numPoints = 600;
%# create data
x = linspace(0,10,numPoints);
y = log(x);
%# plot graph
...







