[Zope-dev] Adding resource in z3c.pt

2008-10-14 Thread Binseer N
Hi all, Can anybody tell me how can i add resource by using z3c.pt. i know how to add it by using zope.pagetemplate, i tried it and it was working well. The following is the code i am working with and it was not working with z3c.pt *configure.zcml:- . . *adapter

Re: [Zope-dev] Adding resource in z3c.pt

2008-10-14 Thread Wichert Akkerman
Previously Binseer N wrote: Hi all, Can anybody tell me how can i add resource by using z3c.pt. i know how to add it by using zope.pagetemplate, i tried it and it was working well. The following is the code i am working with and it was not working with z3c.pt *configure.zcml:- . .

Re: [Zope-dev] Adding resource in z3c.pt

2008-10-14 Thread Binseer N
2008/10/14 Wichert Akkerman [EMAIL PROTECTED] Previously Binseer N wrote: Hi all, Can anybody tell me how can i add resource by using z3c.pt. i know how to add it by using zope.pagetemplate, i tried it and it was working well. The following is the code i am working with and it was not

[Zope-dev] Zope3 tree not buildable with Python 2.4?

2008-10-14 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 In a fresh checkout of the Zope3 tree: $ make clean $ make fails with a compile error in src/zope/app/container/_zope_app_container.c: - -- gcc -pthread -fno-strict-aliasing

Re: [Zope-dev] SVN: Zope/branches/gsoc-python-2.5/utilities/mkzopeinstance.py sha - hashlib

2008-10-14 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andreas Jung wrote: Log message for revision 92197: sha - hashlib That needs to be a conditional import, with a fallback to the old sha module: hashlib is not present in python 2.4. E.g.: try: import hashlib except ImportError: # Python

Re: [Zope-dev] SVN: Zope/branches/gsoc-python-2.5/utilities/mkzopeinstance.py sha - hashlib

2008-10-14 Thread Andreas Jung
On 14.10.2008 19:03 Uhr, Tres Seaver wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andreas Jung wrote: Log message for revision 92197: sha - hashlib That needs to be a conditional import, with a fallback to the old sha module: hashlib is not present in python 2.4. E.g.: try:

[Zope-dev] Upcoming Zope 2.9-2.11 release

2008-10-14 Thread Andreas Jung
Hi there, I intended to work on new releases for Zope 2.9 - 2.11 starting next weekend. If there are any pending fixes I am not aware of, please let me know. Andreas begin:vcard fn:Andreas Jung n:Jung;Andreas org:ZOPYX Ltd. Co. KG adr;quoted-printable:;;Charlottenstr.

[Zope-dev] Zope 2.12 - supported Python versions

2008-10-14 Thread Hanno Schlichting
Andreas Jung wrote: Depends on which Python versions we want/must support for the future. One option would to jump on Python 2.6 for the next releases (skipping Python 2.5 and dropping Python 2.4 support). Just as a voice from the Plone crowd. With our current planned roadmap we won't move to

Re: [Zope-dev] Zope 2.12 - supported Python versions

2008-10-14 Thread Andreas Jung
On 14.10.2008 19:12 Uhr, Hanno Schlichting wrote: Andreas Jung wrote: Depends on which Python versions we want/must support for the future. One option would to jump on Python 2.6 for the next releases (skipping Python 2.5 and dropping Python 2.4 support). Just as a voice from the Plone crowd.

Re: [Zope-dev] Zope 2.12 - supported Python versions

2008-10-14 Thread Sidnei da Silva
On Tue, Oct 14, 2008 at 2:16 PM, Andreas Jung [EMAIL PROTECTED] wrote: Thanks for starting the discussion. Going for Python 2.6 also requires that we get the ZCA running on top of Python 2.6 until some time next year. FWIW, that's what I've been working on. There's enough of the the ZCA working

Re: [Zope-dev] Zope 2.12 - supported Python versions

2008-10-14 Thread Andreas Jung
On 14.10.2008 19:56 Uhr, Sidnei da Silva wrote: On Tue, Oct 14, 2008 at 2:16 PM, Andreas Jung[EMAIL PROTECTED] wrote: Thanks for starting the discussion. Going for Python 2.6 also requires that we get the ZCA running on top of Python 2.6 until some time next year. FWIW, that's what I've been

Re: [Zope-dev] [z3c_pt] Adding resource in z3c.pt

2008-10-14 Thread Malthe Borch
2008/10/14 Binseer N [EMAIL PROTECTED]: Hi all, Can anybody tell me how can i add resource by using z3c.pt. i know how to add it by using zope.pagetemplate, i tried it and it was working well. The following is the code i am working with and it was not working with z3c.pt There is a bug in

[Zope-dev] Zope Tests: 3 OK, 2 Unknown

2008-10-14 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Mon Oct 13 11:00:00 2008 UTC to Tue Oct 14 11:00:00 2008 UTC. There were 5 messages: 5 from Zope Tests. Unknown --- Subject: UNKNOWN : Zope-2.11 Python-2.4.4 : Linux From: Zope Tests Date: Mon Oct 13 20:56:33 EDT 2008 URL:

Re: [Zope-dev] Relative Imports: PEP-328

2008-10-14 Thread Sidnei da Silva
FWIW, I've done that now. On Wed, Oct 8, 2008 at 9:43 AM, Philipp von Weitershausen [EMAIL PROTECTED] wrote: El 8 Oct 2008, a las 14:23 , Sidnei da Silva escribió: On Wed, Oct 8, 2008 at 8:53 AM, Philipp von Weitershausen [EMAIL PROTECTED] wrote: Sidnei da Silva wrote: I'm trying to fix