Re: [Zope] Use of lambda expression in DTML

2000-05-29 Thread Chris McDonough
Lalo Martins wrote: > > How could someone understand this when you're finished with it? > > Perfectly clearly for anyone used to functional programming; > I'd even say, clear on first sight. A lot easier to understand > and maintain than a separate method. OK, I give. I think this would be fine

Re: [Zope] PROPOSAL: Online chat with Jim and Paul

2000-05-29 Thread Ben Leslie
Hi Steve! On Sun, 28 May 2000, Steve Alexander wrote: > Paul Everitt wrote: > > > > I propose an IRC chat on Wednesday with Jim Fulton and me. > > Try and pick a time that's not *too* late at night for us Europeans. Or for us Australian's ;) (Although that might get a tad difficult ;) B

Re: [Zope] something missing in my Oracle setup?

2000-05-29 Thread Jens Vagelpohl
hi justin, it is your oracle install. i have had bad experiences with the fancy shmancy 8.1.x java installer myself. oci.h is in a subdirectory of $ORACLE_HOME called 'rdbms'. i remember doing the client setup did not give me the stuff i needed so i basically copied everything it was missing fro

[Zope] GVIM & ftp

2000-05-29 Thread ethan mindlace fremen
John A Chaves wrote: > You can simulate one fairly easily. The attached script (which would need > to be tweaked for your environment) ftp-gets the zope object into a temp > directory. It also creates a Makefile in the temp directory which ftp-puts > the object back into zope. You can then use

Re: [Zope] Use of lambda expression in DTML

2000-05-29 Thread Lalo Martins
On Mon, May 29, 2000 at 10:58:54PM -0400, Chris McDonough wrote: > > > > Catalog (REQUEST)"> > > > How could someone understand this when you're finished with it? Perfectly clearly for anyone used to functional programming; I'd even say, clear on first sight. A lot easier to understan

[Zope] newbie question: variables

2000-05-29 Thread Brad Moulton
As I am new to both zope and python i am not quite sure how to phrase this question so I'll explain my example hoping this helps. I have created some simple zclasses to add,edit delete customer,jobs, product etc objects I'd like to be able to store and use the "username" captured in a simple lo

Re: [Zope] defining counters in zope(newbie)

