Re: [Zope-dev] Linux Zope <-> Win2K SQL Server?

2000-12-14 Thread Philipp Auersperg
Does it also work with SQL Server 7.0? thanks phil *** REPLY SEPARATOR *** On 08.12.2000 at 10:10 Anthony Baxter wrote: >Use the Sybase client libraries, with ZSybaseDA. We do that here, and >it works fine (but not for much longer, byebye sqlserver...) > >Or FreeTDS, but I don

[Zope-dev] ZPatterns: General Design Question

2000-12-14 Thread Roch'e Compaan
As part of a Customer Relationship Management system our company is developing, we have a Licenses specialist which manages product licenses. All license objects do not have the same attributes however. The various attributes relating to different licence types are not known attributes from the o

Re: [Zope-dev] python 2.0, windows and zope

2000-12-14 Thread Toby Dickenson
On Wed, 13 Dec 2000 11:33:12 -0800, "Andy McKay" <[EMAIL PROTECTED]> wrote: >I think thats just the fella I need! Thanks... >Will let you know progress The current CVS of Zope, as of yesterday, includes some tricks to use a different Setup file between 1.5.2 and 2.0... the essential differen

Re: [Zope-dev] ZPatterns: persistant objects hold DataSkin-Items -> KeyError: _v_dm_

2000-12-14 Thread Ulrich Eck
> > >I'm searching for something that handles a newItem(,key) function > >that is provided > >from the FwCS who decides which object-type is created and gets those > >attributes from the customizer > > Just use the normal Zope "add list" to create one manually, or call the > appropriate constructo

Re: [Zope-dev] ZPatterns: persistant objects hold DataSkin-Items -> KeyError: _v_dm_

2000-12-14 Thread Phillip J. Eby
At 02:49 PM 12/14/00 +0100, Ulrich Eck wrote: > >after a while I think I got it now. > >I use a FcWS as a Folder like usual in Zope and if i create an object >of a type which is "customized" certain attributes will be set through >the customizer. Yes. >so for a database app that handles multip

Re: [Zope-dev] ZPatterns: General Design Question

2000-12-14 Thread Phillip J. Eby
At 02:42 PM 12/14/00 +0200, Roch'e Compaan wrote: >As part of a Customer Relationship Management system our company is >developing, we have a Licenses specialist which manages product licenses. >All license objects do not have the same attributes however. The various >attributes relating to diffe

Re: [Zope-dev] [ZPatterns] DataSkin object ownership

2000-12-14 Thread Ty Sarna
In article <[EMAIL PROTECTED]>, Phillip J. Eby <[EMAIL PROTECTED]> wrote: > At 08:04 PM 12/12/00 -0500, BS wrote: > >Do DataSkins have ownership? I want to give multiple users the ability to > >add objects to a rack and only allow the 'owner' to view/edit the object. > > DataSkins stored in Racks

[Zope-dev] Catalog class--does it support boolean queries?

2000-12-14 Thread Marc Conley
I am working on a project which requires the use of the Catalog class (versus ZCatalog) for indexing and querying. I have basic full text indexing and querying working correctly but boolean queries seem not to work. Should boolean queries work using Catalog or is it necessary to use ZCatalog in

Re: [Zope-dev] ZPatterns: persistant objects hold DataSkin-Items -> KeyError: _v_dm_

2000-12-14 Thread Ulrich Eck
hi Philip ... > >so for a database app that handles multiple tables > >it isnt useful to handle with a FwCS. > > Um, not necessarily. You can create regular Folders under the FwCS if you > want to keep them seperate. You can even use BTreeFolders or other > ObjectManagers, if you like. All tha

Re: [Zope-dev] ZClass registry repair utility

2000-12-14 Thread Shane Hathaway
Shane Hathaway wrote: > > I've written a utility you can use to clean up the global registry of > ZClasses. The registry can become corrupt through product upgrades--not > ZODB corruption, but missing base classes and so forth. This utility > recreates the registry. > > http://www.zope.org/Mem

Re: [Zope-dev] Catalog class--does it support boolean queries?

2000-12-14 Thread Casey Duncan
Marc Conley wrote: > > I am working on a project which requires the use of the Catalog class > (versus ZCatalog) for > indexing and querying. I have basic full text indexing and querying working > correctly but > boolean queries seem not to work. Should boolean queries work using Catalog > or is

Re: [Zope-dev] Catalog class--does it support boolean queries?

2000-12-14 Thread Dieter Maurer
Marc Conley writes: > > Should boolean queries work using Catalog > or is it > necessary to use ZCatalog instead to get that functionality? > ZCatalog is nothing more than a thin wrapper around Catalog (to make a Catalog a persistent object in ZODB). All search facilities of ZCatal

