I'm looking at using
Cheetah/Webware for a web application and am having some difficulty with
Cheetah.
I've got a
controller file that calls a compiled Cheetah file:
from WebKit.Page
import Page
from View1 import View1
from View1 import View1
class
Controller(Page):
def writeContent(self):
t = View1()
t.title = "test"
t.bodyTag = "Body Test"
self.write(t)
def writeContent(self):
t = View1()
t.title = "test"
t.bodyTag = "Body Test"
self.write(t)
It works fine but my
issue is that if I change/re-compile the Cheetah Template "View1", nothing
changes. I'll only see the changes if I restart the app server (not my
preference)
Any
ideas?
Thanks,
JNF
Jonathan N.
Freedman
703.862.0987