2000-05-29 Thread Chris McDonough
Sudhir, Hi... It's natural to want to do this in DTML... but probably not the best idea. I know it's a lot to chew to have to use Python to do stuff like this (you don't), but it would make your life probably a lot easier to do this in an external method or a Python method. That said (untested

[Zope] Re: GenericUserFolder Bug

2000-05-29 Thread Stuart 'Zen' Bishop
On Mon, 29 May 2000, Phil Harris wrote: > I've found a bug in GenericUserFolder. > > Basically if you try and do any restriction by domain then it will fail > every time. Thanks for the heads up. I've uploaded a patched version to zope.org. -- Stuart Bishop Work: [EM

[Zope] defining counters in zope(newbie)

2000-05-29 Thread Sudhir Kumar
How do I keep track of counter in Zope. For example, if I want to produce the following output: 1.book1Author1 2.book2 3.book3 4.book4Author2 5.book5 6.book6 7.book7Author3 i.e. book1, book2, book3 are by Author1, etc. I need som

[Zope] ZClass questions

2000-05-29 Thread Graham Chiu
I can't recall if my question made it to the list following last week's outage, but here goes again... 1. How does one iterate over values within a property sheet? 2. When adding a selection field to a property sheet, how does one "returns a list of strings from which the selection(s) can be c

Re: [Zope] Use of lambda expression in DTML

2000-05-29 Thread Chris McDonough
> > What I would like to say is that if your application needs lambda, filter or > > map, your code is getting bejond report or presentation generation (for which > > DTML is intended) and in the realm of data manipulation and business rules. In > > this case your code would be much better placed

Re: [Zope] import folder at other place than root

2000-05-29 Thread Chris McDonough
Peter, you can change this in the Python file lib/python/OFS/ObjectManager.py here: def manage_importObject(self, file, REQUEST=None): """Import an object from a file""" dirname, file=os.path.split(file) if dirname: raise 'Bad Request', 'Invalid file name %

[Zope] something missing in my Oracle setup?

2000-05-29 Thread Justin Sheehy
Hello, I am trying to build the DCOracle module and having trouble right off the bat. I have tried both 1.3.0 and 1.3.1 b1 with the same results. The file src/oci_8.c does an #include "oci.h", but I don't seem to have a file named oci.h in my oracle install: $ find $ORACLE_HOME -name '*.h' /op

Re: [Zope] Use of lambda expression in DTML

2000-05-29 Thread Lalo Martins
On Mon, May 29, 2000 at 09:40:59PM +0200, Martijn Pieters wrote: > > I can't comment with authority on why these methods are not accessible, but I > imagine that they are banned because they'll probably let you lock up Zope in > one way or another, creating a convenient denial-of-service attack.

Re: [Zope] Zope Email (syndication)

2000-05-29 Thread ethan mindlace fremen
Chris Withers wrote: > Which raises the question: What MTA would you use for a Zope IMAP server > and does it matter? Again, forgive me if that's a stupid question ;-) I would personally use exim, but I don't think it matters, if zope knows intelligent things about it's users. If you wanted to

[Zope] import folder at other place than root

2000-05-29 Thread peter be
Is it possible and how to change the folder that the Zope interface use for importing zexp files? I "host" friends on my Zope site, but I can't let them have access to my import folder which is in C:\Program\Zopesite\import At the moment my friends have to email me their zexp files, if they for

[Zope] GenericUserFolder Bug

2000-05-29 Thread Phil Harris
Hi I've found a bug in GenericUserFolder. Basically if you try and do any restriction by domain then it will fail every time. The problem is that on line 151 of GenericUserFolder.py, it tries to use addr_match and host_match, which I assume was meant o be the same as the one in the standard Use

Re: [Zope] Wiki change notification

2000-05-29 Thread Chris Withers
Shane Hathaway wrote: > Heh heh... that's almost exactly what NetMind does, Chris. Cool... I'm guessing it's not written in Zope though... ;-) cheers, Chris ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No

Re: [Zope] Wiki change notification

2000-05-29 Thread Shane Hathaway
Chris Withers wrote: > > Shane Hathaway wrote: > > [snip wiki change notification] > > What's does NetMind actually do? > > The problem I see here is getting an email everytime someone hits > update, which can mean you get a storm of emails when a coupla people > edit a Wiki. > > I thought of

Re: [Zope] Wiki change notification

2000-05-29 Thread Chris Withers
Shane Hathaway wrote: [snip wiki change notification] What's does NetMind actually do? The problem I see here is getting an email everytime someone hits update, which can mean you get a storm of emails when a coupla people edit a Wiki. I thought of a Zope-based solution for this but haven't ha

[Zope] Wiki change notification

2000-05-29 Thread Shane Hathaway
Zopistas, I had an idea today that I thought was worth trying out. I added to a few FrontPage's some HTML which allows you to receive notification every time any page in a Wiki changes. It uses the NetMind service. Just go to the Interfaces Wiki and enter your e-mail address at the bottom of t

Re: [Zope] Q: Using WebDav to edit Zope DTML Methods.

2000-05-29 Thread Graham Heyes
> Martijn Pieters wrote: > > This is because according to the WebDAV spec, documents are retrieved using a > plain 'GET' command, which is exactly the same as what browsers do. > > However, the spec also provides for a way to find out where to get the source > of the document found at a specific

Re: [Zope] Zope Instability

2000-05-29 Thread Dieter Maurer
Rob Sporleder writes: > We recently setup a Zope server and it has been running great until this > morning when it stopped responding, twice. There are no errors, core files > or indication of a problem except that the server stopped responding to http > requests. All processes were still runn

Re: [Zope] Q: Using WebDav to edit Zope DTML Methods.

2000-05-29 Thread Martijn Pieters
On Tue, May 30, 2000 at 06:33:23PM -0400, Graham Heyes wrote: > Hello, >    I have been using Zope to set up a new web site for documentation and > maintainance os a large software project. Until now I have been using a > combination of LocalFS and ftp to edit content. Neither method is > perfe

[Zope] Q: Using WebDav to edit Zope DTML Methods.

2000-05-29 Thread Graham Heyes
Hello,    I have been using Zope to set up a new web site for documentation and maintainance os a large software project. Until now I have been using a combination of LocalFS and ftp to edit content. Neither method is perfect especially since I often work from my laptop at home which is on the

Re: [Zope] Use of lambda expression in DTML

2000-05-29 Thread Martijn Pieters
On Mon, May 29, 2000 at 04:33:20PM -0300, Lalo Martins wrote: > One big question is: what's wrong with filter, map and lambda? > They can make a lot of code a lot simpler, specially for people > who have a background in functional programming. > > IIRC there is nothing wrong with them - only that

Re: [Zope] ANN: Perl For Zope

2000-05-29 Thread Lalo Martins
I'd happilly pay a few hundred bucks to be able to use Scheme (more specifically Guile with GOOPS and perhaps CMH could use this as an excuse to get finished). []s, |alo + -- Hack and Roll

Re: [Zope] Use of lambda expression in DTML

2000-05-29 Thread Lalo Martins
On Fri, May 26, 2000 at 03:05:14PM -0700, Jonothan Farr wrote: > > In brief: I get a NameError when invoking "filter(...)" from DTML. I thought > > this was a built-in python method, so I'm a bit puzzled. > > Certain built-ins are not available in dtml for security and other reasons, > filter an

Re: [Zope] FW: trying to connect zope to m/s access 2000 d/b

2000-05-29 Thread Rik Hoekstra
> >am using windows 98 & have constructed a ms access 2000 db that i have been >trying to connect to via zope. wasn't sure so i downloaded zodbc db adapter. >a couple of problems if my connection depends on this. 1st i add it to the >top level of the zope installation but it is installed lower dow

[Zope] Wanted: graphic designer

2000-05-29 Thread Bruce Byfield
Progeny Linux Systems, a Debian-based Linux development company, has an immediate need for a graphic designer to assist in the design of its corporate logo and website. Candidates should have experience designing websites on Linux using free software tools, and a portfolio of their work. This posi

Re: [Zope] Zope Email (syndication)

2000-05-29 Thread ethan mindlace fremen
Chris Withers wrote: > > mindlace wrote: > > I don't quite see why MailHost isn't "low level integration" > > Does MailHost do recieves as well as sends? No, but see below... > > Making Zope an MTA seems like a lot of extra work. Now, Zope as an IMAP > > server I could get my head around... >

Re: [Zope] Traceback?

2000-05-29 Thread Martijn Pieters
On Mon, May 29, 2000 at 05:33:20AM -0400, Patrick J.M. Keane wrote: > I would like to ultimately remove the python traceback error code > display from messages (printed after standard_html_error fires off). > However, I'm not sure how to disable this? By default Zope is installed to run in debug

Re: [Zope] WebObjects

2000-05-29 Thread Luciano Ramalho
WebObjects fits a definition that also works for Zope: both are object-oriented frameworks combined with middleware to enable web applications. Unlike Zope, WebObjects does not have any persistence mechanism of its own; it depends on an RDMS to store objects. Oracle, Sybase and Informix are suppo

[Zope] Really buggy digest software

2000-05-29 Thread Dieter Maurer
Dear administrators, the mailing list digests are really buggy. I have reported some problems some days ago. Today, I ran against a new problem: I got "Zope-Dev digest, Vol 1 #543 - 20 msgs" 6 times and "Zope digest, Vol 1 #801 - 57 msgs" twice. Maybe, you should consider replacing this

Re: [Zope] HTML EDITORS

2000-05-29 Thread Nils Kassube
Bill Anderson wrote: > GVIM Yes! This is a powerful editor with an easy-to-use interface available for every major platform (and a lot of minor ones): http://www.vim.org http://www.c2.com/cgi/wiki?EmacsVsVi I use Vim daily on Mac OS, Win98 and Unix (Linux, Slowlaris) and love the co

Re: [Zope] A new python object which analyse HTML files and...

2000-05-29 Thread Itamar Shtull-Trauring
Oleg Broytmann wrote: > > I would like to create a python object which : > > * analyse traditional HTML files > > * indexe "IMG" tags and "A" tags > > * replace "IMG" tags by appropriated dtml tags > > * replace "A" tags by appropriated dtml tags > > * create all the resultant objects > >Yo

Re: [Zope] A new python object which analyse HTML files and...

2000-05-29 Thread Andrew Wilcox
At 06:17 PM 5/29/00 +0100, Frederic QUIN wrote: >Hello everybody, > >I would like to create a python object which : >* analyse traditional HTML files >* indexe "IMG" tags and "A" tags >* replace "IMG" tags by appropriated dtml tags >* replace "A" tags by appropriated dtml tags >* create all the re

Re: [Zope] A new python object which analyse HTML files and...

2000-05-29 Thread Oleg Broytmann
On Mon, 29 May 2000, Frederic QUIN wrote: > I would like to create a python object which : > * analyse traditional HTML files > * indexe "IMG" tags and "A" tags > * replace "IMG" tags by appropriated dtml tags > * replace "A" tags by appropriated dtml tags > * create all the resultant objects > >

Re: [Zope] Re: [Zope-Annce] ANN: Perl For Zope

2000-05-29 Thread Martijn Faassen
Paul Everitt wrote: > Martijn Faassen wrote: > > The addition of the Perl stuff will be bad if the Zope source will be > > hacked up in various places in order to support this. I can be _good_ if > > this means a focus on providing clean interfaces first, and a more > > componentized architecture.

Re: [Zope] Building ZPyGreSQLDA on Linux

2000-05-29 Thread pcm
try ZPoPyDA http://www.mixadlive.com ftp://ftp.mixadlive.com/pub/zope/ZPoPyDA/ZPoPyDA-0.1.0.tar.gz Bye Paolo Comitini Mixad Live s.r.l. > > Contacted the author of ZPyGreSQLDA but so far no response... > > Hung Jung > ___ Zope maillist -

Re: [Zope] Zope.org down

2000-05-29 Thread Paul Everitt
Graham Chiu wrote: > > Hmm. zope.org has been down most of the afternoon. > > Not that Friday afternoon change over to Zeo that they were talking > about doing ? Nope, a very odd DNS situation. --Paul ___ Zope maillist - [EMAIL PROTECTED] http://l

[Zope] Ability to access Perl modules from Zope is good

2000-05-29 Thread Andrew Wilcox
> "The Perl for Zope project brings the worlds of the two most > important open source programming languages together," stated > Gisle Aas, Senior Developer, ActiveState. "Python programmers > will be able to directly take advantage of the large collection > of reusable Perl program modules, like

[Zope] A new python object which analyse HTML files and...

2000-05-29 Thread Frederic QUIN
Hello everybody, I would like to create a python object which : * analyse traditional HTML files * indexe "IMG" tags and "A" tags * replace "IMG" tags by appropriated dtml tags * replace "A" tags by appropriated dtml tags * create all the resultant objects Did someone ever do that ? Anyway, if s

Re: [Zope] Deprecation of ?

2000-05-29 Thread Kevin Dangoor
I sent Brian a message on this, and I just added it to the collector with the 1 line patch necessary to add as a synonym for : http://classic.zope.org:8080/Collector/1279/view Kevin - Original Message - From: "Paul Everitt" <[EMAIL PROTECTED]> To: "Chris Withers" <[EMAIL PROTECTED]> Cc

[Zope] Zope-Edu Wiki

2000-05-29 Thread Shane Hathaway
Your attention please! The following persons will report at once to the new Zope-Edu wiki at http://www.zope.org/Wikis/zope-edu . They will then proceed to the Contributors page, click the question mark by their name, and enter biographical information and what projects they are working on relat

Re: [Zope] ANN: Perl For Zope

2000-05-29 Thread Paul Everitt
Look, a whole bunch of great questions for Wed's IRC chat. :^) I propose 1PM Eastern on Wed for the chat. We'll make a more formal announcement tomorrow. (Right, Ethan?) --Paul Jimmie Houchin wrote: > > Are Python Products considered implementation level? > > Or another question. What are t

Re: [Zope] Another question

2000-05-29 Thread Kevin Dangoor
This, or some variation of this, may do the trick (untested): Kevin - Original Message - From: "Patrick J.M. Keane" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, May 28, 2000 6:33 PM Subject: [Zope] Another question > > By default, when a new instance of a ZClass i

Re: [Zope] Perl Zope

2000-05-29 Thread Paul Everitt
Chris Withers wrote: > > Paul Everitt wrote: > > You're absolutely right on this. Amos' post recently described the > > various things in various stages of release that should give some hope > > for the situation. These things really are an improvement. I'm > > crossing my fingers that this tu

Re: [Zope] Traceback? Codechange!

2000-05-29 Thread Martijn Pieters
On Mon, May 29, 2000 at 04:14:19PM +0100, Chris Withers wrote: > Martijn Pieters wrote: > > > > Do I have to copy this message to the collector and wait for > > > > a couple of months or can we do it instantly? ;-) > > > > Do you still experience the Collector as black hole? Could you report this

Re: [Zope] Traceback? Codechange!

2000-05-29 Thread Chris Withers
Martijn Pieters wrote: > > > Do I have to copy this message to the collector and wait for > > > a couple of months or can we do it instantly? ;-) > > Do you still experience the Collector as black hole? Could you report this to > Tres Seaver, the person currently monitoring the COllector and clea

