watching Zope internals.
I am interesting in watching the internals of Zope starting from the point where it receives an http request. Unfortunately I am stuck with doing this on w2k and I am wondering if I need to download the source and compile the c modules to do this- if so is there a freeware c compiler I can use. What file would be my starting point. Clark
You could just run a remote debugger against Zope and see the flow in Python... I've used Komodo (http://www.ActiveState.com/Komodo) (http://www.zope.org/Members/andym/KomodoDebugging) to do this in the past on Win 2K. ----- Original Message ----- From: "Clark OBrien" <COBrien@isis-server.vuse.vanderbilt.edu> To: "'Evan Simpson'" <evan@4-am.com>; <zope@zope.org> Sent: Tuesday, November 06, 2001 8:45 AM Subject: [Zope] watching Zope internals.
I am interesting in watching the internals of Zope starting from the point where it receives an http request. Unfortunately I am stuck with doing this on w2k and I am wondering if I need to download the source and compile the c modules to do this- if so is there a freeware c compiler I can use. What file would be my starting point. Clark
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Recent versions of the Cygwin port of gcc (http://www.cygwin.com) compile Zope's C stuff fine. To actually run Zope, you need to compile Python with threads on Cygwin first (the precompiled Python ships with threads disabled), but that's just a matter of: $ ./configure; make; make install ..with the Python source. Then compiling Zope on Cygwin is a matter of: $ python wo_pcgi.py There is more information in the archives - searc the Zope-dev list for "cygwin" or the Cygwin maillist for "zope". ----- Original Message ----- From: "Andy McKay" <andym@ActiveState.com> To: <zope@zope.org> Sent: Tuesday, November 06, 2001 12:06 PM Subject: Re: [Zope] watching Zope internals.
You could just run a remote debugger against Zope and see the flow in Python... I've used Komodo (http://www.ActiveState.com/Komodo) (http://www.zope.org/Members/andym/KomodoDebugging) to do this in the past on Win 2K.
----- Original Message ----- From: "Clark OBrien" <COBrien@isis-server.vuse.vanderbilt.edu> To: "'Evan Simpson'" <evan@4-am.com>; <zope@zope.org> Sent: Tuesday, November 06, 2001 8:45 AM Subject: [Zope] watching Zope internals.
I am interesting in watching the internals of Zope starting from the point where it receives an http request. Unfortunately I am stuck with doing this on w2k and I am wondering if I need to download the source and compile the c modules to do this- if so is there a freeware c compiler I can use. What file would be my starting point. Clark
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (3)
-
Andy McKay -
Chris McDonough -
Clark OBrien