[Zope-dev] Putting a list of objects into the current namespace (or something)

2002-03-12 Thread Max M
idea is either to subclass ObjectManager and overwrite __getitem__(), or to find a way to push my objectlist onto the request object. Any better ideas? Pointers to code that does something similar? regards Max M ___ Zope-Dev maillist - [EMAIL

Re: [Zope-dev] Putting a list of objects into the current namespace (or something)

2002-03-12 Thread Max M
was in the Transparent Folder product. regards Max M ___ 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-announce

Re: [Zope-dev] Modifying a menu

2002-03-14 Thread Max M
and overwrite all_meta_types(). This functions returns a list of tuples, telling which objects to be added to the add * selectbox. But it WILL bite you later. For further info google for meta_types and all_meta_types regards Max M ___ Zope-Dev

Re: [Zope-dev] Restricting Sub-Objects in Folders DYNAMICALLY?

2002-03-16 Thread Max M
result You can probably modify it to your needs. regards Max M ___ 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

Re: [Zope-dev] Changes to ZCatalog

2002-06-13 Thread Max M
, or is attached as comments in the cvs, or where do you guys keep each other up to date about changes taking place? regards Max M -- Sorry I would Really Like To Help More On This Project, But Am To Busy Doing Paid Work On A Tight Deadline Max M

Re: [Zope-dev] DTML and REQUEST data changes about to be checkedin

2002-08-13 Thread Max M
Jim Fulton wrote: The plan is to release 2.6 as soon as we can. We're really busy with a bunch of customer work and haven't had as much time to work on this as we'd like. Well actually this is more comforting than if you had a lot of time on your hands ;-) regards Max M -- Sorry I

Re: [Zope-dev] Relations

2002-09-02 Thread Max M
to an object, or you could use the mxmRelations product. regards Max M Skeptic Effect or the Randi Effect When a skeptic is near, supernatural effects seem to disappear. ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman

Re: [Zope-dev] Relations

2002-09-02 Thread Max M
the get-go. Hav en god dag! regards Max M evolve ___ 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

Re: [Zope-dev] Future of StructuredText

2002-09-04 Thread Max M
format=rest ??? Then we could use both interchangably. regards Max M Skeptic Effect or the Randi Effect When a skeptic is near, supernatural effects seem to disappear. evolve ___ Zope-Dev maillist - [EMAIL PROTECTED

Re: [Zope-dev] Future of StructuredText

2002-09-05 Thread Max M
of text. Max... And the advantage is that REST has a syntax that is much closer to what ordinary users expect. In userland indentation is actually a hard problem. regards Max M Skeptic Effect or the Randi Effect When a skeptic is near, supernatural effects seem to disappear

Re: [Zope-dev] Speaking of Structured Annoyances

2002-09-05 Thread Max M
? regards Max M Skeptic Effect or the Randi Effect When a skeptic is near, supernatural effects seem to disappear. evolve ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev

Re: [Zope-dev] I/O Error

2002-09-09 Thread Max M
ideas what that can be? If you have started Zope without a terminal for it to output it's errors and alerts to, it can do that. On Linux you should start it with a nohup ./start -D ... etc. regards Max M evolve ___ Zope-Dev maillist

Re: [Zope-dev] Plone/Metadata/FUD

2002-10-03 Thread Max M
. An evolutionary dead-end so to speak. If Zope gets forced to go in one different direction, like CMF, it will quickly hit an evolutionary dead end. regards Max M -- The reason I don't reach any higher is that I stand on the shoulders of midgets

Re: [Zope-dev] Why is it _setObject(), and why is it undocumented

2003-02-01 Thread Max M
an object to an objectmanager, if you don't use _setObject() ?? Every time you make an object that subclasses ObjectManager, wich is often, you need to use that function. That can hardly be called private. -- hilsen/regards Max M Rasmussen, Denmark http://www.futureport.dk/ Fremtiden, videnskab

Re: [Zope-dev] product import question

2003-03-11 Thread Max M
not have been a problem. But I just import them and assign them like: mxmObjectManager.py import mxmSimpleItem manage_addForm = mxmSimpleItem.manage_addForm manage_addAction = mxmSimpleItem.manage_addAction Which is the right way to do it. regards Max

Re: [Zope-dev] How (in)secure is Zope?

2003-03-13 Thread Max M
Jamie Heilman wrote: In this sense Zope is again VERY secure. No it isn't. A statement like that without an argument is worthless in a discussion. You need to elaborate as we cannot read your mind and see what lies behind the statement. regards Max M

Re: [Zope-dev] Renaming a product

2003-06-17 Thread Max M
Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope )

[Zope-dev] Structured text img html tag not working properly in Zope 2.61

2003-11-12 Thread Max M
look for the problem? The most likely files I found was:: \lib\python\StructuredText\ClassicStructuredText.py \lib\python\StructuredText\DocumentWithImages.py But the problem could easily be elsewhere. regards Max M ___ Zope-Dev maillist

Re: [Zope-dev] Structured text img html tag not working properly

2003-11-12 Thread Max M
. And they have many many documents. I could write a converter, for converting it into the new image tag, but that would suck too. regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts

[Zope-dev] Bug? Handling of attribute names and default values in forms in 2.61 ??

2003-11-13 Thread Max M
): print teachers ['some/path', ''] Where I would expect: ['some/path'] Isn't that a new behaviour? And isn't it a bug? regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts

Re: [Zope-dev] Bug? Handling of attribute names and default values

2003-11-14 Thread Max M
, REQUEST=None): Code if not teachers: teachers = [] Which is a better way to do it anyway. But that still leaves the bug in the form handling of Zope. regards Max M [a href=editBack/a]br/br/ div class=primary_h1Undervisere tilknyttet uv

Re: [Zope-dev] How to make Zope fail nicely under high load?

2004-02-12 Thread Max M
a generated view and then replacing it vith a python generated board view. def re_cache(self) self.layout_cache = self.board_template(self, self.REQUEST) def index_html(self): board_view = self.generate_board_view() return self.layout_cache.replace('%%board_view%%', board_view) regards Max

Re: [Zope-dev] Custom class: cut,copy,rename?

2004-03-01 Thread Max M
, SimpleItem.SimpleItem, ObjectManager): This order works: class aSimpleItem( CatalogAware, PropertyManager, SimpleItem): class anObjectManager( ObjectManager, aSimpleItem): regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http

Re: [Zope-dev] Schizophrenic ObjectManager?

2004-03-04 Thread Max M
this, is bussiness as usual. regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org

Re: [Zope-dev] Order of Form Keys in REQUEST

2004-03-10 Thread Max M
after the form has been submitted. Dictionary keys are unordered. You need to store the order of the keys somewhere else. Ie. to have a list in your form with the keys in order, Or to name them alphabetically and then sort the keys. regards Max M

Re: [Zope-dev] Order of Form Keys in REQUEST

2004-03-10 Thread Max M
on the Zope list, not zope-dev. zope-dev is for subjects regarding the development of zope, while the zope list is for development with Zope. regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev

Re: [Zope-dev] How to create a product with all_meta_types and the

2004-03-12 Thread Max M
= title return obj -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http

Re: [Zope-dev] How to create a product with all_meta_types and the

2004-03-12 Thread Max M
Garito wrote: Hi Max I understand what you explain but what about if I install a new product? Rewrite the factory? I think is not a good solution don't you think? No, but I don't see any way around it. I could be wrong, though I don't think so. -- hilsen/regards Max M, Denmark http

Re: [Zope-dev] Proposal: Move to subversion for source code control of

2004-04-11 Thread Max M
Jim Fulton wrote: I propose to move from CVS to subversion for the Zope and ZODB projects; http://dev.zope.org/Zope3/MovingSCMToSubversion Not adding to the repository my voice should not carry much weight, but I absolutely love subversion here on Windows. -- hilsen/regards Max M, Denmark

[Zope-dev] Re: The bleak Future of Zope?!

2004-04-21 Thread Max M
. (That is why it is good for us consultants ;-) ) Maybe I'm simply sick of moving along within web browsers and the file system without a sensible IDE and documentation. That might be it ;-) regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http

[Zope-dev] Re: The bleak Future of Zope?

2004-04-21 Thread Max M
do you step up? To me it seems like you will get the ability to have endless comitee meetings about how it should work. Not the power to just change stuff. Even if it breaks sometimes. I have enough of that kind of work from my customers thank you ;-) regards Max M

[Zope-dev] Re: The bleak Future of Zope?

2004-04-21 Thread Max M
the releases. However, we are getting the first alpha out by the end of the month. Hopefully, by end of May we will have finished the X3.0 to-do list and will release the beta. At this point the API will freeze and application developers are encouraged to have look at it. Great. regards Max M

[Zope-dev] Re: The bleak Future of Zope?!

2004-04-22 Thread Max M
that part of the product development that takes the most time. After the setup I can then enjoy that I don't have to fight the constraints of a framework. regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo

[Zope-dev] Re: The bleak Future of Zope?