Re: [Zope] Re: [ZDP] Re: [Zope] The agony of the ZOPE Documentation

2000-05-29 Thread Craig Allen
I must apologize in advance, I have not read the entire thread, but here's my answer to your question: > So what do you folks think? My advice: be a benevolent despot. I started to get involved with ZDP many months ago, and proposed a structure for documentation, created a folder hierarchy to

[Zope] Q: Accessing a ZSQL Method from an External Method

2000-05-29 Thread a . wacknitz
Hi all, I want to use ZSQL Methods from within External Methods and have already read the appropriate HowTo but it is somehow vague in some respects and I have some problems with my adaption. I have ZSQL methods in a subfolder /SQL, eg. /SQL/sqlZuordnung My External Method named "extShow" should

Re: [Zope] Traceback? Codechange!

2000-05-29 Thread Martijn Pieters
On Mon, May 29, 2000 at 04:08:59PM +0200, Marcus Collins wrote: > > This is very ugly imho. It schould be sufficient, if one includes the > > traceback-variable into the standard-error where its appropriate. > > In the current implementation it will break the HTML-standard with > > code outside a

Re: [Zope] Deprecation of ?

2000-05-29 Thread Bill Anderson
Chris Withers wrote: > > Paul Everitt wrote: > > Shorthand notations are convenient, but when they get inconsistent, you > > wind up with the other P language. :^) > > Woudl that be the one we're welcoming into the fold? ;-) Touche. ;) ___ Zope mail

