Re: [Zope] Trapping zope exceptions in python script

2005-12-15 Thread Joe Bezier
On 14 Dec 2005, at 19:54, Nikko Wolf wrote: In general, TTW coding is very limited; you can use External Methods (a.k.a. Extensions) or Products to avoid this. Please excuse my ignorance, but what does "TTW coding" mean exactly? Thanks JB __

Re: [Zope] Sql statement in dtml code

2005-09-09 Thread Joe Bezier
e_count.zsql) which I try to call in my dtml via - but I get a KeyError when the page is refreshed. The dtml is in the same dir as the zsql...not sure whats up. Cheers, Paul On Fri, 2005-09-09 at 11:06 +0100, Joe Bezier wrote: I'm not sure if this is what you're looking for

Re: [Zope] Sql statement in dtml code

2005-09-09 Thread Joe Bezier
I'm not sure if this is what you're looking for expr="sql_statement(parameter1=parameter1,parameter2=parameter2)"> If no parameters, just expr="sql_statement()" or Cheers, JB On 9 Sep 2005, at 10:50, [EMAIL PROTECTED] wrote: Hi all, I'm trying to basically get the output of two SELECT

Re: [Bulk] [Zope] localhost:8080 not found on windows

2005-08-02 Thread Joe Bezier
A couple of obvious ones: Have you tried 127.0.0.1:8080 or [local_ip]:8080 Are you sure you're running Zope on port 8080? Cheers, Joe On 2 Aug 2005, at 15:09, michael nt milne wrote: Hi I have installed Zope and Plone on a windows business server. On trying to view http://localhost:8080/man

Re: [Zope] manage_changeProperties quirk?

2005-07-22 Thread Joe Bezier
Yep. Exactly - I hadn't thought of that, but yes, it was created by someone who's now left. Deeply impressive. Thanks Jens. JB On 22 Jul 2005, at 11:17, Jens Vagelpohl wrote: On 22 Jul 2005, at 11:04, Joe Bezier wrote: So I tried pretty much everything - checking all sorts of p

[Zope] manage_changeProperties quirk?

2005-07-22 Thread Joe Bezier
Hiya, I had a strange problem today, on a Zope 2.5 installation (yes, it will be upgraded soon...). Basically, I've got a form action which calls manage_changeProperties() on a number of subfolders using Now, this works absolutely fine throughout my installation, but in one instance it was

Re: [Zope] IE v. Firefox for viewing Zope sites

2005-06-16 Thread Joe Bezier
Can you show us? It'd be easier to tell you the problem... It could be the CSS, or it could be the HTML, particularly the DTD - IE renders pages differently depending on the validity of your DTD - a good DTD gets your page rendered in "compliant" mode, a bad one (or none...) gets your page ren

[Zope] Zope product tree inheritance...

2005-06-07 Thread Joe Bezier
Hi there, I'm using Zope 2.7.5 and have various instances running from the same code base - I've edited one of my products and I'd like to test it in one particular instance. Can anyone tell me whether Zope will use the Product in the [instance]/Products folder ahead of the one in the main co

Re: [Zope] userFolder that holds user's email

2005-06-07 Thread Joe Bezier
Have a look at ExUserFolder (http://sourceforge.net/projects/exuserfolder/) we use it and I think it's great... Cheers, Joe On 7 Jun 2005, at 12:27, Haim Ashkenazi wrote: Hi I'm looking for a zope (not plone) userFolder that can hold the user's email and perhaps full name. It should be the

Re: [Zope] Z SQL test in the ZMI aborts on key error

2005-06-07 Thread Joe Bezier
Hi there, By any chance are you trying to test a ZSQL method that doesn't (shouldn't) need any query parameters? For some reason (and I'm not the guy who can tell you why...) these types of tests always break - try adding '?query=' to the end of the URL. and see if that helps. Cheers, Joe.