Re: [Zope-dev] ZSQL method and LIMIT clause

2005-11-03 Thread Thanh Hải , Hà
Thanks Stefan! Sticking max_rows:0 into the lead-in comment does the magic. 2005/11/3, Stefan H. Holek [EMAIL PROTECTED]: *Everything* you can do in the ZMI can be done from code. The ZMI isnot a magic entity, it uses the same APIs as everybody else. With FSZSQLMethods you can stick max_rows: 0

[Zope-dev] Re: SVN: Zope/trunk/ Merge philikon-zope32-integration branch. Basically, this branch entails:

2005-11-03 Thread yuppie
Hi Philipp! Philipp von Weitershausen wrote: Log message for revision 39848: Merge philikon-zope32-integration branch. Great! This is a big step forward. * Moved to a zpkgutils-based build system, as the Zope 3.2 extension modules require to be built with it. If everything goes

[Zope-dev] File uploading with Zope

2005-11-03 Thread Thanh Hải , Hà
Hello, Does anyone know tomanipulate files within a local filesystem instead of ZODB? Is it possible to do that through a python script or dtml method? Thanks. ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev **

[Zope-dev] Re: SVN: Zope/trunk/ Merge philikon-zope32-integration branch. Basically, this branch entails:

2005-11-03 Thread Philipp von Weitershausen
yuppie wrote: * Moved to a zpkgutils-based build system, as the Zope 3.2 extension modules require to be built with it. If everything goes ahead as planned, the release tarball will also be built with zpkgutils (some work has also been done in that direction). That part

Re: [Zope-dev] File uploading with Zope

2005-11-03 Thread Jens Vagelpohl
On 3 Nov 2005, at 10:41, Thanh Hải, Hà wrote: Hello, Does anyone know to manipulate files within a local filesystem instead of ZODB? Is it possible to do that through a python script or dtml method? Thanks. No it is not. And doing that opens up security risks. You need to write a

[Zope-dev] buildbot failure in Zope trunk 2.4 Linux zc-buildbot

2005-11-03 Thread buildbot
The Buildbot has detected a failed build of Zope trunk 2.4 Linux zc-buildbot. Buildbot URL: http://buildbot.zope.org/ Build Reason: changes Build Source Stamp: 1307 Blamelist: jinty,philikon BUILD FAILED: failed compile sincerely, -The Buildbot ___

[Zope-dev] Re: SVN: Zope/trunk/ Merge philikon-zope32-integration branch. Basically, this branch entails:

