[Zope-dev] ZPatterns bug: no help subdirectory in PlugIns

2000-10-19 Thread Steve Alexander
PlugIns-0-4-3b1 (part of the latest ZPatterns release). __init__.py fails because at line 8 context.registerHelp() fails, as there is no "help" subdirectory in the PlugIns product folder. I guess this is an empty directory that got missed off when the whole thing was tarred up. A simple fix is

[Zope-dev] Reversing symlink namespaces ???

2000-10-19 Thread Phil Harris
Shane/All, Anybody using the symlink product? It seems to me it uses namespaces in the wrong order. Imagine the hierarchy below: Root Folder1 doc1 Folder2 symlink1 Now let's assume that Folder1 has a property 'copyright', and also that Folder2 has a property of the sam

[Zope-dev] Can't add object

2000-10-19 Thread Morten W. Petersen
I'm developing ZopeGUM (http://www.zope.org/Members/morphex/ZopeGUM), and I have a small problem: Adding a NewsMessageIndicator within a NewsGroupFolder doesn't work. When adding a NewsMessageIndicator, the first time around it just halts after pressing the 'Add' button; the second time it takes

Re: [Zope-dev] Reversing symlink namespaces ???

2000-10-19 Thread Shane Hathaway
Phil Harris wrote: > > Shane/All, > > Anybody using the symlink product? > > It seems to me it uses namespaces in the wrong order. Imagine the hierarchy > below: > > Root > Folder1 > doc1 > Folder2 > symlink1 > > Now let's assume that Folder1 has a property 'copyright

[Zope-dev] WriteLocking Project Initialized

2000-10-19 Thread Jeffrey P Shell
WriteLocking became a full fledged Fishbowl Project this week, and I've been spending the past couple of days getting the initial Artifacts and structure of the Project site together. The current structure should stand through e

[Zope-dev] Lists of Objects

2000-10-19 Thread Jack Fitzgerald
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 this list or if it is ok to actually keep a reference to the object in the list. When I use the list at a later point in time I

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

[Zope-dev] Problems with offline MS IE 5

2000-10-19 Thread Ross Boylan
I recently tried doing some Zope development on a laptop and ran into a problem: when I updated a product the updates did not "take." In particular, when I edited the text in a .dtml file and restarted Zope, I still saw the old text when I got to the appropriate point (the file was wrapped i

[Zope-dev] Object references from dtml

2000-10-19 Thread Ross Boylan
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 this using dtml? I've thought

Re: [Zope-dev] Inheritable Propertysheets!???!!?!?!?!!

2000-10-19 Thread Alexander Schonfeld
Thanks, that does seem to do the trick. :) Much appreciation!! I added a propertysheets like this: ParentClass.Propertysheet.defaultProps.someprop ChildClass1.Propertyshoot.props.someprop ChildClass2.Propertyshoot.props.someprop (to override the parent's default when needed) It sees the Ch