> > 3) are there examples or documentation for using webware,
> > formkit, and
> > cheetah together in an optimal way?

You can use the inheritance approach, as Jose, I have a base servlet,
but I not extend Page, I extend Cheetah.Template, this base servlet
has some special methods to save my life. I put it in a Module inside
webware, I call BaseSite so I can do in my servlets:

from BaseSite.BaseServlet import BaseServlet

or I can do in my templates:

#extend BaseSite.BaseServlet
#implements writeHTML

Then, all my templates extends BaseServlet... I must compile each
servlet, but this way I can have Servlets extending Templates... I can
use the "block" statement of cheetah to define method to change...

I hope I could help. Look at the cheetah documentation, you will
understand what I trying to say :) Sorry my poor english...

-- 
Michel Thadeu Sabchuk
Curitiba - PR - Brasil


-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
_______________________________________________
Webware-discuss mailing list
Webware-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to