Re: [Zope] (no subject)

2007-12-11 Thread Andrew Milton
+---[ Beema shafreen ]-- | acceptance rejection. -- Andrew Milton [EMAIL PROTECTED] ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists -

Re: [Zope] (no subject)

2006-08-03 Thread Marco Bizzarri
Please take a look at the Zope book, in the section about security where it speaks about trusted and untrusted code. Basically, you can access from a Python script (i.e. untrused code) only those modules which are explicity declared so in Zope. time module is most probably not in those modules.

Re: [Zope] (no subject)

2006-07-20 Thread José Henrique
I couldn't reproduce this behavior. When I try to make such assignement (myObject.title='The new title'), Zope returns this messageattribute-less object (assign or del) I'm using Zope 2.7.6-final, python 2.3.4. Jose Henrique2006/7/18, Martijn Pieters [EMAIL PROTECTED]: On 18 Jul 2006 19:12:54

Re: [Zope] (no subject)

2006-07-18 Thread Martijn Pieters
On 18 Jul 2006 19:12:54 -, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Why, given an object called myObject with a title property, can I not change the title by saying simply: myObject.title='The new title' You can. Property sheets are aimed at ease of changing through the web; it is a

Re: [Zope] (no subject)

2005-11-29 Thread Chris Withers
Yes, I feel like that sometimes too ;-) Dennis Allison wrote: -- Simplistix - Content Management, Zope Python Consulting - http://www.simplistix.co.uk ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope **

Re: [Zope] (no subject)

2005-11-18 Thread Chris Withers
AZAIS Bruce wrote: Hi, excuse-me for my English but i'm french ;-) This is a Plone problem, you're likely to get more help on a Plone list. * Le contenu de ce courriel et ses eventuelles pièces jointes sont confidentiels. Ils s'adressent

Re: [Zope] (no subject)

2005-11-16 Thread Andreas Jung
--On 16. November 2005 10:13:24 +0100 AZAIS Bruce [EMAIL PROTECTED] wrote: AttributeError: plone_javascripts.js Please ask on the plone-users list for Plone related issues. -aj pgpUXSKlvJCHB.pgp Description: PGP signature ___ Zope maillist

RE: [Zope] (no subject)

2001-01-03 Thread Mohan Baro
If its not ZOPE hosting ... don't send it here!! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, January 03, 2001 2:00 AM To: [EMAIL PROTECTED] Subject: [Zope] (no subject) GET YOUR OWN 100 MEG WEBSITE FOR ONLY $11.95

Re: [Zope] (no subject)

2000-10-23 Thread ethan mindlace fremen
Robert Joseph Roos wrote: invalid attribute name, "manage_addproperty(name", for tag dtml-call manage_addProperty(name='foo', value='bar', type='string'), on line 10 of makeSched don't know if anybody helped you on this already, but any method call is an expression, and should be

RE: [Zope] (no subject)

2000-10-17 Thread Eric Walstad
Hi Rob, I'm a newbie, but I just finished doing what you are trying to do. Here's how I did it: Product name: NewsItem ZClass: CNewsItem Property Sheet: NewsProperties In the BuildNews dtml method: dtml-call "REQUEST.set('ts', ZopeTime())" dtml-call "REQUEST.set('id',

Re: [Zope] (no subject)

2000-07-17 Thread R. David Murray
On 14 Jul 2000, Karl Anderson wrote: __bobo_traverse__ is another attribute that the object may have to drive the publishing process, but I haven't needed to understand why it's useful yet :) Isn't that where he'd hook in to do exactly what he wants? To have an (arbitrary) object "eat"

Re: [Zope] (no subject)

2000-07-17 Thread Chris Withers
"Leichtman, David J" wrote: I've previously been a Perl programmer. I did a lot of stuff where I would have multiple links with different options. Ex. a href="/path/script.pl/1234"1234/abr a href="/path/script.pl/2345"2345/abr You can do this and more with a SiteAccess access rule and

Re: [Zope] (no subject)

2000-07-14 Thread Karl Anderson
"Leichtman, David J" [EMAIL PROTECTED] writes: I've previously been a Perl programmer. I did a lot of stuff where I would have multiple links with different options. Ex. a href="/path/script.pl/1234"1234/abr a href="/path/script.pl/2345"2345/abr Then, in script.pl, I would pick up the

RE: [Zope] (no subject)

2000-07-13 Thread Chris McDonough
This is a job for __bobo_traverse__ (yes, I know, unlikely name, but what has now become Zope used to be named Bobo). Without using __bobo_traverse__, which is defined as a method on the object which you access via traversal, you can't easily use "extra" URL elements as parameters to pass to the

RE: [Zope] (no subject)

2000-07-13 Thread Chris McDonough
Thanks for responding so quickly. I'm not sure I understand. The problem here, and the reason I can't simply use a form or a session, is that I want to set a series of links that send different options to the same method. I guess it's the equivalent of passing args to a dtml method

Re: [Zope] (no subject)