[Zope] WebObjects

2000-05-29 Thread Jason Cunliffe
Hello Now that Apple has slashed the price of WebObjects from $50,000 to $700, I am very interested to hear any opinions/experiences of WebObjects.. how does it compare with Z*** , Man***, Rox**, ColdF* etc http://www.apple.com/webobjects/ -What are the good ideas? -What is similar? -What is

RE: [Zope] Traceback? Codechange!

2000-05-29 Thread Marcus Collins
> -Original Message- > From: Tino Wildenhain [mailto:[EMAIL PROTECTED]] > Sent: 29 May 2000 15:44 > To: Marcus Collins > Cc: 'Chris Withers'; Martijn Pieters; Patrick J.M. Keane; > [EMAIL PROTECTED] > Subject: Re: [Zope] Traceback? Codechange! > > Hi, [...] > This is very ugly imho. I

Re: [Zope] Re: [Zope-Annce] ANN: Perl For Zope

2000-05-29 Thread Jimmie Houchin
Martijn Faassen wrote: > > Jimmie Houchin wrote: > > I would like to echo what Dieter wrote here. > > > > We need to encourage people who write products or other extensions to > > Zope in writing cleanly, clearly defined extensions which can be used in > > a black box manner. > > Sure, but we al

Re: [Zope] Deprecation of ?

