is there a way in zope to reference a document on a server without having it to be in the zope database??? if I want to display say a microsoft document, with content type of application/msword so that the Internet explorer displays it as formated word document and so that it can be saved back to server??? or is there other ways of accomplishing the same thing? thank you for any help Dan S.
Hi, I'm using a class attribute _v_label_index to store an index of my managetab options (in a multi managementtabs mixin product). To create _v_label_index i use a module level method that I run in the class scope, like this: def initIndex(manage_options,...): ... class myclass(...): ... manage_options = (...) _v_label_index = initIndex(manage_options) Now this work but the implementor needs to have the row "_v_label_index = initIndex(manage_options)" in his sub class. Is this "good" design? Does class attributes get saved to the ZODB? I use the "_v_..." notation just in case. Cheers, Johan Carlsson
participants (2)
-
danchik -
Johan Carlsson