2005-11-03 Thread Philipp von Weitershausen
Philipp von Weitershausen wrote: That worked for me (though I usually don't do the configure; make dance, but just do an in-place build with python setup.py build -i; see also below). Sorry, I meant $ python setup.py build_ext -i That's what make all does on Zope 3 and now on Zope 2 as

[Zope-dev] buildbot failure in Zope trunk 2.4 Linux zc-buildbot

2005-11-03 Thread buildbot
The Buildbot has detected a failed build of Zope trunk 2.4 Linux zc-buildbot. Buildbot URL: http://buildbot.zope.org/ Build Reason: changes Build Source Stamp: 1308 Blamelist: philikon BUILD FAILED: failed compile sincerely, -The Buildbot ___

[Zope-dev] buildbot failure in Zope trunk 2.4 Linux zc-buildbot

2005-11-03 Thread buildbot
The Buildbot has detected a failed build of Zope trunk 2.4 Linux zc-buildbot. Buildbot URL: http://buildbot.zope.org/ Build Reason: changes Build Source Stamp: 1311 Blamelist: andreasjung BUILD FAILED: failed compile sincerely, -The Buildbot ___

[Zope-dev] buildbot failure in Zope trunk 2.4 Linux zc-buildbot

2005-11-03 Thread buildbot
The Buildbot has detected a failed build of Zope trunk 2.4 Linux zc-buildbot. Buildbot URL: http://buildbot.zope.org/ Build Reason: changes Build Source Stamp: 1312 Blamelist: andreasjung BUILD FAILED: failed compile sincerely, -The Buildbot ___

[Zope-dev] Re: SVN: Zope/trunk/ Merge philikon-zope32-integration branch. Basically, this branch entails:

2005-11-03 Thread yuppie
Hi Philipp! Philipp von Weitershausen wrote: That part seems to be work in progress. I needed some time and manual changes to set up an in-place instance for a fresh sandbox. What changes are those? A fresh Zope trunk checkout works for me. Here's what I did: $ svn co svn+ssh://[EMAIL

[Zope-dev] Re: differences in PropertyManager._setPropValue

2005-11-03 Thread Florent Guillaume
Victor Safronovich wrote: Hello Florent Guillaume, Monday, October 31, 2005, 6:25:20 PM, you wrote: FG This was changed because have mutable objects stored as properties can lead FG to unexpected behavior. Do you mean you have a custom proprty type called FG list? yes, my own property

[Zope-dev] Re: SVN: Zope/trunk/ Merge philikon-zope32-integration branch. Basically, this branch entails:

2005-11-03 Thread Florent Guillaume
yuppie wrote: Hi Philipp! Philipp von Weitershausen wrote: That part seems to be work in progress. I needed some time and manual changes to set up an in-place instance for a fresh sandbox. What changes are those? A fresh Zope trunk checkout works for me. Here's what I did: $ svn co

[Zope-dev] Constructing a ZOPE request in a python script

2005-11-03 Thread Dave Coe
I am hoping that someone can help me with how to construct a POST request in a python script. I tried searching the older messages, but post and get are such common terms, that I didn't have much luck. I have a DTML Document with a form. Right now, it calls a DTML method that stores data in

Re: [Zope-dev] Constructing a ZOPE request in a python script

2005-11-03 Thread Andreas Jung
--On 3. November 2005 07:34:15 -0800 Dave Coe [EMAIL PROTECTED] wrote: I am hoping that someone can help me with how to construct a POST request in a python script. I tried searching the older messages, but post and get are such common terms, that I didn't have much luck. Write an

Re: [Zope-dev] Constructing a ZOPE request in a python script

2005-11-03 Thread Lennart Regebro
On 11/3/05, Dave Coe [EMAIL PROTECTED] wrote: Can this be done? Yes, but it probably doesn't make much sense. If you did create POST request, Zope would tale that request and convert it into a call to the DTML method. However, your script can just call the DTML method directly instead. No

Re: [Zope-dev] Re: SVN: Zope/trunk/ Merge philikon-zope32-integration branch. Basically, this branch entails:

2005-11-03 Thread Jim Fulton
Philipp von Weitershausen wrote: yuppie wrote: * Moved to a zpkgutils-based build system, as the Zope 3.2 extension modules require to be built with it. If everything goes ahead as planned, the release tarball will also be built with zpkgutils (some work has also been done in that

[Zope-dev] zope.app stitching

2005-11-03 Thread Jim Fulton
We need to stitch zope.app into Zope 2 more carefully than we are now. Much of what we are stitching is unreleased in Zope3 and depends on things not stitched nto Zope 2. Among other things, this means that we can't use python2.4 test.py -m. to run all tests without getting test failures.

Re: [Zope-dev] Default excluded tests?

2005-11-03 Thread Dieter Maurer
Jim Fulton wrote at 2005-11-1 17:28 -0500: ... I have configured the test runner to exclude tests for ZConfig, BTrees, persistent, ThreadedAsync, transaction, ZEO, ZODB, ZopeUndo, zdaemon, and zope.testing. My reasoning for excluding these by default was that these packages are all included via

[Zope-dev] buildbot failure in Zope trunk 2.4 Linux zc-buildbot

2005-11-03 Thread buildbot
The Buildbot has detected a failed build of Zope trunk 2.4 Linux zc-buildbot. Buildbot URL: http://buildbot.zope.org/ Build Reason: The web-page 'force build' button was pressed by '': Build Source Stamp: None Blamelist: BUILD FAILED: failed test sincerely, -The Buildbot

Re: [Zope-dev] Default excluded tests?

2005-11-03 Thread Jim Fulton
Dieter Maurer wrote: Jim Fulton wrote at 2005-11-1 17:28 -0500: ... I have configured the test runner to exclude tests for ZConfig, BTrees, persistent, ThreadedAsync, transaction, ZEO, ZODB, ZopeUndo, zdaemon, and zope.testing. My reasoning for excluding these by default was that these

Re: [Zope-dev] Re: SVN: Zope/trunk/ Merge philikon-zope32-integration branch. Basically, this branch entails:

2005-11-03 Thread Philipp von Weitershausen
Jim Fulton wrote: What changes are those? A fresh Zope trunk checkout works for me. Here's what I did: $ svn co svn+ssh://[EMAIL PROTECTED]/repos/main/Zope/trunk Zope-trunk $ cd Zope-trunk $ ./configure $ make That worked for me (though I usually don't do the configure; make