2000-05-29 Thread Chris Withers
Paul Everitt wrote: > Shorthand notations are convenient, but when they get inconsistent, you > wind up with the other P language. :^) Woudl that be the one we're welcoming into the fold? ;-) Chris ___ Zope maillist - [EMAIL PROTECTED] http://lists.

Re: [Zope] Re: [Zope-Annce] ANN: Perl For Zope

2000-05-29 Thread Paul Everitt
Martijn Faassen wrote: > The addition of the Perl stuff will be bad if the Zope source will be > hacked up in various places in order to support this. I can be _good_ if > this means a focus on providing clean interfaces first, and a more > componentized architecture. I.e. there's a focus on integ

Re: [Zope] Deprecation of ?

2000-05-29 Thread Paul Everitt
Suggestion: lobby Brian Lloyd about this. As Chris mentioned, reducing the "coefficient of complexity" is something he and I are focused on. Shorthand notations are convenient, but when they get inconsistent, you wind up with the other P language. :^) --Paul Chris Withers wrote: > > Kevin Da

Re: [Zope] Traceback? Codechange!

2000-05-29 Thread Chris Withers
Tino Wildenhain wrote: > Do I have to copy this message to the collector and wait for > a couple of months or can we do it instantly? ;-) Do both, that way, hopefully the change will make it into 2.2 and you get your problem fixed now. I always thought the line was included in the standard_erro

