[Zope-dev] zopeXMLMethods and Zope 2.7.x

2005-02-16 Thread Francois-regis . Chalaoux
Hi All, It seems that zopeXMLMethods and Zope 2.7.x do not work correctly together. In fact, installed xml processors are not visible from ZopeXMLMethods object in ZMI (blank list). Personaly I use 4Suite 1.0a4 as processor. Everything work with Zope 2.7.2 but since Zope 2.7.3 every fail.

[Zope] List of New products

2001-01-10 Thread Francois-regis Chalaoux
It was a great idea to get the list of product sort on date in download zone. Today appears only categories and product annonced in news. So, is it a maintenance period or a stable presentation of products ? FRC. ___ Zope maillist - [EMAIL

[Zope] INTERBASE cannot do this type of query ?

2000-12-14 Thread Francois-regis Chalaoux
Error, Products.gvibDA.gvib.gvibExceptions.ProgrammingError: - Dynamic SQL Error -- SQL error code = -206 -- Column unknown -- MOUSE SQL used: select IND_SPECIE from ZEB_INDIVIDU where IND_SPECIE = "MOUSE" ___ Zope maillist - [EMAIL PROTECTED]

[Zope] INTEGER manipulation with INTERBASE

2000-12-14 Thread Francois-regis Chalaoux
Hi, When I query my db with gvib adaptator I obtain integer value as 1L, 2L !!! I would like to query the same db with these resulting previous integer but 1L or 2L are not understood by an interbase db. Any solution to transform these strings in integer on the fly or others propositions ?

[Zope] Problem with an INTERBASE connection

2000-11-28 Thread Francois-regis Chalaoux
Trying to run a connection with this Database Connection String : 'C:?Program Files?Borland?InterBase?examples?Database?employee.gdb sysadm masterkey', I got the following error : Invalid connection string: 'C:?Program Files?Borland?InterBase?examples?Database?employee.gdb sysadm masterkey'.

[Zope] Zope and Websphere

2000-11-21 Thread Francois-regis Chalaoux
Hi, I have to convince my new boss to use Zope rather than webspere !! Did somebody compare the two products ?? FRC ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related

[Zope] Import class in External method

2000-09-21 Thread Francois-Regis CHALAOUX
Hi, I had some weeks ago a nice discussion on " Howto import external class in an external method ". However, I use now the " http://www.zope.org/Members/4am/instancehome " method to run my site. This really cool ;) In these condition, I would like to use something similar to import modules. If

[Zope] Render the number of occurrence in a batch

2000-09-01 Thread Francois-Regis CHALAOUX
Hi, How to render the total number of result coming from the search in a ZCatalog even if the batch will be render in several sequences ? Howto render : "Your search contain results" FR.

[Zope] Searching in all field with ZCatalog

2000-08-31 Thread Francois-Regis CHALAOUX
Hi All, Is it possible to search in all the indexed fields of a ZCatalog with only **one** input form ? FR

[Zope] Problem with zope mailing list

2000-08-31 Thread Francois-Regis CHALAOUX
Hi All, Since longtime now I have a problem with the Zope mailing list : I always receive, the messages from "[EMAIL PROTECTED] " not from the name of the right person (for 97% messages) ? Any idea ? FR

[Zope] Objet : Re: [Zope] Searching in all field with ZCatalog

2000-08-31 Thread Francois-Regis CHALAOUX
-BeenThere: [EMAIL PROTECTED] Francois-Regis CHALAOUX wrote: Hi All, Is it possible to search in all the indexed fields of a ZCatalog with only **one** input form ? Woudl having a field for each index on the one form do it? cheers, Chris ___ Zope

[Zope] Objet : [Zope] How to test if an object exist

2000-08-24 Thread Francois-Regis CHALAOUX
Hi, Thanks for the details on hasattr function. I learned a lot ;) In the meantime, I found an other solution. Have a look. Bye, FR. Here I create folders in the folder "self.folder1". Each new folder has a number at its end (folder11, folder12, etc ...). def testFolder(self):

[Zope] How to test if an object exist

2000-08-23 Thread Francois-Regis CHALAOUX
Hi, In the following code I test if a folder exists. The folder name to test is generated on the fly and here I try to simultate it with 'exce' function (may my error). The first time object2create does not exist and object2create is well created but if run again the script I obtain the

[Zope] Add a folder anywhere from anywhere

2000-08-18 Thread Francois-Regis CHALAOUX
Hi, USE CASE How to test if an "idFolder" exist in my "topFolder"? If the "idFolder" does not exist I would like to add it to "topFolder" Question == Who know why this code in an external method (EM) does not work? Code def addFolder(self, idFolder, topFolder):

[Zope] OQL for Zope

2000-08-17 Thread Francois-Regis CHALAOUX
Will Zope.org implement OQL? FR

[Zope] Choose where to create a ZClass instance with EM

2000-08-17 Thread Francois-Regis CHALAOUX
Hi, When I create a ZClass instance from an external Method I create by default the instance in the same place where is located my external method (see the code below). How to select a different place in my script where will be create the ZClass ? Code def addZClass(self,id,data):

[Zope] Import classes in External method

2000-08-16 Thread Francois-Regis CHALAOUX
Hi, How to import classes in an External method? I mean, where to place the module where my class is defined. I tried to put it in "lib/python/" or "Zope-2-2-0/lib/python/Shared", or in "/usr/lib/python1.5/" but I always got the same message : The errror === Error Type:

[Zope] ZScheduler-0.0.6 problem

2000-06-21 Thread Francois-Regis CHALAOUX
Hi, I have just tested ZScheduler-0.0.6 on NT machine : it works : On my Linux machine it does not work : Thus, the code is NT dependant or the archive works on NT only !!!??? FR

[Zope] ZScheduler-0.0.5 problem

2000-06-19 Thread Francois-Regis CHALAOUX
Hi, 1/ I'm Trying to use ZScheduler-0.0.5 on Linux 6.1, I386, Zope-2.1.7. Just after to install the product I cannot start Zope !!! 2/ There is also an archive problem when I extract the file from ZScheduler-0.0.5.tgz : srchocolat 138% tar xvzf ZScheduler-0-0-5.tgz

[Zope] ZClass and class variable

2000-06-05 Thread Francois-Regis CHALAOUX
Hi all, Is it possible to declare a class variable in a Zclass? And if yes, how to call this variable in class ZClass methodes? Bye, FR.