[Zope] Re: Zope stops responding on hpux

2005-05-09 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [EMAIL PROTECTED] wrote: On Sun, 8 May 2005, Samuel Bieri wrote: I managed to compile GNU debug 6.1.1 on the hp-ux box. I hope it wasn't too much trouble. You could have gotten it from here: http://www.hp.com/go/wdb --- here I klick on

[Zope] problem with ZODB

2005-05-09 Thread JV Singh
Hello Everyone.. I have been a silent member of the list mostly.. There is a slight problem that needs to be addressed rather urgently... The thing is that though unicode strings can be input and retrieved into the database through Zope.. For example, for the table EMPLOYEEemp_id, first_name,

[Zope] Re: problem with ZODB

2005-05-09 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 JV Singh wrote: I have been a silent member of the list mostly.. There is a slight problem that needs to be addressed rather urgently... The thing is that though unicode strings can be input and retrieved into the database through Zope.. For

Re: [Zope] problem with ZODB

2005-05-09 Thread Andreas Jung
--On Montag, 9. Mai 2005 17:04 Uhr +0530 JV Singh [EMAIL PROTECTED] wrote: Hello Everyone.. I have been a silent member of the list mostly.. There is a slight problem that needs to be addressed rather urgently... The thing is that though unicode strings can be input and retrieved into the

[Zope] Encoding of the query that zope passed to the RDBMS

2005-05-09 Thread JV Singh
Specifically, how do i make sure that the query that zope passes on to the underlying RDBMS is in utf-8 ?? On 5/9/05, JV Singh [EMAIL PROTECTED] wrote: Thanks for the reply. I am using Gadfly. - the one that comes with Zope... For testing whether it would work or not... On 5/9/05, Tres Seaver

[Zope] asyncore.py exception

2005-05-09 Thread Pascal Peregrina
Hi, Does anyone know what can cause this type of error : ERROR(200) ZServer uncaptured python exception, closing channel ZServer.HTTPServer.zhttp_channel connected 10.168.77.5:38607 at 0x3ed2006c channel#: 1546210 requests: (socket.error:(32, 'Broken pipe')

Re: [Zope] Encoding of the query that zope passed to the RDBMS

2005-05-09 Thread Andreas Jung
--On Montag, 9. Mai 2005 17:20 Uhr +0530 JV Singh [EMAIL PROTECTED] wrote: Specifically, how do i make sure that the query that zope passes on to the underlying RDBMS is in utf-8 ?? by *converting* it to UTF-8 from within your ZSQL method?

[Zope] Re: problem with ZODB

2005-05-09 Thread Tres Seaver
JV Singh wrote: I am using Gadfly. - the one that comes with Zope... For testing whether it would work or not... OK, I just created a folder, 'gadfly_test', in a Zope 2.7 site, and added a ZGadflyConnection, 'gadfly', using the 'demo' connection. On its Test tab, I executed the following:

[Zope] GetObjects FilterFolder everywhere

2005-05-09 Thread Juan Antonio Garrido
Hi everybody... I like obtain content(objects) of a FilterFolder I create (background/images_bank) from a zpt call everywhere . I try with function objectValues, but it can't access to objects if it isn't called in correctly site(container background/images_bank). How can i do it without

[Zope] Hiding HTML URL

2005-05-09 Thread Allen Huang
I just want to show my root URL address whenever people browse into other pages of my site. How do I do this in dtml or python script or external method?? Do you Yahoo!? Yahoo! Mail - Find what you need with new enhanced search. Learn more.___ Zope

Re: [Zope] asyncore.py exception

2005-05-09 Thread Dieter Maurer
Pascal Peregrina wrote at 2005-5-9 13:54 +0200: Does anyone know what can cause this type of error : ERROR(200) ZServer uncaptured python exception, closing channel ZServer.HTTPServer.zhttp_channel connected 10.168.77.5:38607 at 0x3ed2006c channel#: 1546210 requests: (socket.error:(32, 'Broken

Re: [Zope] GetObjects FilterFolder everywhere

