Tagged Questions
A templating language which strictly enforces model/view separation
13
votes
2answers
1k views
What are the main differences between StringTemplate and FreeMarker?
The net seems to be full of comparisons between Velocity and FreeMarker, and they seem to be reasonably equivalent. But there seems to be almost no comparisons between StringTemplate and FreeMarker!
...
11
votes
13answers
10k views
Best Template Engine for ASP.NET MVC
I am exploring ASP.NET MVC and I wanted to add jQuery to make the site interactive. I used StringTemplate, ported to .Net, as my template engine to generate html and to send JSON. However, when I view ...
10
votes
5answers
3k views
Which Java MVC frameworks integrate easily with StringTemplate?
It's hard to see how StringTemplate integrates easily (or not) with popular Java web MVC frameworks.
Which Java MVC frameworks integrate easily with StringTemplate?
A good answer:
mentions one ...
7
votes
2answers
2k views
StringTemplate - How to iterate through list of business objects and output simple html?
I've just started using StringTemplate in my C# project. I went through the documentation, but I can't seem to find a way to implement this simple scenario:
I have a list of simple business objects ...
6
votes
2answers
126 views
Using StringTemplate together with forms in SpringMVC
does anyone know how to use StringTemplate with forms in SpringMVC framework?
Any tips, tutorials...?
5
votes
1answer
120 views
StringTemplate violate separation?
I noticed the following in the introduction for StringTemplate:
StringTemplate interprets o.p by
looking for property p within object
o. The lookup rules differ slightly
between language ...
4
votes
3answers
745 views
Format date in String Template email
I'm creating an email using String Template but when I print out a date, it prints out the full date (eg. Wed Apr 28 10:51:37 BST 2010). I'd like to print it out in the format dd/mm/yyyy but don't ...
4
votes
1answer
463 views
StringTemplate for runtime code gen?
I am working on a project that generates code at runtime based on meta-model. I've used vb.net xml literals for this, but today I ran across StringTemplate project. Has anybody successfully used this ...
4
votes
7answers
1k views
Any lightweight templating solutions in Java with support for conditional formatting?
I'm using MessageFormat to format some addresses with a template like this:
"{0}\n{1}\n{2}\n{3}, {4} {5}"
where
0 = street 1
1 = street 2
2 = street 3
3 = city
4 = state
5 = zip
Most of these ...
3
votes
3answers
219 views
Putting { in verbatim string with C# [closed]
Possible Duplicate:
How to escape brackets in a format string in .Net
How do I put { or } in verbatim string in C#?
using System;
class DoFile {
static void Main(string[] args) {
...
3
votes
7answers
218 views
Putting \" in verbatim string with C#
I need to print
a
"b"
c
with the vebatim string, I posed another question about multiple line code template here.
I tried with verbatim string as follows :
using System;
class DoFile {
...
3
votes
1answer
98 views
Is it possible to use ant's antlr task to do code generation with stringtemplate?
Is it possible to use ant's antlr task to do code generation with the stringtemplate library?
If not, is it better to just execute a java class from command line to code gen w/ stringtemplate?
I've ...
3
votes
1answer
127 views
Heirarchical data in StringTemplate
I am trying to create a hierarchical document using StringTemplate.
For example, an list of directories :
\alpha
\file1
\file2
\beta
\file3
\gamma
\file4
\file5
\file6
...
3
votes
2answers
611 views
StringTemplate bad performance
I'm using StringTemplate to generate some xml files from datasets. Sometimes I have more than 100,000 records in the dataset that is enumerated by a loop in a template. It goes very slow (15-20 secs ...
3
votes
1answer
637 views
Example of subclassing string.Template in Python?
I haven't been able to find a good example of subclassing string.Template in Python, even though I've seen multiple references to doing so in documentation.
Are there any examples of this on the web?
...
3
votes
1answer
260 views
How to force StringTemplate to evaluate attribute within attribute?
I have the following code:
StringTemplate st = new StringTemplate("$msg$");
st.SetAttribute("msg", "Hello $usr$");
st.SetAttribute("usr", "Jakub");
Console.WriteLine(st);
// current output: "Hello ...
3
votes
1answer
2k views
C# StringTemplate - how to set eol character
I'm using the C# version of the StringTemplate library (http://www.stringtemplate.org/) to generate C++ code. My templates work fine, until I started using the
...
2
votes
2answers
59 views
Output DataTable using StringTemplate
I'm trying to implement a method that will accept DataTable with StringTemplate and return string representation of data.
I found how to do this here and here, but it doesn't work for me.
Example ...
2
votes
1answer
143 views
ANTLR parser for PL/SQL with target language as Java
Do we have a PL/SQL grammer for Java target yet? I got the one for C#, but need for Java target.
I would like to use this with ANTLR to generate Java using StringTemplates. I've gone through the ...
2
votes
1answer
122 views
Callbacks or simple arithmetic in StringTemplate
I'd like to use something like this in StringTemplate - to call a function defined in the application that does the rendering, is that possible?
<div> $renderArticle(article,width,padding)$ ...
2
votes
1answer
294 views
stringtemplate: problem generating html select with pre-selection
I am trying to generate a html select element with one option preselected. I am unable to think of a way to do this with stringtemplate.
If user.choice is set to "B" then I want to print an html ...
2
votes
1answer
378 views
ANTLR Tree Grammar and StringTemplate Code Translation
I am working on a code translation project with a sample ANTLR tree grammar as:
start: ^(PROGRAM declaration+) -> program_decl_tmpl();
declaration: class_decl | ...
2
votes
2answers
298 views
Why StringTemplate could be slow?
I'm using StringTemplate as view layer for my web application. Recently I've measured how much time is spent rendering pages and it's around 50ms for simple pages and 500ms for complex pages. This is ...
2
votes
1answer
180 views
How to let StringTemplate.NET to load template files with the extension “.dwt”?
The default template file extension of StringTemplate is ".st". Now I have several template files in a folder and their file extension is ".dwt". Is there a way to change the default template file ...
2
votes
2answers
430 views
StringTemplate: Loading a Template from disk?
I am using StringTemplate in c# and following code to load a template from a subdirectory of my application.
StringTemplateGroup group = new StringTemplateGroup("myGroup", "/tmp");
StringTemplate ...
2
votes
1answer
884 views
nested loop in StringTemplate
Im interested in writting something similar to a nested loop using StringTemplate template engine.
In C# have a HashTable of which each Key contains List of Document objects, each Document has a title ...
2
votes
1answer
464 views
Using $ as delimiter in StringTemplate from ANTRL rewriter grammars
I'm trying to write an ANTLR3 grammar that generates HTML output using StringTemplate. To avoid having to escape all the HTML tags in the template rules (e.g. \<p\><variable>\</p\>), ...
2
votes
2answers
820 views
How do I use an IF statement in a loop with StringTemplate
This displays nothing:
$Articles:{
$if(i!=1)$
display in between articles
$endif$
$it.Text
}
This displays as expected
$Articles:{
...
2
votes
1answer
821 views
StringTemplate ListDictionary Iteration
I'm trying to iterate over a ListDictionary (C# StringTemplate) in a template and have each list item invoke another template:
DataDefAssign(cols) ::=
<<
<cols.keys: { k | ...
2
votes
2answers
905 views
How to integrate the StringTemplate engine into the CherryPy web server
I love the StringTemplate engine, and I love the CherryPy web server, and I know that they can be integrated.
Who has done it? How?
EDIT: The TurboGears framework takes the CherryPy web server and ...
1
vote
1answer
48 views
StringTemplate remove < > as delimiters
I am trying to use StringTemplate in a java web app to generate html emails. When trying to enter line breaks, I use \<br\> This does not seem to be working. \<b\> is not working as ...
1
vote
1answer
49 views
Stringtemplate: is it ok to Apply Templates, in which HashMap uses, To Multi-Valued Attributes
There is two template in my .stg file, and both of them apply on
multi-value a HashMap. The HashMap is employed as an injected object.
And I need those instance of HashMap can be injected for many ...
1
vote
1answer
63 views
Why is this StringTemplates with custom delimiters not working?
I'm trying to use String Template with custom delimiters.
This code snippet:
new ST("Hello @what@", '@', '@').add("what", "world").render()
throws org.stringtemplate.v4.compiler.STException, so ...
1
vote
1answer
62 views
antlr rewriting output of a rule
I am trying to write an antlr script where in, rule1 has a subrule , rule2. I am using StringTemplate on rule 1.
What I want to do, is restructure the text matched by rule2 before it is ...
1
vote
1answer
39 views
ANTLR Template translator match part of grammar
I wrote a grammar for a language and now I want to treat some syntactic sugar constructions, for that I was thinking of writing a template translator.
The problem is I want my template grammar to ...
1
vote
2answers
112 views
MVC and Java-EE
During the years, I grown quite the affection for the Model-View-Controller design pattern and the benefits it provides. But I'm struggling to make full use of these benefits when it comes to web ...
1
vote
3answers
161 views
How to format decimal numbers with StringTemplate (ST) in Java?
I am using StringTemplate in Java.
I would like to render decimal number with a certain precision (e.g. 3 digits after the decimal point).
Is it possible to for the ST object to do it? And how?
...
1
vote
1answer
205 views
Using Stringtemplate for generating HTML pages from templates with Maven
I have a relatively simple web app, which uses basic HTML pages with Ajax (using jQuery, bit of Javascript) to access data from a web service and render it. So far so good.
But since there are ...
1
vote
2answers
159 views
StringTemplate slow than plain string concatenation?
StringTemplate insert = new StringTemplate("insert $table$ values($value;separator=\",\"$)")
int testSize = 10000;
for(int i = 0;i < testSize;i++){
...
1
vote
1answer
260 views
Where to get Python ANTLR package to use StringTemplate?
I'd like to do some code generation, and StringTemplate looks like a pretty good tool for the job. I easy_installed stringtemplate3 from PyPi, but when I try to import it I get:
ImportError: No ...
1
vote
1answer
200 views
Render List of Lists with StringTemplate
Please help me to render the following Java structure with StringTemplate:
List<List<String>> listOfListsOfStrings;
The output should be as follows (where ListXStringY is a string ...
1
vote
1answer
195 views
StringTemplate4 and anonymous templates
I have a problem with the recently released beta version of Stringtemplate 4.
In StringTemplate 3, I used to have templates like
<env_vars:{ var | void* <var>() { return null; }}>
i.e. ...
1
vote
1answer
181 views
Suggestions for simple StringTemplate view resolution in Spring Web MVC app?
I'm migrating my Spring MVC app from a Tiles/EL view resolution setup to a StringTemplate view resolution setup. From my investigation so far I've gathered there are 2 possible approaches:
1) For ...
1
vote
1answer
137 views
How to do standard layouts with StringTemplate?
With StringTemplate, what is the proper way to have a standard layout template such as:
<head>
..
</head>
<html>
$body()$
</html>
Where I can set the body template from ...
1
vote
1answer
295 views
Stringtemplate compare strings does not work
Can someone explain why this does not work ?
StringTemplate query = new StringTemplate("hello " +
"$if(param==\"val1\")$" +
" it works! " +
...
1
vote
0answers
64 views
Is there are way to read .string files for StringTemplate in C#
I found one sample in StringTemplate documentation to read *.resx embedded resource, but it is not actually that I expect.
http://www.stringtemplate.org/article/i18n/index.html - there is a sample of ...
1
vote
1answer
353 views
Can StringTemplate iterate through 'values' in a String?
I have a String made up of several Strings seperated by commas. Using StringTemplate, is there an easy way to write a seperate line for each 'value' in this outer String?
For example, I have:
...
1
vote
1answer
208 views
How to load StringTemplateGroups from the WEB-INF directory of a web archive
this question is somewhat related to this question: StackOverflow: Howto load a resource from WEB-INF directory of a web archive
I want to use StringTemplate and want to load my templates via a ...
1
vote
1answer
132 views
Grouping in StringTemplate
I've just begun using StringTemplate (from stringTemplate.org) and I'd like to know how to achieve grouping in the results.
e.g.
Month , ID
__________________
Jan ,1
Jan ,2
...
1
vote
1answer
527 views
Using Scala and StringTemplate, how do I loop through a Map
I have my environment setup nicely using Scala, StringTemplate within the Google AppEngine. I am having trouble looping through a Map and getting it to display in the template. When I assign a simple ...