This is more a provocation for Ian, than a real post.
While looking for a good python wiki, i found http://wiki.w4py.org/thiswiki.html (wiki.Webware) really interesting. And once again this is webware so :
you don’t have a tgz .. but a direct fight with Subversion
this is a really little piece of code ..
you don’t have any ‘howto […]
Tags: Python, Webware, wiki
admin April 25th, 2004
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
Yes it works !!
While looking for a way to have some better URL in Webware, than the defaut http://host/Servlet?arg0=..&arg1=, Ian tell me to look at WebKit.URLParser. After a little time looking at the source i managed to do this without too much pain. As i can’t find example on the web, I put this here, […]
Tags: Python, Webware
admin January 29th, 2004
Ho, i miss it ..
Yesterday, it tested the HttpAdapter for Webware. This is a nice, easy to use (no need to use the cgi or tweak the httpd.conf) Adapter for Webware.
To test: Just copy the WebKit/Adapters/HTTPAdapter.py in your current Webware instance, edit this file to feet w/ your need ( mainly the 2 first vars […]
Tags: http, Python, Webware
admin December 19th, 2003
While loosing some time over python blogs, i just found this blog written in Webware.
This sound amaizing since i have already done several things like this, using ww and Modeling but i found that using a RDBDM for a little blog ( < 1000 post) isn’t a good idea. Need a lot of works for […]
Tags: Blog, Python, Webware
admin December 10th, 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