Re: [Zope-dev] Lists of Objects

2000-10-19 Thread Ender
please don't post html to this zope mailing lists, many people aren't using html email readers > Jack Fitzgerald wrote: > > Hello, > I am currently keeping a list of objects sorted in a particular > object. I am wondering if > anyone has an opinion about whether I should keep just the 'id' in

Re: [Zope-dev] Object references from dtml

2000-10-20 Thread Ender
Ross Boylan wrote: > > I have a log composed of sublogs, and so on. I would like for people to be > able to see some kind of summary (e.g., short versions of the logs down n > levels) on the screen and then click on one of interest and see a fuller > display of it. > > Is there a good way to do

Re: [Zope-dev] Excluding meta_types

2000-10-22 Thread Ender
you can redefine the meta_types tuple like so meta_types=({'name':'MessageFilter', 'action':'manage_addMessageFilter'},) btw how is GUM going? kapil "Morten W. Petersen" wrote: > > When I'm building a class which inherits from the OFS.Folder.Folder, how > do I exlude the meta_types it bring

Re: [Zope-dev] Unit testing, ZUnit

2000-10-23 Thread Ender
>What do people think of this? you get my vote kapil ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-a

Re: [Zope-dev] Adding ZCatalog capability for a (Python) product, and using it.

2000-10-23 Thread Ender
"Morten W. Petersen" wrote: > > Is there any documentation that explains this? Or, maybe some > *understandable* and *well-written* product? i found using a zcatalog with composition fairly straight forward. i like to recommend a product that i wrote:), but sadly the code on a whole is a mess,

Re: [Zope-dev] Migrating from ZClasses to Python Products

2000-10-24 Thread Ender
Jason Spisak wrote: > > The only problem I am dealing with is size. > What kind of a transaction will that be? > Huge, no doubt. > > I would run out of space to buffer it. Does Zope do subtransactions now, > or is that still just the ZCatalog? zope has done subtransactions for a while, i'm not

Re: [Zope-dev] 2 Zopes

2000-10-25 Thread Ender
Andre Schubert wrote: > > Hi, > > Can anyone tell me a way to get Zope Objects from the first > Zope-Installation to the second. > I need this because i have to program a Product to putting data into > different Zope Installations from one point of the Web. > My boss want this way because he wan

Re: [Zope-dev] strange FTP bug

2000-11-16 Thread Ender
Robin Becker wrote: > > I'm using python's ftplib to automate transfer of my dtml methods back > and forth into my ZClasses > > I seem to be unable to GET a method called 'filtered_meta_types' > from > > /Control_Panel/Procucts/myProduct/myZClass/propertysheets/methods > > I get instead a perm

Re: [Zope-dev] Conflict Errors

2000-11-22 Thread Ender
Chris Withers wrote: > i'm no expert but deeply nested data structures in a single object are rife with possibilities for conflict errors. if data might be changing concurrently in the structures or frequently changing you would be better off to switch the structure to nested persistent objects.

Re: [Zope-dev] SQL-Methods Through-the-FileSystem

2000-11-26 Thread Ender
Johan Carlsson wrote: > > > Seb: > > > Does anybody have a good suggestion how to > > > develope SQL Method ftfs (through the filesystem) > > > rather than ttw. > > > > > > Perferably in someway similare to the HTMLFile way > > > > try something like this: > > > > from Products.ZSQLMethods.SQL

[Zope-dev] Questions

2000-11-26 Thread Ender
A night of zopin' left with me some questions... what is a jar (_p_jar) ? does zope restrict you from doing metaprogramming with python products? or does zope's own metaprogramming reserve some names __klass__, etc? in Transaction.py i see the surrogate defining methods for __inform_commit__ a

Re: [Zope-dev] Questions, Jar, Transactions, Metaclassess, ZPatterns

2000-11-27 Thread Ender
sorry for the poorly worded question (midnight madness), let me try and restate them a bit better in the fond hope that someone will answer any of them. whats is a jar? as far as i know its just the data representation of the object that gets stored in the zodb, hence its directly related to the

Re: [Zope-dev] objectValues performance

