[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: Contact So, when you click on "Contact" you should get a new window. The variable "name_id" is prev

[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 piece

[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 I

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

2005-08-25 Thread Jonathan
- Original Message - From: "Santani Teng" <[EMAIL PROTECTED]> To: 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 to pass a

[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 asser

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 impor

[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 the

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]> Da

[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: level WARN path $INSTANCE/log/Z2.log format %(message)s address 192.168.0.92:514 format %(message)s but it does not seem to

[Zope] Locking MySQL tables via Z MySQL Database Connections

2005-08-25 Thread Sean Dunn
I’m confused as to what the thread “scope rules” are between Zope and MySQL.   I would like to be able to emulate transaction control in MySQL in a Python script in Zope, but I’m unclear as to how the Z MySQL DB Connection works, and what defines a “thread” for it? I need to be able to LO

[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 th