[Zope] Re: [Zope3-dev] Zope 3.1.0 RC 3 released!

2005-09-16 Thread Jim Fulton
In this release (and earlier 3.1 releases), there is a zdaemon test failure if you install with Python 2.4 on Unix. This is a spurious failure. The test tries to execute a script (zdaemon/tests/donothing.sh) and the installation process is making this script non-executable. We'll need to look in

Re: [Zope] High Traffic Zope Portal

2005-09-16 Thread Andreas Jung
--On 16. September 2005 15:09:37 -0300 Jeronimo Zucco <[EMAIL PROTECTED]> wrote: We posted a dynamic document for the students (35.000). The document is generated using queries in MySql database, after user autentication using mysqluserfolder. The python processes occupied 100% of machines re

Re: [Zope] Character set problems

2005-09-16 Thread Niklas Saers
Dear Dragos and everyone,I have the problem narrowed down to the Apache/Zope connection. I've more or less decided I want to stick with ISO-8859-1 because moving everything to UTF-8 didn't really help me out. All in ISO-8859-1 works fine with Zope stand-alone, but unfortunately Apache needs to brid

Re: [Zope] High Traffic Zope Portal

2005-09-16 Thread Paul Winkler
> Have someone experience in sites of great traffic using Zope? If so, > please give us some tip for tunning the system or discover the > bootleneck points. This is a FAQ* and has been discussed recently; the list archives might be helpful. I have a bunch of links to performance docs here: http:/

[Zope] High Traffic Zope Portal