2000-11-27 Thread Ender
Brett Carter wrote: > > I have a folder with greater than 5000 ZClass instances in it. It > takes > 5mins to do an objectValues for every object in the folder - > is there a higher perfomance call I could make? > -Brett use a catalog. (which only help if you want a filtered set or a schema attr

Re: [Zope-dev] objectValues performance

2000-11-28 Thread Ender
Casey Duncan wrote: > > Brett Carter wrote: > > > Ok, I'll bite. Why doesn't the standard folder scale? Seems like a > > design flaw to me - why doesn't the default folder use catalogs or BTrees? > > -Brett i believe folders store objects as attrs which implies using a hash in __dict__ for lo

Re: [Zope-dev] OracleStorage, and possibly others

2000-11-28 Thread Ender
Lalo Martins wrote: > > Well, two betas of OracleStorage in one day, then a month and a > half of silence. What's the status? > > What about the other Storage projects? BerkeleyStorage has been > dead for an year, and I heard pretty nasty words about > InterbaseStorage. What about someone who wa

Re: [Zope-dev] time stamp - concurrent editing

2000-11-30 Thread Ender
"Nai A. Tzeo" wrote: > > Hello, > > I'm a zope newbie and was wondering if anyone on the list know how to solve > the problem of concurrent editing. I'm using zope as a front end and SQL > server as a back end. Basically, I want to be able to edit a record with > out having to lock the record

Re: [Zope-dev] Massive scalability

2001-01-17 Thread ender
On Tuesday 16 January 2001 20:42, Michael Bernstein wrote: > Are you saying that Zope's startup and shutdown time is > affected by the size of the ZODB? AFAIK on a filestorage zope loads up the indexes (oid, file_offset?) into memory on start to facilitate object retrieval which impacts start u

[Zope-dev] mounting obj to more than one zodb location

2001-01-17 Thread ender
whats happens when you create a persistent object and mount it to multiple points on your zodb. do you get a shared ref or multiple copies of the object? kapil ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-de

Re: [Zope-dev] DTML block parsing

2001-01-22 Thread ender
On Monday 22 January 2001 08:54, Casey Duncan wrote: > I am working on a custom DTML tag (that I may unleash on the world when > finished) that has brought to my attention an interesting feature of the > DTML parser: > > It preparses everything in the block(s) between the start and end tags > befo

[Zope-dev] Annouce Developer Version DTML-Page-Contract

2001-01-22 Thread ender
hello zen masters i just finished documenting a developer version of a port of the ACS's (arsdigita community system) acs_page_contract to dtml. test it out, i'm pretty sure everyone will be happy with the simplification of the resulting dtml. feed back and thoughts welcome. if no bugs are

[Zope-dev] Re: [medusa] Re: [Zope-dev] asynchat producer ready() method patch.

2001-01-31 Thread ender
On Wednesday 31 January 2001 04:18, Donovan Baarda wrote: > On Mon, Jan 29, 2001 at 07:26:56PM +0100, Dieter Maurer wrote: > > Donovan Baarda writes: > > > On Sun, Jan 28, 2001 at 09:31:07PM +0100, Dieter Maurer wrote: > > > > Donovan Baarda writes: > > > > > I remember reading ages ago on a w

Re: [Zope-dev] Creating IMAP and SMTP services for Zope

2001-02-03 Thread ender
On Saturday 03 February 2001 10:28, Morten W. Petersen wrote: > Hi guys, > > I'm wondering about creating IMAP and SMTP services for Zope. > Someone mentioned to me that extending (using?) the ZServer > could be a Good Thing (tm). probably. i've always been curious though about the threads in z

Re: [Zope-dev] The field converters (:int, :text, etc.)

2001-02-06 Thread ender
my alpha quality dtml-contract tag does allows custom field converters much as has been requested here, its meant as a generic form processing engine with the ability to define per variable error pages. its got some other features. its modeled on the arsdigita (acs) ad_page_contract. due to my

Re: [Zope-dev] SAP DB <--> ZODB ?

2001-03-10 Thread ender
On Friday 09 March 2001 07:20, Steve Alexander wrote: >>I just heard that the SAP DB has gone Free and Open Source. sapdb isn't open source yet. it will be in a few months. when it does it looks like it will instantly become the most advanced open source database out there. my current rankings

Re: [Zope-dev] DBObjects 1.0 and Demos for Proiektor & ZQuest released

2001-04-05 Thread ender
hi, this seems pretty cool, and i'd like to thank stephen and iuveno for releasing it, but the release seems pretty half-baked. the website 1. dbobjects demo is not existent 2. the documentation for projektor is password protected 3. there are no downloads apparent for anything but dbobjects

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

2001-04-06 Thread ender
On Tuesday 27 March 2001 17:40, Itai Tavor wrote: >>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

Re: [Zope-dev] memory leak

2001-04-11 Thread ender
On Wednesday 11 April 2001 03:34, Marco Nova wrote: >>> This looks like a potential bug in either ParsedXML or the >>> code you're using >>> to manipulate the components within ParsedXML. >>> >>I can send you the code for the two external method I use, they only need a >>webserver (that could

Re: [Zope-dev] **Important Notice** for Zope public CVS users

2001-04-12 Thread ender
On Thursday 12 April 2001 12:46, Brian Lloyd wrote: >>We are soon going to begin checking in changes to the head of >>the Zope CVS that will require the use of Python 2.1. Once we >>start on the 2.4 tasks, you will not be able to use a public >>CVS checkout of Zope with older Pythons. >> >>We are

Re: [Zope-dev] Re: [Zope] **Important Notice** for Zope public CVS users

2001-04-13 Thread ender
On Friday 13 April 2001 02:22, Oleg Broytmann wrote: >>Hi! >> >>On Thu, 12 Apr 2001, Brian Lloyd wrote: >>> We are soon going to begin checking in changes to the head of >>> the Zope CVS that will require the use of Python 2.1. Once we >>> start on the 2.4 tasks, you will not be able to use a publ

Re: [Zope-dev] Experiments with ORMapping

2001-05-14 Thread ender
Hello, i want to thank DC (jim, shane, and paul) for inviting me to come to the new DC offices. i had a great time and learned a bunch... and met the BFDL. i gave a quick overview of the smartobjects design/framework and jim and shane presented some ideas for an or mapping for the zodb. to

Re: [Zope-dev] Request for a Pluggin Index (NameIndex)

2001-06-06 Thread ender
On Monday 04 June 2001 16:55, Andreas Jung wrote: >>Looks like you should write your own index type. Zope 2.4 >>comes with an PlugableIndex interface to allow third-party >>indexes to be integrated into the Catalog. this brings up an interesting question of what is the best way to register a new

Re: [Zope-dev] Re: [Zope-dev]ZPL and GPL licensing issues

2001-06-25 Thread ender
On Saturday 23 June 2001 11:20, Erik Enge wrote: >>[Simon Michael] >> >>| Now you're talking. Seconded. >> >>Me too! i'd very much like to see a GPL compatible zope license as well, both for products i create and to integrate with third party gpl products. would a petition be useful? kapil