[Zope] Couple of 2.0b1 observations on win98
Anthony Pfrunder
s341625@student.uq.edu.au
Mon, 2 Aug 1999 09:09:58 +1000 (GMT+1000)
On Sun, 1 Aug 1999, Rob Page wrote:
> > I assume there is no earthly way to get zope to run external
> > cgi-scripts or
> > executables (with Zserver that is; for the moment I am using
> > zserver) unless
> > the script is in python.
>
>
> import os
> os.system("some_script.pl")
Or, under Windows, os.spawnve is a good way to do this as you can
automagically set the environment from within python. Remember to add a
'dummy' first arg to the arg list to keep Billy happy.
Cheers,
Anthony Pfrunder