[Zope-Checkins] CVS: Packages/ZopeUndo/tests - testPrefix.py:1.1.66.2

2005-04-27 Thread Tim Peters
Update of /cvs-repository/Packages/ZopeUndo/tests In directory cvs.zope.org:/tmp/cvs-serv17930/ZopeUndo/tests Modified Files: Tag: Zope-2_7-branch testPrefix.py Log Message: Turns out the change snuck into ZopeUndo.Prefix created critical ZEO compatibility bugs. This will force a

[Zope-Checkins] CVS: Packages/ZEO - __init__.py:1.19.4.24 version.txt:1.9.4.23

2005-04-27 Thread Tim Peters
Update of /cvs-repository/Packages/ZEO In directory cvs.zope.org:/tmp/cvs-serv18683/ZEO Modified Files: Tag: Zope-2_7-branch __init__.py version.txt Log Message: Part of the changes needed to make a 3.2.8 release. I need to find another machine to build updated docs. ===

[Zope-Coders] Zope tests: 6 OK

2005-04-27 Thread Zope tests summarizer
Summary of messages to the zope-tests list. Period Tue Apr 26 11:01:02 2005 UTC to Wed Apr 27 11:01:02 2005 UTC. There were 6 messages: 6 from Zope Unit Tests. Tests passed OK --- Subject: OK : Zope-2_6-branch Python-2.1.3 : Linux From: Zope Unit Tests Date: Tue Apr 26 22:41:15 EDT

RE: [Zope-dev] Re: ZEO, FastCGI and Shibboleth

2005-04-27 Thread John Snowdon
Thanks Zac... it doesn't appear as if there is an easy way around the ZEO problem, without involving another large amount of complexity. I'll bump heads with a few of the local Zope gurus and also see if the Pound (our http load balancer of choice) developers have any suggestions. Cheers John

[Zope-dev] Zope 2.7.6 final release delayed

2005-04-27 Thread Andreas Jung
I will release 2.7.6 final on Friday and not today (as planned) because to a tight schedule and some travelling. Andreas pgpppntxd0zNg.pgp Description: PGP signature ___ Zope-Dev maillist - Zope-Dev@zope.org

[Zope] Re: Zeo

2005-04-27 Thread ken wood
Bakhtiar A Hamid wrote: On 4/27/05, ken wood [EMAIL PROTECTED] wrote: I've searched most site that have info on ZEO but have not been able to find answers to my questions on install for ZEO. Maybe someone on the list can help. I am running Zope 2.7 (with Plone site) on a Win'03 Server. I

[Zope] Re: Zeo

2005-04-27 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 ken wood wrote: I appreciate all the great tips on the cionfiguration issue. But my main issue is about infrastructure: Which hardware and / or operating systems can be used for a Zope/Zeo system. In particular, can I run a Zope instance on my

[Zope] Zope job

2005-04-27 Thread Ben Mason
Sorry for the off-topic question... Does anyone know the best place to look for Zope / Plone jobs in London? Any help would be appreciated. Thanks Ben ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts

[Zope] Re: Zope job

2005-04-27 Thread Michael Haubenwallner
Ben Mason wrote: Sorry for the off-topic question... Does anyone know the best place to look for Zope / Plone jobs in London? Look at http://www.google.com/search?q=zope+jobs+london Michael -- http://zope.org/Members/d2m http://planetzope.org ___ Zope

Re: [Zope] Re: Zeo