Re: [Zope] Hadar's Thoughts on Perl for Zope (LONG)

2000-05-29 Thread Martijn Faassen
Jimmie Houchin wrote: > I would like to thank Paul, Jim and Hadar for expressing their opinions, > desires and goals for Zope in a level headed and rational manner which > did not necessitate the putting down of others opinions. > > This kind of leadership at DC for Zope is one of the greatest >

Re: [Zope] FYI: Recap of Perl For Zope thread

2000-05-29 Thread Martijn Faassen
Paul Everitt wrote: [snip] > John Chandler wrote: "Even as a Perl fan, I agree and don't see the > sense in placing Perl-style expressions in DTML." > (Let's get rid of _all_ expr, that's my vote.) Vote taken into consideration. :) I don't think NextGenDTML could get rid of all expressions, unle

Re: [Zope] Traceback? Codechange!

2000-05-29 Thread Tino Wildenhain
Hi, Marcus Collins wrote: > > > -Original Message- > > From: Chris Withers [mailto:[EMAIL PROTECTED]] > > Sent: 29 May 2000 14:01 > > To: Martijn Pieters > > Cc: Patrick J.M. Keane; [EMAIL PROTECTED] > > Subject: Re: [Zope] Traceback? > > > > Martijn Pieters wrote: > > > If you switch de

Re: [Zope] A similar issue with Perl for Zope

2000-05-29 Thread Martijn Faassen
Michel Pelletier wrote: [snip] > This is such a good point I wanted to share it with the Zope community > as well. The language issue is minor to the need for a definate object > model with clear interfaces. It shouldn't matter if the core of Zope is > written in Python or FORTH, from your persp

Re: [Zope] Why Perl for Zope is good

2000-05-29 Thread Vitaly Osipov
Hello all, seems like the passions have calmed down more or less, but i'd like to add my two czech crowns :) Sorry in advance. Actually from the beginning I did not understand why people are arguing on perl vs python - it is not the main issue... You see, DC is a _commercial_ thing. I do not k

Re: [Zope] Re: [Zope-Annce] ANN: Perl For Zope - why I'm bummed

2000-05-29 Thread Martijn Faassen
Paul Everitt wrote: [snip] > As the person that made the decision, I can at least testify that no > ulterior motives were behind it. Still, Zope is a community thing, and > we here at DC need our heads bopped on a regular basis, lest we ever > forget it. > > Consider our heads bopped. :^) And t

Re: [Zope] Re: [Zope-Annce] ANN: Perl For Zope - why I'm bummed

2000-05-29 Thread Martijn Faassen
Martijn Pieters wrote: [snip] > Now, please, can we stop this whole silly argument? Can't we talk about old > terminal types or something, instead? That invocation only works on comp.lang.python. :) Regards, Martijn ___ Zope maillist - [EMAIL PROT

Re: [Zope] Re: [Zope-Annce] ANN: Perl For Zope - why I'm bummed

2000-05-29 Thread Martijn Faassen
Oleg Broytmann wrote: > > Where do you intend on going? If there was something better out there > > you'd be humping its leg already. > >Thanks goodness, I am not using Zope on production servers. I use Zope > only to experiments and understand the technology. Looked good until > yesterday.

Re: [Zope] ANN: Perl For Zope

2000-05-29 Thread Martijn Faassen
Andrew Kenneth Milton wrote: > +[ Chris McDonough ]- > | This is pretty silly. > > I agree, it got silly about 8 hours ago. > > I don't think I've ever seen paranoia and religious fervour mixed in > quite the same way before. Anyone would think tha

