jatl icon indicating copy to clipboard operation
jatl copied to clipboard

JATL : Java Anti-Template Language

Results 10 jatl issues
Sort by recently updated
recently updated
newest added

The original variable expansion `${SomeVariable}` was powered by commons lang `StrSubstitutor` prior `0.2.3` (see #14) . The new variable expansion is a simpler and in theory faster albeit probably buggy....

enhancement

https://github.com/agentgt/jatl/blob/master/src/main/java/com/googlecode/jatl/MarkupBuilder.java#L338 this current signature is `public final T text(String text) {` would be nice if it was `public final T text(Object text) {` and called toString internally so I can...

I am trying to include different "data-" attributes in my code, but I don't know where to start. I thought about modifying the function `public T data(String value) { return...

question

``` Hello Adam, another question what I have: it is possible to skip elements? My use case: I have some functionality to check if there a permission to call controller....

Type-Enhancement
auto-migrated
Priority-Medium

``` Its not clear that JATL does generic XML. It also does not make semantic sense to use new Html() {}; For XML. Thus a Xml builder will be made:...

Type-Enhancement
auto-migrated
Priority-Medium

``` I'm somehow wondering whether someone else didn't notice this issue before. It seems that in the final HTML rendering it isn't the best choice to draw every closing tag...

auto-migrated
Priority-Medium
Type-Defect

``` I've added simpler-to-use attribute setter methods, support for comments and CData in my clone (http://code.google.com/r/alexeyvromanov-jatl). Examples: body().alink(Color.BLACK).vlink(Color.RED).end(); ins().datetime(new Date(0), TimeZone.getTimeZone("UTC")).end(); a().href(new URI("http://example.com/?x=1&y=2")).end(); input(InputType.CHECKBOX).selected().end(); ``` Original issue reported on code.google.com...

Type-Enhancement
auto-migrated
Priority-Medium

``` We are missing some HTML5 tags like article. The original intent for the HtmlBuilder is for it to be HTML5 (hence why its not called XHTMLBuilder). There are obvious...

Type-Enhancement
auto-migrated
Priority-High

``` See blog post: http://adamgent.com/post/7126591339/did-not-know-about-java-lang-appendable ``` Original issue reported on code.google.com by `[email protected]` on 1 Jul 2011 at 6:19

Type-Enhancement
auto-migrated
Priority-Medium

``` If Html was an immutable object it would be much easier to do composition, in particular with frameworks like functional java. ``` Original issue reported on code.google.com by `[email protected]`...

Priority-Low
Type-Enhancement
auto-migrated