Where can I found "hot_plug" function of zpi.zope ?
Hi, I search the definition of "hot_plug" function. I look it at "CMFQuickInstallerTool/QuickInstallerTool.py" file. The line code is that : from zpi.zope import not_installed, hot_plug I not found hot_plug function in my Product/ directory and not in Zope source. Where can I found it ? Thanks for your help -- Stéphane
Hi Stépahne,
I search the definition of "hot_plug" function.
I look it at "CMFQuickInstallerTool/QuickInstallerTool.py" file. The line code is that :
from zpi.zope import not_installed, hot_plug
I not found hot_plug function in my Product/ directory and not in Zope source. Where can I found it ? I don't know where the function is, but if you are using linux you could try:
% grep -r "def hot_plug" *.py and in windows, just use the Built-in search feature and introduce as filename "*.py" and in the text field insert "def hot_plug" Regards, Josef
Josef Meile wrote:
and in windows, just use the Built-in search feature and introduce as filename "*.py" and in the text field insert "def hot_plug"
Sadly, as of Windows XP, this is broken beyond use: it simply doesn't find some stuff in certain files, like .py files, for example :-( Install cygwin and use grep there, if you really have to stay on windows ... Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk
There is also a wingrep freeware utility. But it def. IS broken in native windows. bobb ----- Original Message ----- From: "Chris Withers" <chris@simplistix.co.uk> To: "Josef Meile" <jmeile@hotmail.com> Cc: "KLEIN Stéphane" <stephane@harobed.org>; <zope@zope.org> Sent: Wednesday, May 25, 2005 4:15 PM Subject: Re: [Zope] Re: Where can I found "hot_plug" function of zpi.zope ?
Josef Meile wrote:
and in windows, just use the Built-in search feature and introduce as filename "*.py" and in the text field insert "def hot_plug"
Sadly, as of Windows XP, this is broken beyond use: it simply doesn't find some stuff in certain files, like .py files, for example :-(
Install cygwin and use grep there, if you really have to stay on windows ...
Chris
-- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
Sadly, as of Windows XP, this is broken beyond use: it simply doesn't find some stuff in certain files, like .py files, for example :-(
Install cygwin and use grep there, if you really have to stay on windows There is no need of installing that big monster :-). You can also install grep for windows:
http://gnuwin32.sourceforge.net/packages/grep.htm or MSYS, which also has a grep utility and is even smaller than cygwin, which I think isn't worth to install if you only want to use the grep utility.
participants (4)
-
bobb -
Chris Withers -
Josef Meile -
KLEIN Stéphane