Re: [Zope] Re: [Zope-Annce] ANN: Perl For Zope

2000-05-29 Thread Martijn Faassen
Jimmie Houchin wrote: > I would like to echo what Dieter wrote here. > > We need to encourage people who write products or other extensions to > Zope in writing cleanly, clearly defined extensions which can be used in > a black box manner. Sure, but we also need to encourage people to study each

Re: [Zope] Traceback?

2000-05-29 Thread Martijn Pieters
On Mon, May 29, 2000 at 01:00:55PM +0100, Chris Withers wrote: > Martijn Pieters wrote: > > If you switch debug mode off, tracebacks will be included in error messages as > > HTML comments, thus rendering them invisible from the unsuspecting site > > visitor. > > Is that true even if you override

RE: [Zope] Traceback?

2000-05-29 Thread Marcus Collins
> -Original Message- > From: Chris Withers [mailto:[EMAIL PROTECTED]] > Sent: 29 May 2000 14:01 > To: Martijn Pieters > Cc: Patrick J.M. Keane; [EMAIL PROTECTED] > Subject: Re: [Zope] Traceback? > > Martijn Pieters wrote: > > If you switch debug mode off, tracebacks will be included > >

Re: [Zope] ANN: Perl For Zope

2000-05-29 Thread Martijn Faassen
Chris McDonough wrote: > Isn't this covered in the FAQ? The FAQ wasn't referred to directly in the original announcement; there was a web page with a FAQ but my mail message was already gone before I read the FAQ. > Honestly I'm sort of surprised that there is such a strong reaction to > this.

Re: [Zope] Traceback?

2000-05-29 Thread Chris Withers
Martijn Pieters wrote: > If you switch debug mode off, tracebacks will be included in error messages as > HTML comments, thus rendering them invisible from the unsuspecting site > visitor. Is that true even if you override standard_error_message? cheers, Chris _

Re: [Zope] SQL-Query works with MySQL-monitor but not with ZMySQLDA

2000-05-29 Thread Tino Wildenhain
Hi Andy, Andy Pahne wrote: > > Hi, there, > > if I use my mysq-monitor to execute the following query, everything works > fine: > > SELECT YEAR(START_DATE) FROM EVENT; > > but it doesn't work via the ZMySQLDA!?! > > Here's the traceback: > > Error, exceptions.KeyError: unhandled > Pleas

RE: [Zope] SQL-Query works with MySQL-monitor but not with ZMySQLDA

2000-05-29 Thread Marcus Collins
> -Original Message- > From: Andy Pahne [mailto:[EMAIL PROTECTED]] > Sent: 29 May 2000 13:03 > To: [EMAIL PROTECTED] > Subject: [Zope] SQL-Query works with MySQL-monitor but not > with ZMySQLDA > > Hi, there, > > if I use my mysq-monitor to execute the following query, > everything wor

[Zope] SQL-Query works with MySQL-monitor but not with ZMySQLDA

2000-05-29 Thread Andy Pahne
Hi, there, if I use my mysq-monitor to execute the following query, everything works fine: SELECT YEAR(START_DATE) FROM EVENT; but it doesn't work via the ZMySQLDA!?! Here's the traceback: Error, exceptions.KeyError: unhandled Traceback (innermost last): File /zope/ttl/Zope-2.0.1-src/li

[Zope] Expression syntax for sort= attribute in tag.

2000-05-29 Thread Agnieszka Karpierz
It's very, very... great news that Ross Lazarus's multikey sort patch for dtml-in tag is included in current Zope CVS and will be included in Zope 2.2. But for me one important think is very missed. Possibillity of use expression syntax for sort= attribute. Maybe syntax: would be possible ?

Re: [Zope] Building ZPyGreSQLDA on Linux

2000-05-29 Thread Daryl Tester
Charlie Derr wrote: > My problem fits under this subject so i thought i'd hijack it :-] > I have redhat 6.1, and i've installed and gotten postgresql 7.0 working > okay (at least i can create tables at a psql prompt and insert data). [snip] > it failed with an error saying that libpq-fe.h and l

Re: [Zope] zcatalog & keyerror 30

2000-05-29 Thread Jonathan Cheyne
AHH!!! So simple, so many weeks of general frustration. Subject to more continous testing, that seems to have done the trick! a HUGE thank you. Jonathan On Sun, 28 May 2000, Chris Withers wrote: > Try the patching described in the following message: > http://zope.nipltd.com/public/lists/de

