Webware is one of my favorite webapp. Simply because i understand how it works. There is no magic in.. just a standard Servlet way of think.
But on the other side, i really think some part of webware should be left out. Look at the standard webware packages:
CGIWrapper
WebKit
WebUtils
MiscUtils
COMKit
MiddleKit
PSP
TaskKit
UserKit
Only CGIWrapper / WebKit / WebUtils are used in [...]
Tags: Python, Webware, zpt
admin April 8th, 2004
After looking at several way to build custom webapps in python, i tested several things :
Zope alone
Zope + CMF
Plone
Webware + Cheetah or PSP
Webware + Modeling + ZPT ..
And my conclusions right now is: SQLObject is really a kool SQL Api since you can use it very easily. For the template i really think that ZPT [...]
Tags: cheetah, sqlobject, Webware, Zope, zpt
admin January 13th, 2004
I’ just discover ikaaro (http://www.ikaaro.org) last night. After a couple of ./configure; make install it seems to work pretty fine. I really need to look at this closer since it use a custom TAL like system that seems to be really faster than original TAL.
Some bugs still remain, i was unable to do cut/paste and [...]
Tags: Python, Zope, zpt
admin November 11th, 2003
This is my first hack over ZPTPage and Modeling to enable regerating of ZPTPage only when Modeling objects changed .. check out class A: (which is a sample fake Modeling Object)
import os,time
from ZPTPage import ZPTPage
class A:
def __init__(self):
self.a = ‘B’ * 50
[...]
Tags: Python, zpt
admin August 22nd, 2003