2000-06-26 Thread Bill Anderson
"Jay, Dylan" wrote: -Original Message- From: Marco Mariani [mailto:[EMAIL PROTECTED]] Sent: Friday, June 23, 2000 9:54 PM To: Jay, Dylan; [EMAIL PROTECTED] Subject: Re: [Zope] (no subject) On Fri, Jun 23, 2000 at 04:32:39PM +1000, Jay, Dylan wrote: It s

Re: [Zope] (no subject)

2000-06-26 Thread ethan mindlace fremen
Luc Tonin wrote: does anybody know how to have some statistic about each web pages under zope?? each pages is da result of query on a mysql database ! any id ??? thx by advance I don't know if this is what you mean, but you can use webalizer or another statistics package on the log file

RE: [Zope] (no subject)

2000-06-26 Thread Dieter Maurer
Jay, Dylan writes: ... Perhaps another example will prove its uglyness. dtml-if "REQUEST.has_key('some_value') and this().has_key(some_value) and _[some_value] == 'a property value' and AUTHENTICATED_USER.has_role('Manager')" a href="a_url" /dtml-if link text dtml-if

RE: [Zope] (no subject)

2000-06-26 Thread Jay, Dylan
-Original Message- From: Marco Mariani [mailto:[EMAIL PROTECTED]] Sent: Monday, June 26, 2000 6:39 PM To: Jay, Dylan Subject: Re: [Zope] (no subject) On Mon, Jun 26, 2000 at 02:56:39PM +1000, Jay, Dylan wrote: dtml-if X a href="a_url" link text

RE: [Zope] (no subject)

2000-06-26 Thread Jay, Dylan
-Original Message- From: Dieter Maurer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 27, 2000 3:31 AM To: [EMAIL PROTECTED] Cc: '[EMAIL PROTECTED]' Subject: RE: [Zope] (no subject) Jay, Dylan writes: ... Perhaps another example will prove its uglyness. dtml

RE: [Zope] (no subject)

2000-06-25 Thread Jay, Dylan
-Original Message- From: Shalabh Chaturvedi [mailto:[EMAIL PROTECTED]] Sent: Friday, June 23, 2000 5:19 PM To: Jay, Dylan; [EMAIL PROTECTED] Subject: Re: [Zope] (no subject) Hi: Could you give an equivalent using the current dtml tags? dtml-if X a href="a_url&q

RE: [Zope] (no subject)

2000-06-25 Thread Jay, Dylan
-Original Message- From: Marco Mariani [mailto:[EMAIL PROTECTED]] Sent: Friday, June 23, 2000 9:54 PM To: Jay, Dylan; [EMAIL PROTECTED] Subject: Re: [Zope] (no subject) On Fri, Jun 23, 2000 at 04:32:39PM +1000, Jay, Dylan wrote: It seems to me that a few tweaks to the dtml

RE: [Zope] (no subject)

2000-06-25 Thread Jay, Dylan
-Original Message- From: Dieter Maurer [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 24, 2000 8:11 AM To: Jay, Dylan Cc: '[EMAIL PROTECTED]' Subject: Re: [Zope] (no subject) Jay, Dylan writes: Here's a feature I just submitted to the collector. It seems to me

Re: [Zope] (no subject)

2000-06-23 Thread Shalabh Chaturvedi
Hi: Could you give an equivalent using the current dtml tags? Thanks, Shalabh - Original Message - From: Jay, Dylan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 23, 2000 12:02 PM Subject: [Zope] (no subject) Here's a feature I just submitted to the collector. It

Re: [Zope] (no subject)

2000-06-23 Thread Marco Mariani
On Fri, Jun 23, 2000 at 04:32:39PM +1000, Jay, Dylan wrote: It seems to me that a few tweaks to the dtml-if syntax would be beneficial something like the following would certainly clean up some of the logic I end up writing. dtml-if X a href="a_url" dtml-always link text dtml-else

Re: [Zope] (no subject)

2000-06-23 Thread Dieter Maurer
Jay, Dylan writes: Here's a feature I just submitted to the collector. It seems to me that a few tweaks to the dtml-if syntax would be beneficial something like the following would certainly clean up some of the logic I end up writing. dtml-if X a href="a_url" dtml-always

Re: [Zope] (no subject)

2000-06-07 Thread R. David Murray
On Tue, 6 Jun 2000, Alexandre A. Drummond Barroso wrote: We are posting e-mails about it on the list for a while and nobody answered, so I must think that nobody on Zope universe is using Oracle 8i (neither NT nor Linux Oracle 8i client). I installed DCOracle for a client using 8i. The only

Re: [Zope] (no subject)

2000-06-06 Thread David Trudgett
At 2000-06-06 09:44 -0300, you wrote: You both had the same problem I have now: make Oracle 8i (in my case, Oracle 8.1.6) work with Zope. DCOracle is working well (Makefile attached to this message) but ZOracle isn't running yet. We are posting e-mails about it on the list for a while and