2004-04-22 Thread Max M
Tim Peters wrote: [Max M] Or perhaps an automated nightly Windows build. [Stephan Richter] We have talked about it many times before, but simply lack the bandwidth. Maybe you could provide this for Cygwin? [Max M] Argh ... that wasn't fair. Ok I will try and find some time to look

[Zope-dev] Re: The bleak Future of Zope?

2004-04-24 Thread Max M
using it seriously. regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org

[Zope-dev] Re: Nightly Zope 3 Binary Compiles for WIndows

2004-04-24 Thread Max M
and running either. I actually like writing technical documentation. Go figure. regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http

[Zope-dev] Re: Nightly Zope 3 Binary Compiles for WIndows

2004-04-24 Thread Max M
this Zope 3 thing, and get a feel for how it develops. regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope

[Zope-dev] Re: The bleak Future of Zope?

2004-04-25 Thread Max M
they got the right solution for making it possible to do distributed development of products that can still work together. regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML

Re: Should we require windows users to use tools that honor Unix line endings? (Re: [Zope-dev] Re: [Zope3-dev] ATTENTION! cvs to subversion transitiontomorrow)

2004-04-28 Thread Max M
convert dos files to unix. regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http

[Zope-dev] Re: Demonstration subversion repository created

2004-04-28 Thread Max M
problem? regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman

[Zope-dev] Re: Demonstration subversion repository created

2004-04-28 Thread Max M
, gennemsnitlig = 102ms regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http

[Zope-dev] Re: Demonstration subversion repository created

2004-04-28 Thread Max M
Max M wrote: Now it's back up. And it works fine. Text files are in Unix format. As expected. regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related

[Zope-dev] How To run current Zope 2 3 from CVS on Windows

2004-05-03 Thread Max M
As I said, I would write a How-To in getting Zope 3 up and running on Windows, given the binaries that Tim has made. http://www.mxm.dk/papers/run-z3-cvs-wthout-compiler/ Feel free to comment. regards Max M ___ Zope-Dev maillist - [EMAIL PROTECTED

[Zope-dev] Re: [ZODB-Dev] Re: BTrees strangeness (was Zope 2.X BIG Session problems - blocker - our site dies - need help of experience Zope developer, please)

2004-05-18 Thread Max M
Plone 2.0 and Zope 2.7 I had the same kind of problem. But when I restarted the browser it would be solved. That could point in the direction of a session id being somehow involved. -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science

[Zope-dev] Re: CatalogBrains since Zope2.7.1b1

2004-06-23 Thread Max M
. Either reindex the catalog, or take the None's into account in your code. The latter is the safest approach. -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman

[Zope-dev] Re: ZCatalog getObject broken

2005-03-03 Thread Max M
... that is odd. -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman

[Zope-dev] Re: Problems with non-zope object attribute access

2005-03-11 Thread Max M
AccessWrapper: __allow_access_to_unprotected_subobjects = 1 def __init__(self, obj): self._obj = obj def __getattr__(self, attr): return getattr(self._obj) -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science

[Zope-dev] Re: Problems with non-zope object attribute access

2005-03-11 Thread Max M
work, the ImplicitAcquisitionWrapper most likely sets it to something else. have you tried changing the order? w = Acquisition.ImplicitAcquisitionWrapper(o, self) w.__allow_access_to_unprotected_subobjects = 1 return w -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad

[Zope-dev] Re: ZCatalog getObject broken

2005-03-11 Thread Max M
the public method and use the objects overall visibility? -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding

[Zope-dev] Re: brain.getObject and traversal

2005-03-31 Thread Max M
/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope

[Zope-dev] Re: BTrees and Persistance

2005-06-01 Thread Max M
Yair Benita wrote: # I would really really like this to work T[1].add(6) T._p_changed = True get_transaction().commit() Why not use 'IOSet' in the BTrees package? -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev

[Zope-dev] Re: Problems with PageTemplates on Zope 2.8

2005-06-27 Thread Max M
debug it? Does the server or the client hang? -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding

[Zope-dev] Re: [RfC] Removal of old stuff in Zope 2.10

2005-12-21 Thread Max M
difficulte than dropping a package into a directory it would be bad. -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML

[Zope-dev] Re: Two visions

2006-02-27 Thread Max M
Dario Lopez-Kästen wrote: Max M said the following on 2006-02-27 17:26: Jim Fulton wrote: 2) In an alternate vision, Zope 2 evolves to Zope 5. Zope 2 is complicated! It has too many layers of everything. read the full sentence that Jim wrote: 2) In an alternate vision, Zope 2

Re: [Zope-dev] Two visions?

