Ian Bicking [mailto:[EMAIL PROTECTED] wrote:
>
> I agree -- I don't think a Webware book would work. In fact, I don't
> think Python is ready for any web programming books (except Zope -- but
> even those suck tremendously, so maybe Zope isn't ready either ;).
There's a question of maturity an
Here's a couple of improvements to the code referenced in David's message:
In the definition of postId(), change this line:
id = '%s%s' % (time.time(), random.random())
to:
id = '%r%r' % (time.time(), random.random())
to avoid loss of precision.
And in isReposted(), add this as th
What is the current status of web servers available for running webware
?
I've written an application running on a server with apache but the
admins are scared to add the webkit adapter to it so I'm looking for an
alternate. (I can run multiple processes on this box)
I like thttpd, twisted, and