2005-09-16 Thread Jeronimo Zucco
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 We use zope with the following environment: - - Zope 2.7.4-0 - - ZCoMIX-1.0.2+ (http://sourceforge.net/projects/zcomix) - - mysqlUserFolder 1.0.0 - - python 2.3.4 - - Red Hat Enterprise Linux ES release 2.1, kernel 2.6.11, ext2 fs - - MySQL-server-4.0.

Re: [Zope] how to programmatically control zope?

2005-09-16 Thread David Pratt
Hi. This discussion has really helped me with my question about running asynchronous methods also since these kinds of requests could be cronned at the very least. But what about triggering this kind of script from the running zope instance. Is this possible? What I am hoping to accomplish i

[Zope] Re: Zope Foundation?

2005-09-16 Thread Hadar Pedhazur
Andreas Jung wrote: What is the current status of the ZF? The process is proceeding swiftly, and hopefully smoothly. We have draft documents of the TM Agreement and the By-Laws, and are well along the way to drafts of the IP Policy and the remaining documents. We have formed a small committ

Re: [Zope] FileSystemSite does not register file extension

2005-09-16 Thread Dieter Maurer
Marco Bizzarri wrote at 2005-9-16 10:40 +0200: > ... >The problem now is that the registration works for all extensions but the >gif one. > ... >Any suggestion? Debugging in an interactive Python interpreter. There is a Plone HowTo explaining how an interactive Python interpreter can be used to

Re: [Zope] Re: zope is selfrestarting: can't uninstall a product!

2005-09-16 Thread Dieter Maurer
daniele wrote at 2005-9-16 00:57 +0200: > ... >-- >2005-09-15T20:09:15 ERROR(200) ZODB Couldn't load state for 0x01213c >Traceback (most recent call last): > File "/hdb/zope/lib/python/ZODB/Connection.py", line 600, in setstate > self._set_ghost_state(obj, p) > File "/hdb/zope/lib/pytho

Re: [Zope] Installing Python Modules Under Zope On Windows

2005-09-16 Thread Dieter Maurer
[EMAIL PROTECTED] wrote at 2005-9-16 10:23 -0500: > ... >With Zope 2.8.1, the "default" setting seems to be using the embedded >Python interpreter that came with Zope. Look in the startup batch files. Replace the Python call, you find there, by a call to your system Python. -- Dieter __

[Zope] Zope 3.1.0 RC 3 released!

2005-09-16 Thread Stephan Richter
The Zope 3 development team is proud to announce Zope 3.1.0 candidate 3. Zope 3 is the next major Zope release and has been written from scratch based on the latest software design patterns and the experiences of Zope 2. It is in our opinion that Zope 3.1 is more than ready for production use, wh

Re: [Zope] how to programmatically control zope?

2005-09-16 Thread bruno modulix
Paul Winkler wrote: (snip) > > > yep, I like working that way, and Bruno's introduction is excellent. Thanks > One clarification however: > > >>1/ You can't run zopectl debug or zopectl run while you instance is >>running (as it locks the ZODB). The solution here is to set up a zeo >>instance (

Re: [Zope] aquistion probleme

2005-09-16 Thread Paul Winkler
> > > hello > > I'm trying an acquisition, but I must be doing something wrong... > > I've got a setting like this : > > /dir1/dir2_1/dir3_1 > /dir1/dir2_2/dir3_2 > /dir1/dir2_2/img.jpg > /img.jpg > > I write somthing like : > context['img.jpg'].absolute_url() > > I expect to get /dir1/img.jpg, in

Re: [Zope] how to programmatically control zope?

2005-09-16 Thread Paul Winkler
> akonsu wrote: >> hello, would someone please point me to the right direction? what is >> the preferred way to control a zope server programmatically? i need to >> be able to administer my zope instance from a script. add users, >> change permissions, create new sites, add objects to the sites. th

[Zope] Installing Python Modules Under Zope On Windows

2005-09-16 Thread tom
I have a hardware constraint where I have to run Zope on Windows. This has worked pretty well for me because Zope 2.7 used my "system" instance of Python 2.3.x. At least, that's my assumption since runzope.bat pointed at the system instance of Python. This setup was nice because it made it very

Re: [Zope] aquistion probleme

2005-09-16 Thread Lennart Regebro
On 9/16/05, chetzacoalt <[EMAIL PROTECTED]> wrote: > > > hello > > I'm trying an acquisition, but I must be doing something wrong... > > I've got a setting like this : > > /dir1/dir2_1/dir3_1 > /dir1/dir2_2/dir3_2 > /dir1/dir2_2/img.jpg > /img.jpg > > I write somthing like : > context['img.j

[Zope] aquistion probleme

2005-09-16 Thread chetzacoalt
hello I'm trying an acquisition, but I must be doing something wrong... I've got a setting like this : /dir1/dir2_1/dir3_1 /dir1/dir2_2/dir3_2 /dir1/dir2_2/img.jpg /img.jpg I write somthing like : context['img.jpg'].absolute_url() I expect to get /dir1/img.jpg, in all cases but when the scr

[Zope] acquisition probleme

2005-09-16 Thread chetzacoalt
hello I'm trying an aquisition, but I must be doing something wrong.. I'd got a setting like this : /dir1/dir2 ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists -

[Zope] Zope Foundation?

2005-09-16 Thread Andreas Jung
What is the current status of the ZF? Any progress happened on the outstanding trademark issue with ZEA? -aj pgpUuAeE7MdPR.pgp Description: PGP signature ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts

[Zope] Re: MemoryError that brings my zope to its knees

2005-09-16 Thread Calvin Hendryx-Parker
George Donnelly wrote: the kernel limits the amount of ram a process can bind by default. try the following put this in /boot/loader.conf kern.maxdsiz="1610612736" kern.dfldsiz="1610612736" kerm.maxssiz="1610612736" Thanks for the hint George, I was able to accomplish this using only the

Re: [Zope] FCGIServer broken pipe on Zope 2.8.1?

2005-09-16 Thread Andreas Jung
--On 16. September 2005 09:59:00 +0100 Petri Savolainen <[EMAIL PROTECTED]> wrote: If you really mean FCGI, what should be used instead? I understood that at least in the past, there was a per-request tcp/ip setup/teardown tax coming with apache mod_proxy which made something like FCGI a be

Re: [Zope] how to programmatically control zope?

2005-09-16 Thread bruno modulix
akonsu wrote: > hello, would someone please point me to the right direction? what is > the preferred way to control a zope server programmatically? i need to > be able to administer my zope instance from a script. add users, > change permissions, create new sites, add objects to the sites. there >

[Zope] FileSystemSite does not register file extension

2005-09-16 Thread Marco Bizzarri
Hi all. I'm using the FileSystemSite product in a pure Zope application. Inside it, I'm registering some extensions (gif, png, jpg, etc.) in order to work with a subclass of FSImage. The problem now is that the registration works for all extensions but the gif one. This has changed from one day