Re: [Zope] Traceback?

2000-05-29 Thread Chien-Pin Wang
Take off the -D switch in your zope start script. will let you show traceback programmatically. Believe me, you will miss them once you turn it off. Chien-pin On Mon, 29 May 2000, Patrick J.M. Keane wrote: > > I would like to ultimately remove the python traceback error code > display from

Re: [Zope] how to keep all captions in one place?

2000-05-29 Thread Chien-Pin Wang
Get a product called DTML Template at Zope site. I should be able to serve your needs. Chien-pin On Mon, 29 May 2000, Philipp Dunkel wrote: > Hi > > I have a big project that is developed in english. > Now I want to give this away for translating. > The problem is that until now code and text

Re: [Zope] Zope Email (syndication)

2000-05-29 Thread Chris Withers
ethan mindlace fremen wrote: > An imap server stores the messages that have been recieved. An MTA > (Mail Transport Agent) goes about sending mail from one place to > another. If there were an IMAP server in zope, you could "recieve" the > mail as an object in zope, but it would still be deliver

Re: [Zope] Deprecation of ?

2000-05-29 Thread Chris Withers
Kevin Dangoor wrote: > Or, how about a tag (which could even start out as a simple > synonym for ) so that people won't be confused about what is > python and what is a variable lookup with the special calling properties. This is a great idea :-) New Old

[Zope] Traceback?

2000-05-29 Thread Patrick J.M. Keane
I would like to ultimately remove the python traceback error code display from messages (printed after standard_html_error fires off). However, I'm not sure how to disable this? Thanks PK ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org

[Zope] how to keep all captions in one place?

2000-05-29 Thread Philipp Dunkel
Hi I have a big project that is developed in english. Now I want to give this away for translating. The problem is that until now code and text/captions are mixed. Is there any way to store all captions/texts in one single place, so that I could do instead of Hello and that we only

Re: [Zope] Hot backups

2000-05-29 Thread Petru Paler
> Is there any facility in Zope for doing a hot backup, without shuting > down zope, taking a backup copy of var -- can this result in > inconsistencies in the internal DB, or does it use something mystical to > prevent corruption? If not, what other options exist for this? AFAICS Zope does a sy

Re: [Zope] Building ZPyGreSQLDA on Linux

2000-05-29 Thread Oleg Broytmann
On Sat, 27 May 2000, Hung Jung Lu wrote: > Let me try again, does any of you guys have a "config" subfolder inside your > /usr/lib/python1.5/ folder? I guess the "config" subfolder maybe an feature Yes, I have it. It appeared after "make install". But it is in /usr/local/lib/python1.5 - you

[Zope] Why Perl for Zope is good

2000-05-29 Thread Itamar Shtull-Trauring
1. Zope is complicated 2. Adding Perl to Zope makes it more complicated 3. Most of us here have some Zope knowledge 4. All the Perl programmers who will flock to Zope won't have this knowledge 5. Zope with Perl will be even more popular RESULT: We can get rich as Zope consultants. All the argu

[Zope] Zope tutorial problem

2000-05-29 Thread Harry Henry Gebel
I just installed Zope 2.2.0a1 and when I tried to add the Zope tutorial product I got the following error: The database connection connection cannot be found. Here is the traceback from the source: The database connection connection cannot be found.

[Zope] perl for zope: a few last comments and then I'm done

2000-05-29 Thread Roman Milner
OK, I just wanted to say a couple more things about this and then I'll shut up. I've given it a lot of thought - trying come up with a way of looking at it that still makes zope attractive. So, I started thinking - what if it had been a language that I like instead of perl. (lisp, java...) Als

[Zope] SV: [Zope] Building ZPyGreSQLDA on Linux

2000-05-29 Thread Magnus Heino (Rivermen)
> Let me try again, does any of you guys have a "config" > subfolder inside your > /usr/lib/python1.5/ folder? I guess the "config" subfolder > maybe an feature > from the old python1.5, because in the new python1.5.2 there > is no such a > folder. > > Also, in an error like: > > make[1]:

[Zope] test

2000-05-29 Thread Chris McDonough
ignore please ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/z