[Zope-dev] Re: Probably ZopeFind Bug (was: Re: [Zope] all DTML Methods of current folder and subfolder)

2000-07-25 Thread Dieter Maurer
Dieter Maurer writes: > Jerome Alet writes: > > Thanks to you, the syntax you gave me is accepted by the dtml parser, but > > both > > > > > obj_expr='''not objectValues(['Folder'])''', > > search_sub=1)"> > > > > and > > > > > obj_expr='no

[Zope-dev] ZODB on MacOS?

2000-07-25 Thread Tom Loredo
Hi folks- I am aware that Zope as a whole cannot be compiled on the Mac. But does anyone know the situation for the components used by ZODB alone? I have heard that threading was the main obstacle to a Mac compile of Zope. Does ZODB use threading? I have experience building NumPy C extensions

[Zope-dev] Problem by summarising of database query

2000-07-25 Thread Bruno Nana
> Hi, > > I have one problem with a Zmethod. > > Here is the method: > > select *,summe=sum(count(*)) > from neuigkeiten > where > ( > username like '%%' or > autorloginname like '%%' or > headline like '%%' or > textfeld like '%%') > order by headline > > That is i want to select some data fro

[Zope-dev] New Border Aware Image, updated info on alternate syntax.

2000-07-25 Thread Jon Franz
The Border Aware Image add-on has been updated for Zope 2.2.0 - installation has been heavily updated and is now much easier. see: http://www.zope.org/Members/Coventry/Border_aware_image Also, the alternate syntax patch/add-on has been tested with Zope 2.2.0 now, and no changes were needed.

RE: [Zope-dev] PATCH: Expanded "access" file

2000-07-25 Thread Phillip J. Eby
At 10:54 AM 7/25/00 -0400, Brian Lloyd wrote: > >I think that this is _definitely_ the kind of thing that >should be done in the fishbowl on dev.zope.org. It's there now. See: http://dev.zope.org/Wikis/DevSite/Proposals/UserProgrammableSecurityObjects It covers in full, I think, the issues t

RE: [Zope-dev] PATCH: Expanded "access" file

2000-07-25 Thread Phillip J. Eby
At 10:54 AM 7/25/00 -0400, Brian Lloyd wrote: > >I think that this is _definitely_ the kind of thing that >should be done in the fishbowl on dev.zope.org. Why? Because >while it may be a "minor patch" in terms of lines of code, just >applying the patch causes a number of problems that have noth

RE: [Zope-dev] Wiki apps other than ZWiki 0.6.1

2000-07-25 Thread Brian Lloyd
> I've been happily adding ManagedMode functionality to ZWiki > 0.6.1 but wonder > what other Wiki-on/in-Zope technologies there are that I > should consider > working with. I'm looking for cataloging, graphics upload, > differencing, > rename and delete and don't really want to have to work on

[Zope-dev] ZODB....

2000-07-25 Thread jdiebold
Hi, I want to develop an external program that can store and retrieve an Object (such as a Person) in the ZoDB I tried the example that I found in the How to's but it doesn't works In fact, I have the following message : ZODB.FileStorage(file) attribute Error : FileStorage -->Bu

[Zope-dev] Oracle as ZODB replacement ?

2000-07-25 Thread Francisco Assis Rosa
Hi there, I am looking at Zope and have read about the possibility of using any other database instead of ZODB. I was particulary interested to know if there is any implementation to allow replacing ZODB by Oracle. Do you know of any such implementation ? Thanks, Francisco. -- Francisco Assis

RE: [Zope-dev] Problem

2000-07-25 Thread Chris McDonough
Anvita, It's possible you could reuse these components via COM using Mark Hammond's COM stuff for python... this isn't really Zope-specific. See http://www.python.org/windows/win32com/ for more information. -Original Message- From: Anvita [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July

RE: [Zope-dev] PATCH: Expanded "access" file

2000-07-25 Thread Brian Lloyd
> >>Hm. I don't think this could be classed as a "minor" > change, however, > >>since it has impact on ownership, for example. What's the > path of the user > >>folder which is above "/", for example? The whole thing is > useless if > >>these extra users can't be owners, and the ownership >

[Zope-dev] How can Catalog index all parts/words of a attribute

2000-07-25 Thread Thomas Weholt
Hi, I try to use Catalog with a object stored in ZODB3. I need to match single words in attributes in what might be a long string with several words in it. I've tried to set "self.cat.addIndex('name' ,'TextIndex' )" which is supposed to be full text searching at least said to be in the Zope-pages

RE: [Zope-dev] Stuff hanging off user not in cookies

2000-07-25 Thread Brian Lloyd
> Is there are reason why configuration info for the user > doesn't hang off > the user object and is instead stored in cookies? > > I'm thinking of the dimensions/etc of the edit boxes and the > like. I do > a lot of work through virtual domains and it's a real pain having to > resize that edi

[Zope-dev] Stuff hanging off user not in cookies

2000-07-25 Thread Chris Withers
Hi, small rant (no change there for me ;-) Is there are reason why configuration info for the user doesn't hang off the user object and is instead stored in cookies? I'm thinking of the dimensions/etc of the edit boxes and the like. I do a lot of work through virtual domains and it's a real pai

[Zope-dev] ZCatalog and ZEO

2000-07-25 Thread Johan Carlsson
I have started to use ZCatalog for a great deal of thing, but I'm a little bit conserned about scalability. If I whan to move my applications to a ZEO configuration how will my ZCatalogs be distributed. I use ZCatalogs alote and they may become quite large, so what will happen when a ZCatalog is

[Zope-dev] Nameconflict 'Property' and Object in Folder

