Re: [Zope-dev] Images and Products

2001-03-27 Thread Andre Schubert
Hi, i have found the error. I had somewhere definded '' in a Permission wich is the same as index_html. And this permission was not set to Anonymous. as Dieter Maurer schrieb: Andre Schubert writes: I have a little Problem on using Images in my Product. If i'am logged in as Manager i

Re: [Zope-dev] Compiling Zope from source on Windows

2001-03-27 Thread Phil Harris
This is too cool, works great! Compiled first time and run first time. Serving pages already, too cool. - Original Message - From: "Chris McDonough" [EMAIL PROTECTED] To: "Brian Lloyd" [EMAIL PROTECTED]; "Andy McKay" [EMAIL PROTECTED]; "Chris Withers" [EMAIL PROTECTED] Cc: [EMAIL

[Zope-dev] LoginManager question

2001-03-27 Thread Bertrand Croq
Hi, I am currently using LoginManager to authenticate users from a MySQL database. I followed the tutorials and it works quite well; but there are other data associated with users in the database that I would like to use in Zope. I have found a solution but I think it is quite complicated:

Re: [Zope-dev] FTP interface being worked on?

2001-03-27 Thread Steve Spicklemire
Hi Fred, "Fred" == Fred Wilson Horch [EMAIL PROTECTED] writes: Fred Wanted to follow up on Steve's points. Fred I don't know if we need just one serialization interface Fred that tries to solve all five issues. Ok.. Fred We currently have two serialization interfaces in

Re: [Zope-dev] FTP interface being worked on?

2001-03-27 Thread Chris Withers
Steve Spicklemire wrote: Fred FWIW, I'm working on tweaking the XML export/import code to Fred serialize object hierarchies as directories and files, Fred rather than exporting a single file. Cool.. this sounds like a promising approach. I'd be interested in testing this..

[Zope-dev] filter metatypes in objectmanager

2001-03-27 Thread Magnus Heino
How can I control what meta_type's that can be added to an ObjectManager? If you create a ZClass that inherits from ObjectManager, you can specify this, but how is it done from a python product? /Magnus ___ Zope-Dev maillist - [EMAIL PROTECTED]

Re: [Zope-dev] filter metatypes in objectmanager

2001-03-27 Thread Jens Vagelpohl
define a method with the name "all_meta_types" inside your class and have it return the correct information, like this: import Products def all_meta_types(self): """ What can you put inside me? """ f = lambda x: x['name'] in ('DTML Method', 'DTML Document')

Re: [Zope-dev] FTP interface being worked on?

2001-03-27 Thread R. David Murray
On 26 Mar 2001, Karl Anderson wrote: Is there a particular set of tools or editing paradigms that we have in mind when we say that a non-XML representation is suited for client side tools? I think the prime current example of this is the way you can use any text editor to edit the serialized

[Zope-dev] Zope/OpenBSD: Too many open files

2001-03-27 Thread Ricardo Bermell
Zope (started from a shell) in OpenBSD gets locked too easyly because of the low default limit for open file descriptors (64). When Zope gets locked shows repeatedly this message "PROBLEM(100) ZServer warning: server accept() threw an exception", locking effectively also the console.

Re: [Zope-dev] FTP interface being worked on?

2001-03-27 Thread Fred Wilson Horch
Hi Steve, You wrote: Fred We currently have two serialization interfaces in Zope: Fred 1) the FTP interface, and 2) the XML export interface. Hmm.. maybe I'm misuderstanding... which would/could you use for version control? The XML interface. It still seems to me that a blend

Re: [Zope-dev] FTP interface being worked on?

2001-03-27 Thread Christian Scholz
Hi! By the way -- is it me, or is the current Import/Export interface broken? I tried to select multiple objects to export, but I can only get the first one to actually be exported. It's not just you.. but never thought about whether this might be a bug ;-) -- christian -- COM.lounge

Re: [Zope-dev] LoginManager question

2001-03-27 Thread Phillip J. Eby
At 12:19 PM 3/27/01 +0200, Bertrand Croq wrote: Hi, I am currently using LoginManager to authenticate users from a MySQL database. I followed the tutorials and it works quite well; but there are other data associated with users in the database that I would like to use in Zope. I have found a

[Zope-dev] ANN: Zope Page Templates 1.0.0 beta 1

2001-03-27 Thread Evan Simpson
The first beta release of ZPT is ready! Come read about them at http://dev.zope.org/Wikis/DevSite/Projects/ZPT, and download from http://www.zope.org/Members/4am/ZPT. These should be especially interesting for teams of Zope developersin whichthe programming and page/site design tasks are

Re: [Zope-dev] FTP interface being worked on?

2001-03-27 Thread Karl Anderson
"Chris McDonough" [EMAIL PROTECTED] writes: Are you thinking that we would build client-side tools to recognize an XML representation of a subpart of a site? Client-side tools, no. I'm thinking that exporting to XML would allow existing tools to recognize and manipulate a subpart

[Zope-dev] ZPatterns, DataSkins, forms and error checking/handling

2001-03-27 Thread Itai Tavor
Hi, I'm trying to work out the best way to check for and report errors when DataSkin objects are created/edited, but I'm having a lot of problems. For form validation, Zope's build-in constraints are pretty useless... things like ValueHandler are a little better, but IMO not good enough.