[Zope-Checkins] SVN: Zope/branches/tim-2.9-windows-installer/inst/WinBuilders/mk/zope.mk Removed long-broken `test_zope` target.

2006-01-14 Thread Tim Peters
Log message for revision 41312: Removed long-broken `test_zope` target. Changed: U Zope/branches/tim-2.9-windows-installer/inst/WinBuilders/mk/zope.mk -=- Modified: Zope/branches/tim-2.9-windows-installer/inst/WinBuilders/mk/zope.mk

[Zope-dev] Zope tests: 6 OK, 2 Failed

2006-01-14 Thread Zope tests summarizer
Summary of messages to the zope-tests list. Period Fri Jan 13 12:01:01 2006 UTC to Sat Jan 14 12:01:01 2006 UTC. There were 8 messages: 8 from Zope Unit Tests. Test failures - Subject: FAILED : Zope-2_9-branch Python-2.4.2 : Linux From: Zope Unit Tests Date: Fri Jan 13 21:10:37 EST

Re: [Zope-dev] Re: Seeking brave souls to try Zope 2.9 Windows installer

2006-01-14 Thread Lennart Regebro
On 1/13/06, Tim Peters [EMAIL PROTECTED] wrote: While I'll be on vacation the next two weeks, I'll check email each day, and will be happy to give minor wink help with mysteries. Only one real bug: No user is created (even though you type in name and password). And of course zopectl doesn't

[Zope-dev] Re: Zope tests: 6 OK, 2 Failed

2006-01-14 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This failure is tie up with Florent's recent checkin: Log message for revision 41303: When a database is created by hand from a custom_zodb.py during startup, we still want to put it in the dbtab multidatabases dict. This happens when

[Zope-dev] Re: Zope tests: 6 OK, 2 Failed

2006-01-14 Thread Florent Guillaume
I'll look at it. Florent Tres Seaver wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This failure is tie up with Florent's recent checkin: Log message for revision 41303: When a database is created by hand from a custom_zodb.py during startup, we still want to put it in the dbtab

[Zope-dev] zpkgsetup

2006-01-14 Thread Shane Hathaway
I just updated a trunk checkout of Zope 2. When I use 'python setup.py build_ext -i', I get this: Traceback (most recent call last): File setup.py, line 32, in ? import zpkgsetup.package ImportError: No module named zpkgsetup.package 'make' fails the same way. My checkout has nothing

Re: [Zope-dev] Re: Seeking brave souls to try Zope 2.9 Windows installer

2006-01-14 Thread Tim Peters
[Lennart Regebro] Only one real bug: No user is created (even though you type in name and password). Sorry, I'm not following this. The installer never offers to create a user (although it does ask you to supply a password for the fixed admin user). So you must be talking about something

[Zope-dev] Re: zpkgsetup

2006-01-14 Thread Philipp von Weitershausen
Shane Hathaway wrote: I just updated a trunk checkout of Zope 2. When I use 'python setup.py build_ext -i', I get this: Traceback (most recent call last): File setup.py, line 32, in ? import zpkgsetup.package ImportError: No module named zpkgsetup.package 'make' fails the same

[Zope-dev] Re: zpkgsetup

2006-01-14 Thread Shane Hathaway
Philipp von Weitershausen wrote: Shane Hathaway wrote: I just updated a trunk checkout of Zope 2. When I use 'python setup.py build_ext -i', I get this: Traceback (most recent call last): File setup.py, line 32, in ? import zpkgsetup.package ImportError: No module named zpkgsetup.package

Re: [Zope] No more CR/LF support in PythonScripts with Zope 2.9.0

2006-01-14 Thread Lennart Regebro
On 1/13/06, Dieter Maurer [EMAIL PROTECTED] wrote: Patrick DECAT wrote at 2006-1-10 15:41 +0100: I just upgraded my application from Zope 2.8.5 to Zope 2.9.0 and noticed that PythonScript doesn't support CR/LF line endings anymore (a la Windows). Converting my scripts to the Unix format fixes

[Zope] Can ZServer or ZPublisher be coaxed to return port 80 response..??

2006-01-14 Thread Eric.Roby
We have a new firewall and firewall guru... He wants the firewall to handle and route port 80/443 requests to pound instances running on port 8080 and 8443. Whereby pound routes said requests to appropriate back-end Zope servers (running on other high-end ports). Obviously - in this new

Re: [Zope] Can ZServer or ZPublisher be coaxed to return port 80 response..??

2006-01-14 Thread Andreas Jung
--On 14. Januar 2006 07:46:14 -0600 Eric.Roby [EMAIL PROTECTED] wrote: We have a new firewall and firewall guru... He wants the firewall to handle and route port 80/443 requests to pound instances running on port 8080 and 8443. Whereby pound routes said requests to appropriate back-end Zope

Re: [Zope] ANN: ZSyncer 0.7.1-beta1 released

2006-01-14 Thread Paul Winkler
On Fri, Jan 13, 2006 at 09:08:26PM -0600, Carlos de la Guardia wrote: Hi, we just installed Zsyncer 0.7.1-beta1 on a couple of our servers and have run into some problems with page template synchronization. Some items that have different time stamps on the server and on the development

Re: [Zope] request.set('AUTHENTICATED_USER',...

2006-01-14 Thread Stefan H. Holek
AUTHENTICATED_USER has been deprecated aeons ago and should have vanished from the REQUEST by means of bit rot alone ;-). You have to ask the security manager for the current user: from AccessControl import getSecurityManager getSecurityManager().getUser() This is allowed in

Re: [Zope] Can ZServer or ZPublisher be coaxed to return port 80 response..??

2006-01-14 Thread Stefan H. Holek
A fairly common setup is to have: Apache with appropriate VHM rewrite rules -- pound -- 2-n ZEO clients If you don't want Apache in front, it is also possible to configure the VHM directly (inside Zope). Writing your own access rules and mucking with the URLs is neither necessary nor

[Zope] python product structure

2006-01-14 Thread Carlos de la Guardia
hello all, I want to document the recommended structure of a product. I blogged about this at http://blog.delaguardia.com.mx/index.php?op=ViewArticlearticleId=30blogId=1. I would like some comments on what I believe are the possible structures. First, here's more or less what everybody uses