2005-04-27 Thread J Cameron Cooper
ken wood wrote: I appreciate all the great tips on the cionfiguration issue. But my main issue is about infrastructure: Which hardware and / or operating systems can be used for a Zope/Zeo system. OS: pretty much any Unixish OS, though on anything but Linux, BSD, and Mac OS X (and maybe

[Zope] Mailboxer subscription box

2005-04-27 Thread Norbert M Haigermoser
hi ! i want to use (plone)Mailboxer as a newsletter system. is there a posibility to create a web-form to handle the un / subscription ? (like: Please enter your emailaddress here and press the send-button) thanks for help Norbert ___ Zope maillist -

[Zope] Which sound I learn?

2005-04-27 Thread Ryan Smiderle
I'm planning on making a website with Zope, and plan to do a lot of custumization. Should I learn Zope 2 or Zope 3? Thanks, -Ryan___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! **

Re: [Zope] Which sound I learn?

2005-04-27 Thread J Cameron Cooper
Ryan Smiderle wrote: I'm planning on making a website with Zope, and plan to do a lot of custumization. Should I learn Zope 2 or Zope 3? If it's from scratch and you don't need any existing third-party Products, then probably Zope 3. Zope 2.8 will include Five, which makes Zope 3-style stuff

[Zope] problem using ssl from zope

2005-04-27 Thread Laura Skosnik
Hello, We are having a similiar problem, did you ever find a solution to this issue? When we test in the python console, the connection is fine. We get this error from python 2.3.5 when making secure socket connections from my mod_python based application. It is very odd because we cannot

[Zope] Generating and Downloading PDF.

2005-04-27 Thread Fernando Lujan
Hi guys, I'm creating a pdf using reportlab, after the canvas.close() I put the following code inside a External Method: R = self.REQUEST.RESPONSE R.setHeader('content-type', 'application/rtf') R.setHeader('content-length', str(len(data))) R.write(data) But I receive the following error: *Error

Re: [Zope] Generating and Downloading PDF.

2005-04-27 Thread J Cameron Cooper
Fernando Lujan wrote: Hi guys, I'm creating a pdf using reportlab, after the canvas.close() I put the following code inside a External Method: R = self.REQUEST.RESPONSE R.setHeader('content-type', 'application/rtf') R.setHeader('content-length', str(len(data))) R.write(data) But I receive the

Re: [Zope] Generating and Downloading PDF.

2005-04-27 Thread Andreas Jung
--On Mittwoch, 27. April 2005 15:56 Uhr -0300 Fernando Lujan [EMAIL PROTECTED] wrote: Is there some import wich I have been missing? At least we are missing the *complete* definition of the method. Your code fragment is insufficient. -aj pgpURp1R95QIW.pgp Description: PGP signature

Re: [Zope] Generating and Downloading PDF.

2005-04-27 Thread Fernando Lujan
J Cameron Cooper wrote: The method that contains your code must have at least the first parameter 'self':: def pdfwrite(self): R = self.REQUEST.RESPONSE R.setHeader('content-type', 'application/rtf') R.setHeader('content-length', str(len(data))) R.write(data) It's a way of

Re: [Zope] Generating and Downloading PDF.

2005-04-27 Thread J Cameron Cooper
Fernando Lujan wrote: J Cameron Cooper wrote: The method that contains your code must have at least the first parameter 'self':: def pdfwrite(self): R = self.REQUEST.RESPONSE R.setHeader('content-type', 'application/rtf') R.setHeader('content-length', str(len(data)))

Re: [Zope] Re: Zeo

2005-04-27 Thread Jonathan Cyr
FYI, Back during 2.6.x, I developed my whole system on a Windows Laptop, migrated to a Windows ZEO System, 1 client, 1 server. Then moved the ZEO client server to Red Hat AS 2.1, and now finally to SuSE 9.0. The only differences for me were the steps in installing PIL (Python Imaging

Re: [Zope] Which sound I learn?

2005-04-27 Thread Jonathan Cyr
Seems to be the thousand dollar question. Depends on the scope of your project... Zope 2 is seasoned, and has lots of advantages... existing products, toolsets, list expertise, and user base. Better for the short-term time investment. Zope 3 seems to be the next big thing... benefitting

Re: [Zope] Generating and Downloading PDF.

2005-04-27 Thread Fernando Lujan
J Cameron Cooper wrote: Fernando Lujan wrote: J Cameron Cooper wrote: The method that contains your code must have at least the first parameter 'self':: def pdfwrite(self): R = self.REQUEST.RESPONSE R.setHeader('content-type', 'application/rtf') R.setHeader('content-length',

Re: [Zope] Generating and Downloading PDF.

2005-04-27 Thread J Cameron Cooper
Fernando Lujan wrote: J Cameron Cooper wrote: Fernando Lujan wrote: J Cameron Cooper wrote: The method that contains your code must have at least the first parameter 'self':: def pdfwrite(self): R = self.REQUEST.RESPONSE R.setHeader('content-type', 'application/rtf')

[Zope] Re: Zeo

2005-04-27 Thread Bakhtiar A Hamid
On 4/27/05, ken wood [EMAIL PROTECTED] wrote: Hey guys, I appreciate all the great tips on the cionfiguration issue. But my main issue is about infrastructure: Which hardware and / or operating systems can be used for a Zope/Zeo system. In particular, can I run a Zope instance on my

[Zope] zope-2.8b1, zclass and five documentation

2005-04-27 Thread Bakhtiar A Hamid
that's a mouthful subject :P i've downloaded and installed zope 2.8 b1. wondered whether zclass is still b0rked in zope2.8r1. nothing mentioned in the CHANGES.txt. probably is. created zclasses ok. however instantiating the zclass requires authentication that will never go thru. since

[Zope] problems rendering objects stored in the local file system

2005-04-27 Thread Dennis Allison
I am having trouble figuring out how to get Zope to access and render html and images files properly in the following context: In the local file system (that is, the Linux file system to be explicit) I have a collection of directories each containing an index.html file consisting of HTML and a

Re: [Zope] zope-2.8b1, zclass and five documentation

2005-04-27 Thread Andreas Jung
--On Donnerstag, 28. April 2005 10:02 Uhr +0800 Bakhtiar A Hamid [EMAIL PROTECTED] wrote: since zope2.8 comes with five, is there any documentation/tutorials on how to actually use it? i've looked at Five/docs/*txt and FiveDemo*. it seems that i may need to grok (or at least know *something*

Re: [Zope] problems rendering objects stored in the local file system

2005-04-27 Thread Andreas Jung
--On Mittwoch, 27. April 2005 19:57 Uhr -0700 Dennis Allison [EMAIL PROTECTED] wrote: In the local file system (that is, the Linux file system to be explicit) I have a collection of directories each containing an index.html file consisting of HTML and a collection of image files (*.jpg, *.gif,

Re: [Zope] problems rendering objects stored in the local file system

2005-04-27 Thread Cliff Ford
You have at least two choices: 1. Use apache and don't fetch index.html and the images through zope. Most installations use apache in front of zope, so this is just a matter of rewrite rules. 2. Use an External Method and make each image src attribute a function call, passing the image url as