[Zope-dev] IE5 / Medusa bug?

2000-12-14 Thread seb bacon
Tempting fate by claiming a bug...but although I'm sure I'm at fault here, there's no sensible reason for the results I'm getting. When I view one of several different pages with IE5, the last 11 bytes don't reach the browser. I've got a couple of other people to try it out. One of them reporte

[Zope-dev] Core Session Tracking Development Release 0.1

2000-12-14 Thread Chris McDonough
Hi, A development release of the fruits of the "core session tracking" Fishbowl project (http://dev.zope.org/Wikis/DevSite/Projects/CoreSessionTracking/FrontPage) is available at http://www.zope.org/Members/mcdonc/Products/CoreSessionTracking. It allows you to keep state across requests for anon

[Zope-dev] Re: [Zope] IE5 / Medusa bug?

2000-12-14 Thread Evan Simpson
From: seb bacon <[EMAIL PROTECTED]> > I imagine the fact that I can make it work by adding index_html is the > most telling point, but it's not telling me anything ;) Leaving off index_html causes Zope to add a to the head. That's the only difference I can think of. Your page doesn't get cut s

[Zope-dev] ZPatterns, ZClasses, Specialists: Assigning responsibilities

2000-12-14 Thread Itai Tavor
I'm having problems deciding where certain methods should be implemented. In some cases it's easy - for example, objects manage themselves, Specialists manage collections, so editInstanceForm belongs in the ZClass, while listOpenOrders belongs in the Specialist. But here are some cases where i

[Zope-dev] Re: ZPatterns, ObjectDomain, UML and all that.....

2000-12-14 Thread Itai Tavor
There might be many ways to implement each connection, but I think that there will always be one or two ways that would be simplest and most robust... so this would not only save you the trouble of figuring it out alone every time, but would also prevent you from getting stuck down the road.

[Zope-dev] keyword indexes

2000-12-14 Thread Josh Zeidner
Hi, Currently I am wrestling with "keyword" indexes in ZCatalogs. How do I query the ZCatalog for all records of objects indexed on a particular keyword. For instance if my index is named MediaKeyword ive tried: this has completely unpredictable results. this returns all indexed

[Zope-dev] Preliminary test of Membership on CVS

2000-12-14 Thread Bill Anderson
Just thought I'd give a quick notice regarding Membership. I am trying it out on 2.3 (getting in early :). So far, the only problem lies in LoginManager. With LoginManager, the problem is that it tries to import "Super". in 2.3, Super is gone. It seems to be replaced by UnrestrictedUser. By doin

[Zope-dev] more on keyword indexes

2000-12-14 Thread Josh Zeidner
Hello, I did a little more investigiation into the problem, and couldnt really find any documentation anywhere on what the actual semantics are of keywords and how they are queried. For instance: I have three classes and each has an keyword index named KW: ObjectOne:KW = ['one','blue

RE: [Zope-dev] ZPatterns: General Design Question

2000-12-14 Thread Roch'e Compaan
>However, if your application needs to have end-user (as opposed to integrator-user) What is a integrator-user? > There is also an option "c", which would be to model > LicensePropertyDefinition and LicenseProperty objects in your > domain model. > This approach leads to a bit more work defining

[Zope-dev] A couple of possible Python Scripts bugs

2000-12-14 Thread Itai Tavor
First, when trying to add a Python Script, I sometimes get: Error Type: AttributeError Error Value: tx Traceback (innermost last): File /opt/Zope-2.2.2-linux2-x86/lib/python/ZPublisher/Publish.py, line 222, in publish_module File /opt/Zope-2.2.2-linux2-x86/lib/python/ZPubl

[Zope-dev] urllib not available in Python Scripts?

2000-12-14 Thread Itai Tavor
Hi, sorry for the recent barrage of posts... In Python Methods I could do urllib.quote(...). This doesn't work in Python Scripts. Is quote considered a security risk? Itai -- Itai Tavor"Je sautille, donc je suis." C3Works[EMAIL PROTECTED] - Kermit the Frog

[Zope-dev] Re: [Zope] IE5 / Medusa bug?

2000-12-14 Thread Jerome Alet
On Thu, 14 Dec 2000, Evan Simpson wrote: > From: seb bacon <[EMAIL PROTECTED]> > > I imagine the fact that I can make it work by adding index_html is the > > most telling point, but it's not telling me anything ;) > > Leaving off index_html causes Zope to add a to the head. That's WHOW ! is