vote up 2 vote down star
1

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 bundles other related components such as a template engine, data access tools, JavaScript kit, etc. I am interested in MochiKit, demand CherryPy, but I don't want any other template engine than StringTemplate (architecture is critical--I don't want another broken/bad template engine).

Therefore, it would be acceptable to answer this question by addressing how to integrate StringTemplate with TurboGears.

It may also be acceptable to answer this question by addressing how to use CherryPy and StringTemplate in the Google App Engine.

Thanks.

flag
don't know the exact answer but I would suggest that you have a look at TurboGears framework. It integrates cherrypy with the kid template engine.docs.turbogears.org/1.0/GettingStarted/… – JV Dec 19 '08 at 1:36

2 Answers

vote up 3 vote down

Based on the tutorials for both, it looks pretty straightforward:

import stringtemplate
import cherrypy

class HelloWorld(object):
    def index(self):
        hello = stringtemplate.StringTemplate("Hello, $name$")
        hello["name"] = "World"
        return str(hello)
    index.exposed = True

cherrypy.quickstart(HelloWorld())

You'll probably want to have the CherryPy functions find the StringTemplate's in some location on disk instead, but the general idea will be like this.

Django is conceptually similar: url's are mapped to python functions, and the python functions generally build up a context dictionary, render a template with that context object, and return the result.

link|flag
vote up -1 vote down

Rob,

There's reason behind people's selection of tools. StringTemplate is not terribly popular for Python, there are templating engines that are much better supported and with a much wider audience. If you don't like Kid, there's also Django's templating, Jinja, Cheetah and others. Perhaps you can find in one of them the features you like so much in StringTemplate and live happily ever after.

link|flag
People are notorious for selecting bad X, including templating engines, so I am not interested in a popularity contest. I want a GOOD template engine, which means enforcement of MVC-like separation, which has only one option: StringTemplate. No one else has bothered. – Rob Williams Jan 20 at 21:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.