Re: [Webware-discuss] How to include a php page from the same server inside my SitePage?

2006-03-20 Thread Jose Galvez
? Or should I simply use frames? Sophana Jose Galvez wrote: Dear Sophana, When I've mixed webware with php (which we do quite alot where I work), I have always gone through the apache web server. Essentially we have a single root context which can server either webware pages or php pages

Re: [Webware-discuss] How to include a php page from the same server inside my SitePage?

2006-03-16 Thread Jose Galvez
Dear Sophana, When I've mixed webware with php (which we do quite alot where I work), I have always gone through the apache web server. Essentially we have a single root context which can server either webware pages or php pages depending on the extension of the script, py is run through webware

Re: [Webware-discuss] RE: Configuring webkit in IIS v6

2006-02-06 Thread Jose Galvez
instead of localhost but the batch file failed to load. I do appreciate your interest in the subject. Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jose Galvez Sent: Monday, February 06, 2006 9:51 PM To: webware-discuss@lists.sourceforge.net

[Webware-discuss] Apache 2.2

2005-12-19 Thread Jose Galvez
Does anyone know if mod_webkit will work with the new apache2.2? Jose --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files

[Webware-discuss] does anyone know?

2005-10-21 Thread Jose Galvez
Hi all, I know that this is the wrong list, but does any know if the pythonpaste users-list is still up? I looked at it the other day and there has not been a recent post to it in a while, and when I sent it a message it got bounced back. From Ian's blog it looks like he is on vacation, is

Re: [Webware-discuss] I can't set webware appserver options any longer

2005-10-08 Thread Jose Galvez
AppServer.AutoReload=1 I know the three are pretty simple and totally not needed, but their just really nice shortcuts to keep things simple for me. Again thanks for fixing the argument problem. Jose Christoph Zwerschke wrote: Jose Galvez wrote: For windows rather then using a bat file to start

Re: [Webware-discuss] I can't set webware appserver options any longer

2005-10-07 Thread Jose Galvez
yes you have to pass the param as --AppServer.AutoReload=1 Jose Christoph Zwerschke wrote: [EMAIL PROTECTED] wrote: ... so i would from the command line run Appserver.bat --AppServer.AutoReload=1 Hm, are you sure that ever worked? Because I just noticed Windows/DOS splits the parameters

Re: [Webware-discuss] I can't set webware appserver options any longer

2005-10-07 Thread Jose Galvez
I'm not using 98 any longer so I really don't care if we stop supporting 98. Now having said that I wonder how many of us Windoz suffers are still using webware on 98 rather then XP or one of the 200X server platforms. For windows rather then using a bat file to start the appserver how about

Re: [Webware-discuss] ntservice

2005-10-02 Thread Jose Galvez
Thanks Chris, I just gave the new code a try and it works perfect! Thanks for fixing it so soon Jose Christoph Zwerschke wrote: Jose Galvez wrote: To restore the NTService.py behavior I had to make some changes to the new AppServerService.py that gets put into the working dir. Here

Re: [Webware-discuss] ntservice

2005-09-30 Thread Jose Galvez
To restore the NTService.py behavior I had to make some changes to the new AppServerService.py that gets put into the working dir. Here is a copy of my AppServerService.py for my context. Note I had to add back the workDir Option otherwise it would point to the webware folder and the default

Re: [Webware-discuss] Shouldn't Super work with webkit?

2005-06-26 Thread Jose Galvez
put 'object' second in the parent classes it seems to work... from WebKit.Page import Page class MyPage(Page, object): def awake(self, trans): super(MyPage, self).awake(trans) --Tracy On Jun 25, 2005, at 5:50 PM, Jose Galvez wrote: BTW if I comment out

[Webware-discuss] Shouldn't Super work with webkit?

2005-06-25 Thread Jose Galvez
Shouldn't super work with webkit? basically why does this generate an error: from WebKit.Page import Page class sutest(Page): def __init__(self): super(sutest, self).__init__() self.val = 'test' def writeContent(self): self.write(self.val) the error I get is :

Re: [Webware-discuss] Shouldn't Super work with webkit?

2005-06-25 Thread Jose Galvez
know how it goes, -Chuck On 6/25/05, Jose Galvez [EMAIL PROTECTED] wrote: Shouldn't super work with webkit? basically why does this generate an error: from WebKit.Page import Page class sutest(Page): def __init__(self): super(sutest, self).__init__() self.val = 'test

Re: [Webware-discuss] Shouldn't Super work with webkit?

2005-06-25 Thread Jose Galvez
: Try changing the class declaration in WebKit/Object.py to: class Object(object, NamedValueAccess): and then I think it will start working. I've been running like this for months and plan on checking in this change in sometime soon. Let us know how it goes, -Chuck On 6/25/05, Jose Galvez

Re: [Webware-discuss] Shouldn't Super work with webkit?

2005-06-25 Thread Jose Galvez
BTW if I comment out the assert statement in the application.py file then it appears to work correctly, Jose Jose Galvez wrote: looking at the application.py the line causing the problem is: assert type(klass) is ClassType which I think makes sense because classes and types have been

Re: [Webware-discuss] Webware application standards

2005-06-02 Thread Jose Galvez
John Doe wrote: Hi All, Im busy conducting an analysis on some python web appplication servers. I have a few questions with regard to WebWare: 1 How scalable is WebWare ( how)? 2 With regard to web application standards how does it comply: - HTTP protocol support -- to my knowledge it

Re: [Webware-discuss] what is Launch.py purpose

2005-05-07 Thread Jose Galvez
Launch.py is used by Appserver.bat to launch the threaded appserver. look at the AppServer.bat to see how its used Jose Vardas Pavarde wrote: In my working directory is Launch.py.I start it, but I don't know what it does, for what it is used? thank You

Re: [Webware-discuss] what to write in a browser to run application

2005-05-02 Thread Jose Galvez
I'm not sure what how much of this you've already done, but since you've said that you have the Webkit/Examples running, and assuming that you have a default context set up in your working directory (which would be a subdirectory with in your C:/aplikacija folder, then to see the default

Re: [Webware-discuss] what to write in a browser to run application

2005-05-02 Thread Jose Galvez
Ok lets take this one step at a time, 1) lets assume that you created your working app dir with this code: C:\Program Files\Webware\binMakeAppWorkDir.py -c htdocs -l libs C:\Program Files\wk_working this will create the within the wk_working folder, in addition to the usual webkit files two