A templating language which strictly enforces model/view separation
0
votes
1answer
30 views
How to get the list of available variables from a StringTemplate template
I'd like to obtain the list of variables from a template to request them from a UI application.
Let's say I have a template like
This is some template called $templateName$ with the description ...
2
votes
1answer
59 views
Generating template with some logic via HStringTemplate
Here is some invalid HStringTemplate syntax:
option_a = $options.a$
option_b = $options.b$
$if options.option_c_is_needed$
option_c = $option.c$
$end$
In other words, part of template file should ...
0
votes
0answers
22 views
Expression not working in stringTemplate
Hi I'm using StringTemplate version 3.2.1 and Java.
I'm passing in an ArrayList to the Stringtemplate but its not picking it up.
I want to iterate through the array depending on the number of values.
...
0
votes
2answers
43 views
StringTemplate vs. StringTemplateGroup
I'm successfully using StringTemplate 4 to do some code generation in Visual Studio. I've installed the extensions for StringTemplate and ANTLR and they are really great.
In testing, I can figure out ...
0
votes
0answers
17 views
HTML table with itens as cells using StringTemplate
I have a template that create html code as output. I want to show some images in a table with 3 images per row, each in a cell.
The problem is when to open and close the tr tags.
This is what I have ...
1
vote
1answer
45 views
StringTemplate don't replace non-matched patterns
suppose I have a template
"{man} likes to do {do}"
I create the engine
ST engine = new ST(template, '{', '}');
The result with do set to sports and no man in the model is:
"likes to do ...
0
votes
1answer
49 views
StringTemplate4 if conditional with length
I need to generate the following kinds of code with StringTemplate4:
methodFoo0(Connection conn);
methodFoo1(Connection conn, int arg1);
methodFoo2(Connection conn, int arg1, int arg2);
etc.
The ...
0
votes
0answers
32 views
Use Stringtemplate argument attribute name
Is there any way to use an argument attribute name as an expression in ST4?
I would like to build a StringTemplate like this one:
field(dictionary,object,fieldName) ::= <%
<div ...
0
votes
0answers
28 views
Emacs mode for StringTemplate
Is there an Emacs mode available for the StringTemplate Java template engine ?
1
vote
1answer
59 views
Best way to make StringTemplate limit the length of a string?
This is easiest to explain using a code example. In some scenarios, we have list items that have a lot of text, but showing more than the first few words is not useful, this is how we deal with it in ...
0
votes
1answer
29 views
StringTemplate4 :: template call inside template call
I am trying to call a template, passing as a parameter the result of calling another template but I can't seem to get it to work. Here's a narrow-down example:
The following template group in a file:
...
0
votes
1answer
32 views
Getting the length of a String value in StringTemplate
According to the documentation you can reference properties of objects in the <object.property> format. I was hoping this would let me check the length of a String, but it doesn't seem to work. ...
2
votes
1answer
88 views
StringTemplate does not find getter
I am using ST-4.0.7.jar and my template looks like this:
backtrack_result(btresult) ::=<<
<backtrack-result>
<pattern ...
0
votes
0answers
16 views
What is the equivalent in v4 of StringTemplate.setAttributes(Object) in v3?
v4 provides an API: ST.add(String, Object). I couldn't find the v3 API setAttributes(Object) in v4.
I used ST.add("root", JSONObject). An exception occures:
java.lang.IllegalArgumentException: no ...
2
votes
1answer
83 views
ANTLR Custom DOT Template
Is there a way to create/extend the default template for generating .dot files in ANTLR?
I have some custom properties in my nodes that I'd like to visualise on my tree, rather than having to print ...
2
votes
1answer
57 views
Comparing a String with a template like string
I am trying to write a program in which I have to do comparison between a list of strings with a template (which is essentially a string). I am not sure what is the term used but it is going to be ...
0
votes
1answer
87 views
ANTLR - StringTemplate - CamelCase
What is the best pattern (language independent, for retargetable generation code) to translate antlr token to camel case StringTemplate attribute in a tree conversion? Example: My DSL has MY_FIELD ...
0
votes
0answers
48 views
How to write to an OutputStream directly using Stringtemplate 4.x?
I don't want to call .render() and build extremely large Strings from some of my templates. In previous versions you could write to an OutputStream directly instead of having to render the entire ...
0
votes
1answer
84 views
What is the correct stringtemplate Group Syntax to build a group from a String?
I am trying to build a STGroup from a String but it is complaining about invalid characters and missing templates:
final String templates = "a(x) ::= <li>$x.fname$ $x.lname$</li>\n" +
...
0
votes
2answers
63 views
Stringtemplate with dollar sign
What is the best way to deal with dollar sign in stringtemplate.
For example I need following template:
You can purchase item $name$ for $5
0
votes
0answers
14 views
Loading/Saving CompiledST
I am creating a java software which uses StringTemplate to generate C code.
However, I don't want to directly include my templates directly in the jar for the final release, so I'm looking for a way ...
1
vote
1answer
123 views
Stringtemplate template arguments always evaluated to a string
I'm using Antlr 4 RC1 (the complete jar) to parse a grammar, build a custom ast, and generate code from that AST with stringtemplate4 (I use the stringtemplate classes in the antlr jar).
Inside a ...
1
vote
1answer
149 views
What is the best way to ensure HTML entities are escaped in StringTemplate
Assuming the following string template, is being given a list of Java Bean objects:
<ul>$people:{p|<li>$p.name$ $p.email</li>}$</ul>
ie the list of people might contain ...
0
votes
1answer
69 views
How do you show list length in StringTemplate
I want to show the number of search results that are going to appear in the table, is there a way to show the number of elements or do you have to compute it, ie I want to show something like this:
...
2
votes
1answer
179 views
ANTLR + StringTemplate -Create a JavaLike language and translate it into PLSql, C and C++ [closed]
Hello I am trying to implement a translator.
Since it is coming more and more complicated I will try to explain better what I'd like to implement.
I need to specify a new java like language.
This ...
0
votes
1answer
42 views
How to check whether the value of a attribute starts with a specific string?
For example, the value of the attribute <greeting> is "Hello, world!".
What I want is to check whether the <greeting> starts with "Hello", if so, apply template <response>.
My ...
2
votes
1answer
85 views
Multiple stringtemplates from one rule
Being new to ANTLR I am trying to figure out how stringtemplates work. I would like to generate a piece of Java code based on a very simple input file. Because of its flexible concept I would like to ...
1
vote
2answers
144 views
StringTemplate 4 and Python
I've just found out StringTemplate and wanted to test it in python. Does v4 work in Python (2.7/3)? Wiki is empty and I can't find any info about python port for v4 version. v3 is the only working ...
0
votes
0answers
82 views
Update Maven Repo
Can you update http://mvnrepository.com/artifact/org.antlr/ST4
?
The latest version there is 4.0.4 and you all are on 4.0.6.
FYI: the ONLY reason I am asking this here in SO is due to this page: ...
1
vote
1answer
98 views
Apply dynamic list of templates to an argument
I need apply a variable sequence of templates to an argument. The template secuence is determined in runtime in the controller layer, and these templates are applied to only one argument like:
...
3
votes
1answer
183 views
Decompose expression in base operation: ANTLR + StringTemplate
I am trying to write a translator for a Java like language to multiple languages.
Right now I am facing 2 problems:
First is to decompose complex expression in a sequence of basic operation and then ...
3
votes
1answer
264 views
String Template: make all variable declaration global
I am trying to implement a translator using ANTLR+StringTemplate.
I have a starting language that is java like and multiple destination language.
I used the example: ...
1
vote
1answer
54 views
ASP.NET Security Exception on StringTemplate
I use StringTemplate library (http://www.stringtemplate.org/) on my ASP.NET 3.5 web site, and it works perfect on localhost,
I wrote simple code:
StringTemplate template = new StringTemplate();
...
0
votes
1answer
72 views
StringTemplate 3: how to filter a list?
How can I remove specific elements from a list(=multi-valued-attribute) using a map? For example, let's say I want to filter out all b's in a given list:
<["a", "b", "c", "b"]: ...
0
votes
1answer
69 views
Filtering a multivalued attribute in StringTemplate
I have a template which uses the same multivalued attribute in various places. I often find myself in a situation where I would like to filter the attribute before a template is applied to the ...
0
votes
1answer
62 views
Validation of StringTemplate Templates
I am using StringTemplate v4 and need to validate user generated templates. Since I am new to StringTemplate I was wondering if there is an easy way to validate templates.
Thanks.
3
votes
1answer
54 views
Loading WAR resources during unit test
(The context is a Maven JavaEE project that is deployed as a WAR.)
My application class loads resources (using the StringTemplate 3.2.1 library) from a package in the src/main/resources directory. - ...
0
votes
2answers
150 views
Antlr StringTemplate
How can I prevent new lines in StringTemplate? For example
myAssigns(isConst, myType, myName,exp1,exp2) ::=
<<
<if(isConst)>const <endif><myType> <myName> ...
0
votes
1answer
96 views
StringTemplate-4: Cannot render expr property
According to the StringTemplate 4 wiki, I should be able to display an expr property, but I cannot. I'm using StringTemplate4 with jython.
Here's my template file, test.st:
test(persons, person) ...
0
votes
1answer
78 views
How pass the arguments to sub-template when using STRawGroupDir
I am using StringTemplate v4.05 to build my web application.
As I am using STRawGroupDir, I do not define something like init(v) :: ... in each .st
Currently I can successfully render the ...
0
votes
2answers
187 views
String Template: is it possible to get the n-th element of a Java List in the template?
In String Template one can easily get an element of a Java Map within the template.
Is it possible to get the n-th element of an array in a similar way?
According to the String Template Cheat Sheet ...
0
votes
0answers
90 views
Mixture of types using string template
I am using a string template group to create a java source file. Several of the classes extend another class and need to call a super method that can contain a mixture of types, normally int, String ...
0
votes
1answer
68 views
I can't get StringTemplate to indent
I have the following StringTemplate group
group RPInstr;
before(firstStat) ::= <<
<{<[beforeEnteringInstr(),firstStat]; anchor, separator="\n">}; anchor>
>>
...
0
votes
1answer
164 views
How work with Java StringTemplate boolean?
I wrote the following StringTemplate template lines:
<instance.attributes: { attr | <attr.value>}>
<instance.attributes: { attr | <if(attr.value)>skip<else>don't ...
0
votes
0answers
117 views
How can I make StringTemplate traverse tree structures?
I'm using Antlr and StringTemplate to replace the parser component in our C++ reflection system. I've defined a grammar that generates a property tree. I fairly recently started the codegen part, so ...
2
votes
1answer
259 views
ANTLR StringTemplate infinite loop while rendering the template
I am using antlr-3.4-complete.jar which i believe is using StringTemplate version 3.2.1
I have the following productions in the tree grammar
functionCall
: ^(FUNCCALL NCName pr+=params*) ...
1
vote
1answer
141 views
How to get rid of StringTemplate warning “\n in string”
I'm using StringTemplate 4 to generate some Java source files.
The templates are really simple, e.g.:
QueryHandler(method) ::="
public class Obtenir<method.name>Handler extends ...
0
votes
1answer
46 views
Can't access ViewDataDictionary object properly on StringTemplate
I'm playing with StringTemplate version 3.1.4.6002 as a view engine for an MVC project. I can't seem to access an object being passed to the template and have it render on a webpage. So basically, I ...
1
vote
1answer
243 views
StringTemplate: increment value when if condition true
I want to find out if StringTemplate have/support incrementation of an number.
Situation is:
input: is an array of objects which have "isKey() and getName()" getter.
output should be (i=0; IF ...
0
votes
1answer
162 views
antlr: how to use String.format inside action
I have the a rule with an action defined as follows:
metric_expr
: metric=NAME ('AS' label=NAME)? {System.out.println(String.format("%s: %s", metric, label));}
;
I got the error says:
...
