I want to use mod_python, but I'm having trouble. Here's what I have in
my config:
LoadModule python_module /usr/local/apache2/modules/mod_python.so
AddHandler mod_python .py
PythonHandler mptest
PythonDebug On
/usr/local/apache2/htdocs/python/mptest.py:
from mod_python import *
I fixed it already, as I said. The problem had nothing to do with
wxPython. I just used my own functions in the wrong way.
--
http://mail.python.org/mailman/listinfo/python-list
Thanks, guys, it works now. I couldn't have done it without your
generous help.
--
http://mail.python.org/mailman/listinfo/python-list
PingGUI is a program that nobody but me knows anything about. If I
wanted help from people who are experts on it, I'd get nothing at all.
--
http://mail.python.org/mailman/listinfo/python-list
(I don't know how to make the title more specific in a useful way,
sorry.)
http://www.geocities.com/fusionary_2000/PingGUI.zip
Requires wxPython.
The part that fails is the function OnGridLabelLeftClick in PingGUI.py.
It just doesn't do anything. It's supposed to sort the grid by values
in the c
Thanks. It seems to be working.
--
http://mail.python.org/mailman/listinfo/python-list
I have a wxPython program, and it has a loop. I want to be able to
break the loop by pushing a button. But it doesn't react to events
until the loop finishes, which is sort of pointless.
What's the best way to get it to work? Do I need threads? Or is there a
more convenient way?
--
http://mail.p
I'm using wxPython. My program has a loop where it puts data in a grid
cell, and then goes for some more processing. Well, some of the cells
are used to indicate progress, but their usefulness is hindered by the
fact that the grid refuses to change until the loop finishes, when it
shows the final r
I have a grid. I want to sort it when a column label is clicked. I know
about the EVT_GRID_LABEL_LEFT_DCLICK event, but that is not enough. I
do not merely need to know that a label was clicked. I need to know
which label was clicked. I do not know how to do that. I suspect you
might know. I reques