2006-03-03 Thread Max M
Geoff Davis wrote: No, I think I understood you. I was being sloppy in my use of language. I should have said something more like Zope 3 then becomes an application server built around the Zed library. Or Zed is the part of Zope that can be used without Zope. -- hilsen/regards Max M

[Zope-dev] Re: Two visions

2006-03-03 Thread Max M
. -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman

[Zope-dev] Re: [Zope3-dev] Re: Two visions?

2006-03-03 Thread Max M
stack that will include people in Zope. Please remember It is *still* the sexiest technology out there! -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo

[Zope-dev] Re: [Zope3-dev] Re: Two visions?

2006-03-04 Thread Max M
Rocky Burt wrote: On Fri, 2006-03-03 at 09:30 +0100, Max M wrote: Benji York wrote: If we want people outside of the zope community to use these components, they should not have the word zope anywhere in their name. If it says zope people will *always* assume it is for use only with/inside

[Zope-dev] Re: characters allowed in object IDs

2006-03-10 Thread Max M
where @name is used... But if anyone else knows about it. Please speak up. -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science Phone: +45 66 11 84 94 Mobile: +45 29 93 42 96 ___ Zope-Dev maillist - Zope-Dev@zope.org http

[Zope-dev] Re: characters allowed in object IDs

2006-03-10 Thread Max M
3 too. Now that Twisted is put in front of Plone, we can also expect it to be a problem when Zope is used as a server for other services. Eg. mirroring an imap folder structure from exchange. Which I am allready having some fun with in mxmImapClient. :-s -- hilsen/regards Max M, Denmark

[Zope-dev] Re: How to delete an object given a path in Zope

2006-03-15 Thread Max M
container.manage_delObject('temp') If you are deleting a list of objects in different folders you need to do a bit of tapdancing not to delete parents first. Like reverse sorting on the length of the physical path. -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science Phone

[Zope-dev] Re: Time-based releases a good idea?

2006-06-14 Thread Max M
that there is to few generations for deprecations. -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science Phone: +45 66 11 84 94 Mobile: +45 29 93 42 96 ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev

[Zope-dev] Re: Time-based releases vs Bugfixing

2006-06-15 Thread Max M
in peace, instead of fixing already working stuff. But then again, my interrest is in user functionality. Not in core development. -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science Phone: +45 66 11 84 94 Mobile: +45 29 93 42 96

[Zope-dev] Re: Unify the Zope 2 and Zope 3 repositories!

2006-06-26 Thread Max M
that a squared problem? -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science Phone: +45 66 11 84 94 Mobile: +45 29 93 42 96 ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts

[Zope-dev] I am starting to hate Zope/Plone development and its bl**dy lack of refresh.

2006-09-04 Thread Max M
do I have to do to get the sweet sweet refresh working again? Frustrated regards Max -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science Phone: +45 66 11 84 94 Mobile: +45 29 93 42 96 ___ Zope-Dev maillist - Zope-Dev@zope.org http

[Zope-dev] Re: I am starting to hate Zope/Plone development and its bl**dy lack of refresh.

2006-09-05 Thread Max M
Max M wrote: I am not sure what is causing the problems. I am mostly a developer of end user tools. Not a core Zope/Plone developer. And I am not really interested in becoming one either. There must be a niche for developers like me that focus on end users. Well ok. I have researched a bit

[Zope-dev] Re: I'm starting to get bored of people complaining about Zope

2006-09-05 Thread Max M
Sidnei da Silva wrote: On Tue, Sep 05, 2006 at 03:39:14PM +0200, Max M wrote: | So the problem only exists for me in Archetype based products. Anytime I | do a change in any AT content type I need to restart the site. | | Can anybody confirm this behavior? That's a known-(at least to me

[Zope-dev] Re: I'm starting to get bored of people complaining about Zope

2006-09-06 Thread Max M
Max M, Denmark http://www.mxm.dk/ IT's Mad Science Phone: +45 66 11 84 94 Mobile: +45 29 93 42 96 ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists

[Zope-dev] Re: Future of ZClasses

2006-09-27 Thread Max M
Andreas Jung skrev: --On 27. September 2006 13:47:26 -0400 Jonathan [EMAIL PROTECTED] wrote: ... i don't suppose anyone has an 'automagical' utility that instantly transforms zclasses to python classes, and then changes all dtml/external method usage do they? ...didn't think so ;-) Also I

[Zope-dev] Re: ZClasses Maintenance and Upgrade

2007-04-18 Thread Max M
/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce

[Zope-dev] Re: ZClassNG and ProductNG proposal

2007-04-26 Thread Max M
at 1MPH. Reinventing the wheel as something bad, is only bad as a metaphor ;-) -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross