cgi script error

2006-01-19 Thread Ron Griswold
HTML();     It gives the same complaint if I’ve got openDocument and/or openHead uncommented. The script is executing otherwise the error wouldn’t show up in the error_log with specific text from the script. Also, I’ve run the script and redirected it’s output to an .html file and the server loads it with no problems.   Any ideas are appreciated.   Thanks,   Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED]   -- http://mail.python.org/mailman/listinfo/python-list

RE: HTML library

2006-01-17 Thread Ron Griswold
Hi Cliff, Looks like xist is exactly what I'm looking for. Thank you, Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED] -Original Message- From: Cliff Wells [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 17, 2006 9:33 AM To: Ron Griswold Cc: python-list@python.org Su

HTML library

2006-01-17 Thread Ron Griswold
go the other way ;)   Thanks,   Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED]   -- http://mail.python.org/mailman/listinfo/python-list

RE: Restarting scripts

2006-01-16 Thread Ron Griswold
aying that the socket the server is opening is already in use (even on the first try). Does anyone know of a nice reliable app that already does this for you? Open source preferably. Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [ma

Restarting scripts

2006-01-16 Thread Ron Griswold
with python code, or third party software, I’d love to hear about it.   Thanks,   Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED]   -- http://mail.python.org/mailman/listinfo/python-list

RE: Creating shortcuts?

2006-01-13 Thread Ron Griswold
Hi Roger, Thank you, I will look into this. Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Roger Upole Sent: Friday, January 13, 2006 4:59 AM To: python-list@python.org Subject: Re: Creating

RE: Creating shortcuts?

2006-01-13 Thread Ron Griswold
appear in a windows directory listing, not that I really want it to. As for os.link and os.symlink, these appear to be unix specific. It would be nice if os.symlink, when run on windows, would create a shortcut. Thanks, Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED] -Original Message

Creating shortcuts?

2006-01-12 Thread Ron Griswold
Hi Folks, Is it possible to create a shortcut to a file in Python? I need to do this in both win32 and OSX. I've already got it covered in Linux by system(ln...). Thanks, Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

RE: Converting a string to an array?

2006-01-12 Thread Ron Griswold
Does this do what you are looking for? >>> s = 'abcdefg'; >>> a = []; >>> a += s; >>> a; ['a', 'b', 'c', 'd', 'e', 'f', 'g'] Ron Griswold Character TD R!OT Pictures [EMAIL P

RE: how to improve this simple block of code

2006-01-11 Thread Ron Griswold
How 'bout: X = "132.00"; Y = int(float(X)); Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mel Wilson Sent: Wednesday, January 11, 2006 1:08 PM To: python-list@python.org Subj

RE: "0 in [True,False]" returns True

2005-12-13 Thread Ron Griswold
ue >>> Booltype.__class__ == var.__class__ False Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

RE: apply()?

2005-12-05 Thread Ron Griswold
Just the ticket. Thank you! Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Fredrik Lundh Sent: Monday, December 05, 2005 3:58 PM To: python-list@python.org Subject: Re: apply()? Ron Griswold

apply()?

2005-12-05 Thread Ron Griswold
doesn’t appear to be the case. Can someone point me in the right direction?   Thanks,   Ron Griswold Character TD R!OT Pictures [EMAIL PROTECTED]   -- http://mail.python.org/mailman/listinfo/python-list