5
votes
10answers
3k 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. …
4
votes
7answers
462 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 = zi …
3
votes
4answers
2k 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 …
3
votes
1answer
988 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
<attribute:temp …
2
votes
1answer
332 views
StringTemplate - How to iterate through list of business objects and output simple html?
Hello,
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 …
2
votes
1answer
381 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
347 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 Che …
1
vote
2answers
85 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
…
1
vote
1answer
113 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 …
1
vote
2answers
208 views
Which Java HTML templating technology works in a way that is closest to Ruby (erb/haml)?
Among the Java templating solutions such as Apache Velocity, Freemarker, Hamlets, Tapestry, StringTemplate, JSP, JSP Weaver (others?) which would most closely approximate the conci …
1
vote
1answer
160 views
Does StringTemplate work with Struts?
I would like to use a template engine in my struts web application. Therefore I would like to use StringTemplate, but have no idea how to implement in Struts.
0
votes
1answer
33 views
Multiple skins in ASP.NET MVC using StringTemplate
I am considering the StringTemplate view engine for my ASP.NET MVC application. This application will be built with one skin, but I then expect many more, often very similar skins …
0
votes
0answers
18 views
struts2 StringTemplate support
I'm looking for a struts2 StringTemplate result type.
Given an action result I'd like to render the html using StringTemplate.
There are struts2 result types for Velocity, FreeMark …
0
votes
1answer
38 views
Conditionals in Antlr String Templates
We are using Antlr StringTemplates to give control over how a Entity's Name is output.
The basic Stringtemplate is
$FirstName$ $Initial$ $LastName$,
$Suffix$, $Degree$
…
0
votes
1answer
34 views
Passing collection parameters when calling templates in StringTemplate
Run into a bit of a snag using StringTemplate today. Were using StringTemplate 3.1 with .Net 3.5.
If I have a template that renders a collection of items, it renders fine if I cal …
