Re: [Webware-discuss] Couple little additions to CVS

2004-06-09 Thread Frank Barknecht
Hallo, Ian Bicking hat gesagt: // Ian Bicking wrote: > Well that's a stumper. I don't get that error. I assume 'from > MiddleKit.Core.ObjectStore import ObjectStore' is somehow failing, but I > don't know why. It seems like it must be unrelated. I'd suggest > putting in a print statement to

Re: [Webware-discuss] Couple little additions to CVS

2004-06-09 Thread Ian Bicking
Frank Barknecht wrote: Hallo, Ian Bicking hat gesagt: // Ian Bicking wrote: There's also some small changes to MakeAppWorkDir.py, so you can set up the Wiki (in svn://w4py.org/Wiki) like: MakeAppWorkDir -c Wiki -d ~/w4py.org/Wiki/Context -l ~/w4py.org/Wiki \ ~/WikiWorkDir And no further confi

Re: [Webware-discuss] Couple little additions to CVS

2004-06-08 Thread Frank Barknecht
Hallo, Ian Bicking hat gesagt: // Ian Bicking wrote: > There's also some small changes to MakeAppWorkDir.py, so you can set up > the Wiki (in svn://w4py.org/Wiki) like: > > MakeAppWorkDir -c Wiki -d ~/w4py.org/Wiki/Context -l ~/w4py.org/Wiki \ > ~/WikiWorkDir > > And no further configuratio

Re: [Webware-discuss] Couple little additions to CVS

2004-05-28 Thread Ian Bicking
[EMAIL PROTECTED] wrote: Will the servlets be reloaded automatically? What happens when you update a file that a servlet may depend on, like modify a config file? will these be reloaded as well? If not is there a way to change the behavior of the appserver back to the "restart method"? I have f

RE: [Webware-discuss] Couple little additions to CVS

2004-05-28 Thread jose
ry helpful when we are developing a site Jose > Original Message > Subject: Re: [Webware-discuss] Couple little additions to CVS > From: "deelan" <[EMAIL PROTECTED]> > Date: Fri, May 28, 2004 12:19 am > To: "Ian Bicking" <[EMAIL PROT

Re: [Webware-discuss] Couple little additions to CVS

2004-05-28 Thread deelan
Ian Bicking wrote: I've made a couple small additions to CVS. You can now write your configuration files like Python modules, e.g.: #AppServer.config PrintConfigAtStartUp = True Verbose = True Host = '127.0.0.1' this is a welcome addition! Lastly, AutoReload now isn't triggered by updating servl

[Webware-discuss] Couple little additions to CVS

2004-05-26 Thread Ian Bicking
I've made a couple small additions to CVS. You can now write your configuration files like Python modules, e.g.: #AppServer.config PrintConfigAtStartUp = True Verbose = True Host = '127.0.0.1' #instead of { 'PrintConfigAtStartUp': 1, 'Verbose': 1, 'Host': '127.0.0.1', } T