2005-05-09 Thread Dieter Maurer
Juan Antonio Garrido wrote at 2005-5-9 14:52 +0200: I like obtain content(objects) of a FilterFolder I create (background/images_bank) from a zpt call everywhere . I try with function objectValues, but it can't access to objects if it isn't called in correctly site(container

Re: [Zope] Finding an object in a folder

2005-05-09 Thread Dieter Maurer
Please stay on the list! Readded... Allen Huang wrote at 2005-5-8 11:10 -0700: Thanks for responding, but what is aq_inner.aq_explicit?? To understand aq_inner and aq_explicit, you need to understand acquisition. You find something in the Name lookup section of

Re: [Zope] Zope stops responding on hpux

2005-05-09 Thread Dieter Maurer
Samuel Bieri wrote at 2005-5-8 22:44 +0200: ... Try to run Zope inside a debugger. I managed to compile GNU debug 6.1.1 on the hp-ux box. When I run zope inside gdb I get the following: (gdb) run snip 2005-05-08T22:29:59 INFO(0) Zope Ready to handle requests [New thread 2 (system thread

Re: [Zope] Hiding HTML URL

2005-05-09 Thread David H
Allen Huang wrote: I just want to show my root URL address whenever people browse into other pages of my site. How do I do this in dtml or python script or external method?? Allen, You can use index_html as a "call dispatcher". Each ZPT, DTML, etc form's action should = "." or

[Zope] Access log

2005-05-09 Thread Luiz Fernando B. Ribeiro
Hi all, I am hosting several virtual hosts and I need to provide access log reports (like awstats) for my clients. I would like to know if any of the following alternatives is possible: 1. Is it possible to have diferent access log files for each virtual host? 2. Is it possible to include the

[Zope] DreamWeaver files - ZPTs: How?

2005-05-09 Thread Ken Winter
Is there any way to configure Zope so that a *.htm file newly created in DW, when uploaded for the first time to Zope, would be created as a ZPT instead of as a DTML document? I know you can do it by naming the file in DW with the *.pt extension. But the trouble with this is,

[Zope] Re: DreamWeaver files - ZPTs: How?

2005-05-09 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ken Winter wrote: Is there any way to configure Zope so that a *.htm file newly created in DW, when uploaded for the first time to Zope, would be created as a ZPT instead of as a DTML document? I know you can do it by naming the file in DW

Re: [Zope] Access log

2005-05-09 Thread Andreas Jung
--On Montag, 9. Mai 2005 15:17 Uhr -0300 Luiz Fernando B. Ribeiro [EMAIL PROTECTED] wrote: Hi all, I am hosting several virtual hosts and I need to provide access log reports (like awstats) for my clients. I would like to know if any of the following alternatives is possible: 1. Is it possible

Re: [Zope] Access log

2005-05-09 Thread Jens Vagelpohl
On May 9, 2005, at 20:17, Luiz Fernando B. Ribeiro wrote: Hi all, I am hosting several virtual hosts and I need to provide access log reports (like awstats) for my clients. I would like to know if any of the following alternatives is possible: 1. Is it possible to have diferent access log

[Zope] RE: DreamWeaver files - ZPTs: How?

2005-05-09 Thread Ken Winter
-Original Message- From: Tres Seaver [mailto:[EMAIL PROTECTED] Sent: Monday, May 09, 2005 3:23 PM To: [EMAIL PROTECTED] Subject: Re: DreamWeaver files - ZPTs: How? -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ken Winter wrote: Is there any way to configure Zope so that a

[Zope] formatting tuple to feed to mysql

2005-05-09 Thread David Siedband
I'm have a tuple that I want to pass to a zSQL query to so I can based on items in the tuple. I get the sequence from a zSQL query that selects a single field, and I'm postprocessing it with the following: dtml-let SelectedIDs=[ai[0] for ai in queries.selectDOdocIDs().tuples()] Which puts the

Re: [Zope] Hiding HTML URL

2005-05-09 Thread J Cameron Cooper
Allen Huang wrote: I just want to show my root URL address whenever people browse into other pages of my site. How do I do this in dtml or python script or external method?? If I understand what you're asking, there's only one good way to do that: place your content in an iframe (or regular

Re: [Zope] Hiding HTML URL

2005-05-09 Thread Jens Vagelpohl
On May 10, 2005, at 00:48, J Cameron Cooper wrote: But please note, this is very hostile web design. I would suggest you re-think your need for such a feature. Hostile is an excellent word for that kind of behavior. It certainly breaks quite a few rules in the user friendliness book. So what

Re: [Zope] formatting tuple to feed to mysql

2005-05-09 Thread J Cameron Cooper
David Siedband wrote: I'm have a tuple that I want to pass to a zSQL query to so I can based on items in the tuple. I get the sequence from a zSQL query that selects a single field, and I'm postprocessing it with the following: dtml-let SelectedIDs=[ai[0] for ai in

Re: [Zope] Hiding HTML URL

2005-05-09 Thread David H
Jens Vagelpohl wrote: On May 10, 2005, at 00:48, J Cameron Cooper wrote: But please note, this is very hostile web design. I would suggest you re-think your need for such a feature. Hostile is an excellent word for that kind of behavior. It certainly breaks quite a few rules in the user

[Zope] Re: DreamWeaver files - ZPTs: How?

2005-05-09 Thread Chris Beaven
Ken Winter wrote: I know you can do it by naming the file in DW with the *.pt extension. But the trouble with this is, subsequently DreamWeaver doesnt recognize it as anything that it can edit. Here's how to make DW work with pt, zpt, dtm and dtml extensions Open Program

[Zope-Checkins] CVS: Zope/inst/WinBuilders/zeo_addons/utilities Zope/inst/WinBuilders/zeo_addons/utilities - New directory

2005-05-09 Thread Christian Theune
Update of /cvs-repository/Zope/inst/WinBuilders/zeo_addons/utilities In directory cvs.zope.org:/tmp/cvs-serv23849/utilities Log Message: Directory /cvs-repository/Zope/inst/WinBuilders/zeo_addons/utilities added to the repository -- Using per-directory sticky tag `Zope-2_7-branch' === Added

[Zope-Checkins] CVS: Zope/inst/WinBuilders - MANIFEST.txt:1.1.2.1 Makefile.python:1.1.2.1 Makefile.spread:1.1.2.1 Makefile.spreadwrapper:1.1.2.1 Makefile.zeo:1.1.2.1 Makefile.zope:1.1.2.1 README.txt:1

2005-05-09 Thread Christian Theune
Update of /cvs-repository/Zope/inst/WinBuilders In directory cvs.zope.org:/tmp/cvs-serv24822/WinBuilders Added Files: Tag: Zope-2_7-branch MANIFEST.txt Makefile.python Makefile.spread Makefile.spreadwrapper Makefile.zeo Makefile.zope README.txt buildout Log

[Zope-Checkins] CVS: Zope/inst/WinBuilders/doc - ZC_PY_DIST_README.txt:1.1.2.1

2005-05-09 Thread Christian Theune
Update of /cvs-repository/Zope/inst/WinBuilders/doc In directory cvs.zope.org:/tmp/cvs-serv24822/WinBuilders/doc Added Files: Tag: Zope-2_7-branch ZC_PY_DIST_README.txt Log Message: - Added WinBuilders in 2.7 flavour === Added File Zope/inst/WinBuilders/doc/ZC_PY_DIST_README.txt

[Zope-Checkins] SVN: Zope/trunk/ Move to ZODB 3.4a8. This implements the other half of

2005-05-09 Thread Tim Peters
Log message for revision 30313: Move to ZODB 3.4a8. This implements the other half of moving ZApplication.py from ZODB into Zope(2). Changed: _U Zope/trunk/lib/python/ _U Zope/trunk/utilities/ -=- Property changes on: Zope/trunk/lib/python

[Zope-Coders] Zope tests: 6 OK

2005-05-09 Thread Zope tests summarizer
Summary of messages to the zope-tests list. Period Sun May 8 11:01:01 2005 UTC to Mon May 9 11:01:01 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: Sun May 8 22:41:03 EDT

Re: [Zope-dev] Re: Zope 2.8 on hold

2005-05-09 Thread Christian Theune
Hi, Am Samstag, den 07.05.2005, 12:56 -0400 schrieb Tim Peters: Both appear to be due to that Zope 2.7.6 on Windows shipped with a wrong (too old) version of pywin32, and continued to repackage pywin32 in the old (certifiably insane 0.7 wink) flat way. Mark Hammond submitted patches to

[Zope-dev] Re: relocating Zope 2 core interfaces - a proposal

2005-05-09 Thread Martijn Faassen
Philipp von Weitershausen wrote: Martijn Faassen wrote: yuppie wrote: By the way, I've just merged in Five 1.0 into Zope 2.8 (which was a significant amount of work, due to all kinds of copyright headers being different). Can't we use the same headers for Five 1.0 and Zope 2.8? Both releases

Re: [Zope-dev] Zope 2.8 on hold

2005-05-09 Thread Martijn Faassen
Andreas Jung wrote: in agreement with Jim Fulton and Brian Lloyd we decided to put the Zope 2.8 release on hold for now. There are several open issues related to running Zope on Windows (building, startup problems). Since we need to have a stable source code release and a stable windows release

Re: [Zope-dev] Zope 2.8 on hold

2005-05-09 Thread Andreas Jung
--On Montag, 9. Mai 2005 14:59 Uhr +0200 Martijn Faassen [EMAIL PROTECTED] wrote: Andreas Jung wrote: in agreement with Jim Fulton and Brian Lloyd we decided to put the Zope 2.8 release on hold for now. There are several open issues related to running Zope on Windows (building, startup

[Zope-dev] Re: ZConfig change breaks Zope 2 and Zope 3

2005-05-09 Thread yuppie
Derrick Hudson wrote: On Sun, May 08, 2005 at 02:28:55PM +0200, yuppie wrote: | Hi! | | On Windows, this 15 months old change in ZConfig sets the default | hostname for inet_address to 'localhost': | | http://svn.zope.org/ZConfig/?rev=376view=rev | | I have no idea why this was changed, the

Re: [Zope-dev] Re: ZConfig change breaks Zope 2 and Zope 3

2005-05-09 Thread Fred Drake
On 5/9/05, yuppie [EMAIL PROTECTED] wrote: But I still believe it was wrong to change the 'inet_address' datatype in ZConfig. I spoke with Tim about this briefly today, and I can't remember the reasons for some of the relevant changes. I suspect at this point that putting less magic in the