2000-07-25 Thread Martin Grönemeyer
Hi all, has there some discussions about a name conflict, if I start to add an object to a folder with an object-id wich is also a Property of the folder ? In the method _checkId of the ObjectManager e.g. the folder is checked with hasatrr(this,id). And this is true if there exists a property wi

Re: [Zope-dev] Use ZODB3 and ZCatalog for indexing purposes

2000-07-25 Thread Shane Hathaway
Thomas Weholt wrote: > > Hi, > > I'm wondering about using ZODB3 and ZCatalog for a CD-indexing project. The > actual cd-roms will seldom change after they've been registered, and I'd > like to have some sort of auto-full-text-search feature. > How does ZODB3 and ZCatalog fit in this picture? I'

Re: [Zope-dev] ZODB : store and retrieve (more specific)

2000-07-25 Thread Johan Carlsson
> Hi, > > > I want to create a persistent List (I want to store data for a long time > without using a relational database). I have found source of such list but > I don't know how to use it. > > The things that I want to know are : > --> how could I use personnal object (in Python langu

Re: [Zope-dev] Now; - problems using ZODB/ZCatalog in Python

2000-07-25 Thread Shane Hathaway
Thomas Weholt wrote: > > First off, sorry for posting a huge, stinkin' post like this, but instead of > posting ten times trying to explain what I do, I post this once and hope > somebody can point out what's wrong and I'll leave you all alone, at least > for a while. Let me cut out some of the

RE: [Zope-dev] Now; - problems using ZODB/ZCatalog in Python

2000-07-25 Thread Jens Vagelpohl
thomas, this error message is raised when the zope instance that contains the ZODB you're trying to work with is already running (and thereby put its own lock on the ZODB). are you trying to execute this script while zope is running? you need to shut it down first. jens > -Original Message

RE: [Zope-dev] Use ZODB3 and ZCatalog for indexing purposes

2000-07-25 Thread Jens Vagelpohl
thomas, putting together a zope python product to represent a CD isn't hard at all. if you go the product route you'll be able to index and search across all attributes of the CD object using ZCatalog. check out the "boring product" at http://www.zope.org/Members/gtk/Boring/HowTo-Boring, it is a

[Zope-dev] Now; - problems using ZODB/ZCatalog in Python

2000-07-25 Thread Thomas Weholt
First off, sorry for posting a huge, stinkin' post like this, but instead of posting ten times trying to explain what I do, I post this once and hope somebody can point out what's wrong and I'll leave you all alone, at least for a while. The example is from the Catalog outside Zope-tutorial avai

Re: [Zope-dev] PATCH: Expanded "access" file

2000-07-25 Thread Toby Dickenson
On Sat, 22 Jul 2000 20:48:28 -0500, "Phillip J. Eby" <[EMAIL PROTECTED]> wrote: >At 01:27 PM 7/19/00 -0500, Phillip J. Eby wrote: > >>Hm. I don't think this could be classed as a "minor" change, however, >>since it has impact on ownership, for example. What's the path of the user >>folder which

[Zope-dev] Memebrship User management

2000-07-25 Thread Bill Anderson
OK, so I have been working on a set of user management methods for Membership by ta. I have it where I can see a list of users, and their roles. now, what I need is a way to modify Roles. So, looking into the source, I see that roles exists (as currently implemented) as __roles. This means t

Re: [Zope-dev] Use ZODB3 and ZCatalog for indexing purposes

2000-07-25 Thread Itamar Shtull-Trauring
Phil Harris wrote: > Have you seen the Zope on CDROM howto? > > Try searching on zope.org (when it's back up that is) for it. I don't think it's relevant actually. WHat you do want is Jim Fulton's talk about ZODB from IPC8 - search zope.org for that. -- Itamar S.T. [EMAIL PROTECTED] Fingerp

Re: [Zope-dev] Use ZODB3 and ZCatalog for indexing purposes

2000-07-25 Thread Phil Harris
Thomas, Have you seen the Zope on CDROM howto? Try searching on zope.org (when it's back up that is) for it. hth Phil - Original Message - From: "Thomas Weholt" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 25, 2000 10:27 AM Subject: [Zope-dev] Use ZODB3 and ZCatalog

[Zope-dev] Use ZODB3 and ZCatalog for indexing purposes

2000-07-25 Thread Thomas Weholt
Hi, I'm wondering about using ZODB3 and ZCatalog for a CD-indexing project. The actual cd-roms will seldom change after they've been registered, and I'd like to have some sort of auto-full-text-search feature. How does ZODB3 and ZCatalog fit in this picture? I'm NOT making a Zope-product yet, jus

[Zope-dev] Standard Error Messages (was Re: [Zope-dev] Incorrect Padding?)

2000-07-25 Thread Chris Withers
Steve Alexander wrote: > > > ! raise 'InternalError', request.response._error_html( Can someone enlighten me as to what this does? Does it reset the HTTP response code? Is _error_html something that gets the acquired standard_error_message? If not, it should do ;-) Has anyone made

[Zope-dev] (no subject)

2000-07-25 Thread Bruno Nana
Hi, I have one problem with a Zmethod. Here is the method: select *,summe=sum(count(*)) from neuigkeiten where ( username like '%%' or autorloginname like '%%' or headline like '%%' or textfeld like '%%') order by headline That is i want to select some data from database and save the number of

[Zope-dev] ZODB : store and retrieve (more specific)

2000-07-25 Thread jdiebold
Hi, I want to create a persistent List (I want to store data for a long time without using a relational database). I have found source of such list but I don't know how to use it. The things that I want to know are : --> how could I use personnal object (in Python language) --> how could I