Re: [Tutor] Is this a "Class" problem?

2008-09-02 Thread Adrian Greyling
I appreciate the feedback! I'll check out the pubsub module and see how that works out and I'll subscribe to the wxPython group too! Thanks again! On Fri, Aug 29, 2008 at 5:31 PM, Kent Johnson <[EMAIL PROTECTED]> wrote: > On Fri, Aug 29, 2008 at 12:19 PM, Adrian Greyling > <[EMAIL PROTECTED]

Re: [Tutor] Tramline implementation

2008-09-02 Thread Kent Johnson
On Tue, Sep 2, 2008 at 4:00 AM, goldgod a <[EMAIL PROTECTED]> wrote: > I created a simple upload file using python-cgi. It's working with apache. I > want to implement tramline support with that file. Tramline will work with > apache and we can transfer the large file. I added the virtual host al

Re: [Tutor] monitor subprocess and get it's output during execution

2008-09-02 Thread Kent Johnson
2008/9/1 Colin. Wang <[EMAIL PROTECTED]>: > When I try: > p = subprocess.Popen(["robocopy.exe" +" " + "DownloadArgs"],Shell = > True,stdout = PIPE) > while True: > line = p.stdout.readline() > if not line: break > time.sleep(5) ### new added > print ">", > > then robocopy download will never co

Re: [Tutor] Tramline implementation

2008-09-02 Thread goldgod a
hi, I'm not sure what your problem is. Do you mean that your cgi is never > being called by Apache? You have to configure apache for this to > happen. Check the Apache docs or google 'python cgi apache'. I created a simple upload file using python-cgi. It's working with apache. I want to impleme