[appengine-java] Re: suggestions on template engine for GAE-java

2011-03-17 Thread Daniel Florey
You can check out 

http://code.google.com/p/jmte/


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: suggestions on template engine for GAE-java

2011-03-15 Thread Misiak
Igor is right...I've checked the package
com.google.appengine.tools.appstats inside appengine-api-labs-*.jar.
There are quite a few classes dealing with templating
(TemplateObjectModel and its subclasses, TemplateTool,
TemplateValueHelper, etc.). It seems to me as an effort to create
Django-style templating for Java world. Am I right? Is there something
like this really under the hood? Can anybody provide any further
information about this feature? Is there a way to get source code for
this classes. I think most Java developers will appreciate such
elegant and easy to use templating approach with template inheritance,
powerful template tags and filters.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: suggestions on template engine for GAE-java

2011-03-15 Thread Jay Young
http://code.google.com/closure/templates/

Google doesn't push their Closure Tools very hard, but I've had a lot of 
success with their templating engine.  Take a look at the docs.  It's not 
Django/PHP/JSP style templating, so it does take a bit of re-learning.  That 
said, there are a lot of benefits to their approach.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: suggestions on template engine for GAE-java

2011-03-15 Thread Didier Durand
Hi,

see
http://groups.google.com/group/google-appengine-java/browse_thread/thread/ef090c0e6ea4a6d6/649797c2b590f672?lnk=gstq=framework+ikai#649797c2b590f672

tons of suggestions

regards

didier

On Mar 15, 6:07 pm, Jay Young jayyoung9...@gmail.com wrote:
 http://code.google.com/closure/templates/

 Google doesn't push their Closure Tools very hard, but I've had a lot of
 success with their templating engine.  Take a look at the docs.  It's not
 Django/PHP/JSP style templating, so it does take a bit of re-learning.  That
 said, there are a lot of benefits to their approach.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: suggestions on template engine for GAE-java

2011-03-11 Thread Igor Mihálik
I've noticed appstats app uses some python-like templating in Java. It's 
clear from the appengine-api-labs-*.jar. There's 
apphosting/ext/appstats/templates with html files with the templates. Is 
this something Google could share with us? Also the classes in the package 
like com.google.appengine.tools.appstats.TemplateTool are package private so 
it's all hidden inside. Is it shared somewhere publicly or am I just missing 
something obvious?
- Igor

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.