[Zope-Annce] [ANN] iungo released to the wild...

2005-08-25 Thread Maik Jablonski
Hi to all, today I decided to release iungo to the world-wild-world... iungo was already announced at the German Zope User Group (DZUG) some weeks ago, but today I started and finished translating most of the docs to english for a broader audience. The tutorial is still missing, but I'll do

[Zope-dev] Re: Move Zope trunk to ZODB 3.5

2005-08-25 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tim Peters wrote: If there are no sane wink objections, I'd like to move Zope trunk to using ZODB 3.5 tomorrow (Friday). Zope3 has been using ZODB 3.5 for months, and the intent has been that the ZODB 3.4 line survive for the sake of the Zope

[Zope-dev] Puzzling change to guarded_getitem in Zope 2.8

2005-08-25 Thread Richard Jones
I'm migrating our 2.7-developed Product to 2.8. The following change has me puzzled. In 2.7, AccessControl.ZopeGuards guarded_getitem has the following code: def guarded_getitem(object, index): [ snip handling of slices ] ... v = object[index] if Containers(type(object)) and

Re: [Zope-dev] Puzzling change to guarded_getitem in Zope 2.8

2005-08-25 Thread Richard Jones
On Fri, 26 Aug 2005 10:00 am, Richard Jones wrote: I'm migrating our 2.7-developed Product to 2.8. The following change has me puzzled. In 2.7, AccessControl.ZopeGuards guarded_getitem has the following code: OK, Tres made the change, with the relevant bit of the log message being:

[Zope] REQUEST.has_key does not find passed argument

2005-08-25 Thread Santani Teng
Hello, I'm new to Zope, Python and DTML and could therefore use some help. I have a page in which I want to pass an argument to a new DTML method when clicking a link. The relevant snippet is: a href=/contact?name_id:int=dtml-var name_idContact/a So, when you click on Contact you should get

[Zope] SaneBrains 1.0.0 Released!

2005-08-25 Thread Chris Withers
Stepper 1.0.0 Released! This is a framework for performing asynchronous tasks on Zope servers. It is written as a Zope Product and can be used in several different ways: - for running sequences of migration code from the console. - for running batch processes via cron - for unit testing

[Zope] Stepper 1.0.0 Released! ( was SaneBrains 1.0.0 Released!, d'oh!)

2005-08-25 Thread Chris Withers
Chris Withers wrote: Stepper 1.0.0 Released! ...well, this bit was right at least ;-) If anyone wants to give stepper a try, I'm happy to help out! cheers, Chris -- Simplistix - Content Management, Zope Python Consulting - http://www.simplistix.co.uk

Re: [Zope] Zope 2.8.1 on Mac OS X tiger Server

2005-08-25 Thread Garito
Andrew Langmead escribió: On Aug 23, 2005, at 6:24 AM, Garito wrote: I try sudo /System/Library/StartupItems/Zope/Zope start but nothing happend (nor on console) but if I launch /var/zope/sistes/bin/zopectl start it works perfectly I try to comment the if and fi lines but don't work

Re: [Zope] REQUEST.has_key does not find passed argument

2005-08-25 Thread Jonathan
- Original Message - From: Santani Teng [EMAIL PROTECTED] To: zope@zope.org Sent: Thursday, August 25, 2005 4:27 AM Subject: [Zope] REQUEST.has_key does not find passed argument Hello, I'm new to Zope, Python and DTML and could therefore use some help. I have a page in which I want

[Zope] Job vacancy - Scotland

2005-08-25 Thread Marc Burgauer
Hi Sharedbase has a vacancy for a Zope Web App programmer in a permanent position. We are based in: Hamilton, Scotland, Uk Sharedbase is specialising in on-line communities. Skills required (or sought) are: Zope (currently using 2.7) / Python 2.3.5 UNIX (mainly Solaris, FreeBSD; and less

[Zope] Re: Stepper

2005-08-25 Thread Chris Withers
Hi Gary, Gary Poster wrote: Hey Chris. Ever on the lookout for better things to replace our code (e.g., zasync), I took a look at Stepper. It looks nice and simple (as per your company name, I suppose ;-). It's particularly nice that it looks easier to set up than zasync. Thanks! :-)

[Zope] Random Module

2005-08-25 Thread Sam Boggess
Why won't Zope let me call the random module? It's really annoying to have to write an external method to call such a simple tool. Is there a way around this? Thanks. ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope **

RE: [Zope] Random Module

2005-08-25 Thread Jim Abramson
You can keep all the modules/types/etc you want Zope to stop hassling you about into a single file, restart Zope, and enjoy life again. create a Product called whatever you like (we called ours 'GlobalModules')... our looks like this: in Products/GlobalModules: __init__.py # Global module

Re: [Zope] Random Module

2005-08-25 Thread David Siedband
Are you sure you can't import the functions you need? It might be worthwhile to see if what you want to do can be done without adding to your allowed modules. That should be kind of a last resort. I'm curious what kind of functionality you need from random that can't be done within the

[Zope] SQL Problem

2005-08-25 Thread Philip Beardmore
I'm having a really annoying SQL problem which I think (or hope) can easily be sorted but I'm not sure how to do it. I have a ZPT which is collecting data in a form - Both text boxes and checkboxes. The form then passes the variables on to a DTML Method which does a few bits of error checking

Re: [Zope] SQL Problem

2005-08-25 Thread J Cameron Cooper
Philip Beardmore wrote: I'm having a really annoying SQL problem which I think (or hope) can easily be sorted but I'm not sure how to do it. I have a ZPT which is collecting data in a form - Both text boxes and checkboxes. The form then passes the variables on to a DTML Method which does a few

Re: [Zope] SQL Problem

2005-08-25 Thread Philip Beardmore
Hi JCC, That is exactly what I was looking for - Assigning a default value works great! I previously tried to do this using the syntax provided by zope help: title:string=default value but had no luck. Thanks :- Phil - Original Message - From: J Cameron Cooper [EMAIL PROTECTED] Date:

[Zope] redirecting logs

2005-08-25 Thread Dennis Allison
I want to direct the Z2.log file to both a local file and to a remote machine. I think the configuration might be something like this: logger access level WARN logfile path $INSTANCE/log/Z2.log format %(message)s /logfile syslog address 192.168.0.92:514 format

[Zope] Where to authenticate during traversal

2005-08-25 Thread Chris Withers
Dieter Maurer wrote: - the getObject method never tries to catch any exceptions, it just uses a simple restrictedTraverse to turn the path stored in the ZCatalog into an object Sad that the long discussion could not convince you that restrictedTraverse is not the correct approach... Sad