[Zope-dev] SAP SSO for Zope/CookieCrumbler/LDAPUserFolder

2005-06-27 Thread Dirk Datzert
Hi, this is my solution for SSO for Zope by accepting SAP-SSO-Ticket. SAP-SSO-Tickets are Cookies named MYSAPSSO2. They contain SAP-PortalUserName, SAP-Username, Validate-Time of the ticket and a signed signature by the issueing SAP-System. Since we currently use CookieCrumbler and LDAPU

[Zope-dev] Re: SAP SSO feature for Zope/LDAPUserFolder

2005-06-26 Thread Dirk Datzert
Hi Mark, Mark Hammond schrieb: > >I would suggest looking at PAS. You would write an "extraction" plugin for >PAS, and use the PAS LDAPMultiPlugin (from dataflake) for user properties >and role/group enumeration. Your PAS plugin then only has the job of >creating a "user id" suitable for use wi

[Zope-dev] Re: SAP SSO feature for Zope/LDAPUserFolder

2005-06-26 Thread Dirk Datzert
Hi Marco, Marco Bizzarri schrieb: > > > I'm not sure this could work for you... I've tried integrating Zope with an SSO system, which did not provide any authentication other than setting a correct REMOTE_USER in the REQUEST (we did it behind Apache). > > We succeded by subclassing CookieCrumble

[Zope-dev] Re: SAP SSO feature for Zope/LDAPUserFolder

2005-06-25 Thread Dirk Datzert
Jens Vagelpohl schrieb: >> I'm looking now for the best way to integrate/rewrite >> CookieCrumbler/LDAPUserFolder to take the validated Login-Name and read the >> roles of the user out of the LDAP-directory. > > > What *specifically* does not work? Have you tried it and developed a list of featu

[Zope-dev] SAP SSO feature for Zope/LDAPUserFolder

2005-06-25 Thread Dirk Datzert
Hi, we have Zope 2.6.4 and 2.7.6 with LDAPUserFolder and CookieCrumbler in use. One of our next goals is to integrate the Single-Sign-On-Ticket feature of SAP-Portal. SAP sent a cookie called MYSAPSSO2 which contains a certified signature and the Login-Name of a user. Normally the Login-Name wi

Re: [Zope-dev] Re: bug in 2.6.2, 2.6.1 , and probably others.

2004-02-03 Thread Dirk Datzert
Am Dienstag, 3. Februar 2004 23:16 schrieb Paul Winkler: > On Tue, Feb 03, 2004 at 01:16:48PM -0600, Evan Simpson wrote: > > Romain Slootmaekers wrote: > > >I just stumbled on a bug in the python scripting parameter > > > passing. > > > > Actually, it's a bug in the "test" tab support code. The p

Re: [Zope-dev] Re: bug in 2.6.2, 2.6.1 , and probably others.

2004-02-03 Thread Dirk Datzert
Am Dienstag, 3. Februar 2004 23:16 schrieb Paul Winkler: > On Tue, Feb 03, 2004 at 01:16:48PM -0600, Evan Simpson wrote: > > Romain Slootmaekers wrote: > > >I just stumbled on a bug in the python scripting parameter > > > passing. > > > > Actually, it's a bug in the "test" tab support code. The p

[Zope-dev] Re: deadlock patch ?

2003-06-13 Thread Dirk Datzert
Jeremy Hylton schrieb: > > > The change was too extensive to call it a patch. It was almost a > > rewrite. If you want to dig through the repository, look for all > > changes made to ZODB and ZEO between about October 31, 2002 and > > January 3, 2003. I imagine it would be less work to upgrad

[Zope-dev] deadlock patch ?

2003-06-13 Thread Dirk Datzert
Hi Zope developers, I read that Zope 2.6.1 has a deadlock patch integrated. - Deadlock prevention code added. It was possible for earlier versions of ZODB to deadlock when using multiple storages. If multiple transactions committed concurrently and both transaction

Re: [Zope-dev] acessing raw header information?

2002-11-02 Thread Dirk Datzert
Hello Holger, > > Which javscript bug can affected by Authorization ? > > If you e.g. do in javascript: > > p = new HttpRequest(); > p.open("POST", url); > p.send(somestring, true); > > and the POST-url requires HTTP-Authentication from the Zope-side > then Mozilla fails to resend a

Re: [Zope-dev] acessing raw header information?

2002-11-02 Thread Dirk Datzert
Hello Holger holger krekel schrieb: > > I need this to circumvent a javascript/Mozilla bug. > Which javscript bug can affected by Authorization ? Regards, Dirk ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-de

Re: [Zope-dev] LDAPRoleTwiddler / BasicUserFolder

2002-10-17 Thread Dirk Datzert
> > if I access /dir2/index_html comes the user object from LRT2 ? > > what if I access in /dir2/index_html aq_parent.dir1.index_html. > > Will the AUTHENTICATED_USER change ? will the user object come from LRT2 > > ? > > No, it will not. Only one user ever applies to a request. And that exact

Re: [Zope-dev] LDAPRoleTwiddler / BasicUserFolder

2002-10-17 Thread Dirk Datzert
>> > >> Where is the LDAPUser class located? > > > > > > imported from the LDAPUserFolder module > > Ok, that does make it a little more complicated. > Why ? For me it is the same if I import LDAPUser from LDAPUserFolder and overwrite some functions, or import LDAPUser from LDAPRoleTwiddler (wh

Re: [Zope-dev] LDAPRoleTwiddler / BasicUserFolder

2002-10-17 Thread Dirk Datzert
> > def getRolesInContext(self, obj): > >lrt = obj.acl_users # get nearest acl_users for obj (not really sure > > if this works ?) > >user = lrt.getUser ( self.getId(), self._getPassword() ) > >return user.getRoles() > > Hmm, no, the user object is simply "self". > yes wrong question

Re: [Zope-dev] LDAPRoleTwiddler / BasicUserFolder

2002-10-17 Thread Dirk Datzert
Shane Hathaway schrieb: > > Dirk Datzert wrote: > >>And if you're interested, I know how we can make LDAPRoleExtender much > >>safer, based on conversations with Jens. > >> > > > > Sure I'm interessted. > > Ok. All User objects hav

Re: [Zope-dev] LDAPRoleTwiddler / BasicUserFolder

2002-10-17 Thread Dirk Datzert
Hi Shane, thanks for answering. > >> > >> Maybe I'm think too complicated, Your opinion ? > > The idea behind LDAPRoleExtender is to give the user global roles if the > > I don't know anything about LDAPRoleTwiddler. But I would recommend you > install the VerboseSecurity product, which will t

Re: [Zope-dev] LDAPRoleTwiddler / BasicUserFolder

2002-10-17 Thread Dirk Datzert
Hi Jens, if I take the following code: # This must stay accessible to everyone def validate( self, request, auth='', roles=_noroles ): """ The main engine """ luf = self.getLUF() v = request['PUBLISHED'] # the published object a, c, n, v = luf._getobcontex

Re: [Zope-dev] LDAPRoleTwiddler / BasicUserFolder

2002-10-17 Thread Dirk Datzert
Hi Jens, > why is that code no longer referring to the real userfolder anymore? it > should not make calls to authorize/identify/authorize on "self" but on > the LDAPUserFolder it is using as the user source. > self.identify() should be the same as if getLUF().identify() since LDAPUserFolder a

[Zope-dev] LDAPRoleTwiddler / BasicUserFolder

2002-10-17 Thread Dirk Datzert
Hi all, I try to solve some problems with LDAPRoleTwiddler an inherited version from BasicUserFolder I currently use a validate()-function which I saw similar in BasicUserFolder and in LDAPRoleExtender (modifications from Shane) My problem is that if self.authorize(user, a, c

Re: [Zope-dev] Zope RPMs/debs and Linux FHS

2002-10-14 Thread Dirk Datzert
> I will be honest here. I don't care a lot about how the debian files > are packaged, or where. But I do not want to see two sets of debs with > differing layouts. Not only talking about debs distro layouts. There should be one install instruction for all linux distros, which takes care abo

Re: [Zope-dev] Zope RPMs/debs and Linux FHS

2002-10-13 Thread Dirk Datzert
> > > *) Byte compiling: Why not schedule an 'at' job to do the byte compile? > > The only reason I care about when the files are compiled is that if the > files are byte-compiled in the rpm build root, tracebacks will contain > references to the buildroot in the python filenames. I could do it

[Zope-dev] LDAPUserFolder(LUF), LDAPRoleTwiddler(LRT)

2002-10-12 Thread Dirk Datzert
Hi all, I made some changes in my local versions of LUF and LRT. I've checked out the latested code from cvs.dataflake.org and rewritten LRT to use SimpleCache and SimpleLog. I also tried the integrate the validate-changes from LRE from Shane, hoping that this would solve my problems, but it di

[Zope-dev] AcceleratedHTTPCacheManager

2002-09-25 Thread Dirk Datzert
Hi, I found it useful if the AcceleratedHTTPCacheManager would sent a cache-pragma of type 'no-cache' for authenticated user and objects which should not be cached on authenticated connections. I had configured a apache proxy and without that fix the mod_proxy will always cache objects, regardle

[Zope-dev] creating products

2002-07-12 Thread Dirk Datzert
Hi, I want to write a simple product which saves some data. Which base python-zope class is necessary to store user-structured data in the following format: zope-container non-zope structure object 1 non-zope object-container non-zope structure object 2 ... Which base class must be

Re: [Zope-dev] roles, permissions problem

2002-07-10 Thread Dirk Datzert
ed correct. Regards, Dirk Dieter Maurer schrieb: > > Dirk Datzert writes: > > ... > > A product defines a roles 'Author' and the permissions are set as > > neccessary for this product. > > > > I also have LDAPUserFolder installed. The logged on user ha

[Zope-dev] roles & permissions

2002-07-10 Thread Dirk Datzert
Hi, I added a role 'Authenticated' to a Zope 2.3.3 and defined permissions for that role. After that I delete the role 'Authenticated', but the permission settings are still alive ? I would expect that role defined permissions has gone away if I delete the role ? Am I wrong ? Regards, Dirk _

Re: [Zope-dev] roles, permissions problem

2002-07-10 Thread Dirk Datzert
have displayed the permissions for the affected object via a script named dumpPerm I found in the internet and the permissions where set right. Regards, Dirk Dieter Maurer schrieb: > > Dirk Datzert writes: > > ... > > A product defines a roles 'Author' an

[Zope-dev] roles, permissions problem

2002-07-09 Thread Dirk Datzert
Hi, have a problem with Zope 2.3.3 and roles defined by a product X and the role 'Authenticated' which I added to be Zope 2.4.4 compatible. A product defines a roles 'Author' and the permissions are set as neccessary for this product. I also have LDAPUserFolder installed. The logged on user ha

[Zope-dev] Fw: [Zope] ZCacheable_invalidate

2002-06-28 Thread Dirk Datzert
Hi, probably this list is a better place to ask for. Regards, Dirk - Original Message - From: "Dirk Datzert" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 27, 2002 7:48 PM Subject: [Zope] ZCacheable_invalidate > Hi, > > I have i

Re: [Zope-dev] LDAPUserFolder

2002-05-01 Thread Dirk Datzert
or all LDAPUserFolders and Caches, Users, Groups are local ? And do lookups again, not computed. > > > you might be able to patch the folder class so that local roles are > computed instead of just looked up, but that's hackish. > > jens > > On Wednesday, May 1, 2002, at

[Zope-dev] LDAPUserFolder

2002-05-01 Thread Dirk Datzert
Hi Jens, one question about possibilities of LDAPUserFolder: We decide to install only one LDAPUserFolder in the Root-Folder and configure him to do the authentications against LDAP. In the subfolders we want to install 'LDAPUserFolders' which should not be configured again, but use the top-lev

[Zope-dev] LDAPUserFolder

2002-04-30 Thread Dirk Datzert
Hi, how do I replace a acl_users folder in the Root by an working LDAPUserFolder ? Regards, Dirk BEGIN:VCARD VERSION:2.1 N:Datzert;Dirk FN:Dirk Datzert ORG:;Andernach TEL;WORK;VOICE:+49 2631 81 4595 TEL;WORK;FAX:+49 2631 81 15 4595 ADR;WORK:;;Andernach LABEL;WORK:Andernach KEY;X509;ENCODING=BA

Re: [Zope-dev] python question

2002-04-27 Thread Dirk Datzert
oc. > > -k > > > - Original Message - > > From: "Dirk Datzert" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: Friday, April 26, 2002 10:39 AM > > Subject: [Zope-dev] python question > > > > > Hi, > > &g

Re: [Zope-dev] python question

2002-04-27 Thread Dirk Datzert
Hi Andy, thank you very much. With your help I found Dieters web-page: http://www.dieter.handshake.de/pyprojects/zope/pydoc.html Regards, Dirk Andy McKay schrieb: > Look at pydoc http://www.google.ca/search?q=pydoc&hl=en&meta= > > - Original Message ----- >

[Zope-dev] medusa with 'Broken Link' problem

2002-04-27 Thread Dirk Datzert
Hi, I'm looking for a solution for the following - I think well known - problem of medusa 'Broken Link' : Plattform Linux 2.2.19 or Linux 2.4.16 Zope 2.3.3 is necessary ( no update is possible ) Python 1.5.2 or if possible a higher version Zope hangs after a random while of random clicks with e

[Zope-dev] localRoles

2002-04-26 Thread Dirk Datzert
Hi, if I define local roles for a folder object. Are the local roles acquired by Objects in the folder and sub-folders and so on ? Regards, Dirk ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross

[Zope-dev] python question

2002-04-26 Thread Dirk Datzert
Hi, does anybody know a good programm or the command to create documentation of python classes (api-documentation like javadoc) out of the python code ? Thanks, Dirk ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/

[Zope-dev] Fw: Backporting for PHParser to Zope-2.3.3

2002-04-25 Thread Dirk Datzert
- Original Message - From: "Dirk Datzert" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, April 25, 2002 1:31 PM Subject: Backporting for PHParser to Zope-2.3.3 Hi Maik, hi all, I want to backport PHParser to Zope

[Zope-dev] Zope-2.3.3 & Python 2.1.3 ? possible or mission impossible

2002-04-25 Thread Dirk Datzert
Hi all, I currently need to build Zope-2.3.3. yeah this is not the latest stable one. I have to build it with Python 2.1.3. Is this possible ? I got and traceback on 'python wo_pcgi.py' Traceback (most recent call last): File "/usr/src/packages/BUILD/Zope-2.3.3-src/w_pcgi.py", line 111, in ?

[Zope-dev] zope/python question

2002-04-24 Thread Dirk Datzert
Hi, I saw in some products a __of__ operator and looked at the python.org for a documentation. I didn't found one. Can anybody tell me what the __of__ does ? Or tell me a URL for the documentation of the __of__ operator ? Thanks, Dirk ___ Zope-Dev

[Zope-dev] Zope 2.3.3 with Python 1.5.2 asyncore/asynchat

2002-04-19 Thread Dirk Datzert
Hi, I have to fix the asyncore/asynchat Broken Pipe bug in the Python 1.5.2 version. Can anybody tell me how to do that ? I know that the asyncore/asynchat in Zope 2.4.4 Zserver/medusa has this fixed. Thanks, Dirk BEGIN:VCARD VERSION:2.1 N:Datzert;Dirk FN:Dirk Datzert ORG:;Andernach TEL;WORK

[Zope-dev] WYSIWYG-editor-framework

2002-04-07 Thread Dirk Datzert
Hi, I'm looking for an framework-like product which allows the integrate an independent WYSIWYG-editor like richtext 0.2 from sourceforge into zope, or a java based editor. probably as a ZMI-Editor for document content, or as a generell front-end editor of documents for end-users. This framewor

Re: [Zope-dev] OpenSSH configuration between ZEO clients & storage server

2002-03-23 Thread Dirk Datzert
Hi, I would suggest a permanent ipsec tunnel between the servers. ipsec would be encapsulated any traffic, while ssh while only tunnel a specific traffic. Regards, Dirk Eric Roby schrieb: > Anyone had any experience trying to secure the transactions between ZEO > clients and a storage server??

[Zope-dev] DTML Document textarea edit

2002-01-28 Thread Dirk Datzert
Hi! I want to suggest a modification for the DTML Document/Method dtml-file documentEdit.dtml On default the textarea will be displayd with wrap="off" . If I imported XML-Files without line breaks it is difficult to edit the files via DTML-Webfrontend. A property wrapmode could solve this: docu

[Zope-dev] asyncore.py & Broken-Pipe error

2002-01-08 Thread Dirk Datzert
Hi,   I knew that sometimes ZServer stopps working with the error OS-error Broken-Pipe in the log-file. And I knew that this is fixed in Zope 2.5b with a change of asyncore.py   I need a working asyncore.py for my 2.4.3 Zope. Can anybody sent me a working version ?   Regards,   Dirk Datzert

Re: [Zope-dev] PDF-specific Bug in the ZServer implementation??? Or just strange behavoiur of IE?

2002-01-07 Thread Dirk Datzert
Hi, I have the same problem and want to fix it in Zope 2.4.3. Can anybody give a short description how to proceed ? Thanks Dirk Joachim Werner schrieb: > Hi! > > This was a really quick response! Thanks a lot. Just one additional > question: > > What is the best approach to upgrading to the n

[Zope-dev] Re: [Zope] ATENCION COMPATRIOTAS

2001-12-29 Thread Dirk Datzert
I need to say that the email with the subject above came not from me or a member of Rasselstein-Hoesch. The eMail-Adresses aren't real and unverified to this mailinglists Dirk Datzert Rasselstein Hoesch IT-Department postmaster and webmaster [EMAIL PROTECTED], [EMAIL PROTECTED], [

[Zope-dev] OpenOffice and Zope ??

2001-12-18 Thread Dirk Datzert
Hi, has anybody integrated/plans on intragration/experimented with OpenOffice and Zope ? - OpenOffice as a HTML Editor / Web-Frontend for Zope or - OpenOffice as a HelperTool in the Background (external converter for MS Office Products) of Zope Special interests in turning excel-spreadsheets

[Zope-dev] PDF from Printable Page

2001-12-17 Thread Dirk Datzert
Hi, I'm looking for a way to get a PDF from a Printable Page. I thought of the ZpdfDocument as a base for this kind of issue. Has anybody some experience in resolving this issue ? Regards, Dirk ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists

Re: [Zope-dev] CatalogAware Products and PropertyManager

2001-12-13 Thread Dirk Datzert
thanks I found it under http://www.zope.org/Members/Kaivo/DTMLDocumentExt/DTMLDocumentExt-0.2.tgz/vi ew - Original Message - From: "Matt Hamilton" <[EMAIL PROTECTED]> To: "Dirk Datzert" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday,

[Zope-dev] CatalogAware Products and PropertyManager

2001-12-13 Thread Dirk Datzert
there isn't a hotfix-like product out there I probably can write one.   Regards,   Dirk Datzert   Rasselstein Hoesch GmbH Informatik / AnwendungsentwicklungD-56626 AndernachKoblenzer Strasse 141   http://www.rasselstein-hoesch.de   Tel.: +49 (0) 2631 81-4595Fax.: +49 (0) 2631 81-15-4595m

[Zope-dev] CatalogAware question

2001-12-13 Thread Dirk Datzert
ZNavigator/NavItem which a index exists in my ZCatalog named Catalog in the root-folder. Do I need to programm a special code into a Class which should CatalogAware ?   Regards,   Dirk Datzert   Rasselstein Hoesch GmbH Informatik / AnwendungsentwicklungD-56626 AndernachKoblenzer Strasse 141   http

Re: [Zope-dev] Medusa Asyncore patch

2001-12-11 Thread Dirk Datzert
Hi, after applying the patch zope won't restart correclty for my version. (python 2.1.1, zope 2.4.3) Traceback: 2001-12-12T07:45:49 PANIC(300) z2 Startup exception Traceback (innermost last): File z2.py, line 625, in ? File /usr/src/packages/BUILD/Zope-2.4.3-src/ZServer/HTTPServer.py, line

Re: [Zope-dev] yes, segv11 and Broken pipes

2001-12-09 Thread Dirk Datzert
Its a Linux 2.2.19. What does IIRC means ? Dirk - Original Message - From: "Jens Quade" <[EMAIL PROTECTED]> To: "Chris McDonough" <[EMAIL PROTECTED]> Cc: "Dirk Datzert" <[EMAIL PROTECTED]>; "Leonardo Rochael Almeida" <[EMA

Re: [Zope-dev] yes, segv11 and Broken pipes

2001-12-09 Thread Dirk Datzert
Hello, I can report the same failure: First there is a OSerror signal 11 and from that point on there will be OSerror errno 32 Borken pipe until Zope is restarted. Our System is: Zope 2.4.3 (from source 2.4.1 with update 2.4.x_to_2.4.3, python 2.1.1, Apache 1.3.12 is there a solution out ? R

[Zope-dev] Zope and Curl

2001-12-08 Thread Dirk Datzert
Hi, has any zoper played with the new internet technology curl from http://www.curl.com ? Regards, Dirk ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related list

Re: [Zope-dev] ZCatalog

2001-12-06 Thread Dirk Datzert
inal Message----- > From: Dirk Datzert [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 06, 2001 1:03 PM > To: [EMAIL PROTECTED] > Subject: [Zope-dev] ZCatalog > > Hi, > > I'm looking for a howto or a hint for fuzzy search in german and english > with ZCatalog

[Zope-dev] ZCatalog

2001-12-06 Thread Dirk Datzert
Hi, I'm looking for a howto or a hint for fuzzy search in german and english with ZCatalog / CatalogQuery Can anybody sent me a URL ? Thanks Dirk ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cros

Re: [Zope-dev] Re: core i18n support

2001-12-06 Thread Dirk Datzert
Lennart Regebro schrieb: > From: "Dirk Datzert" <[EMAIL PROTECTED]> > > Lennart Regebro schrieb: > > > Fine, but that is also useless for translating Zope core, > > > > Why ? I dont't understand this ! I have translated thr OFS of Zope on my

Re: [Zope-dev] Re: core i18n support

2001-12-06 Thread Dirk Datzert
Lennart Regebro schrieb: > From: "Dirk Datzert" <[EMAIL PROTECTED]> > > Normally your data will be stored in the ZODB ZBabelTower > > Fine, but that is also useless for translating Zope core, Why ? I dont't understand this ! I have translated thr OFS of

Re: [Zope-dev] Re: core i18n support

2001-12-06 Thread Dirk Datzert
Hi Lennart, - Original Message - From: "Lennart Regebro" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 06, 2001 1:41 PM Subject: [Zope-dev] Re: core i18n support > From: "Robert Rottermann" <[EMAIL PROTECTED]> > > What I believe however, it should make no differe

[Zope-dev] Searching

2001-12-04 Thread Dirk Datzert
Hi, is there anybody how knows a product which combines the open-source search-engine htdig with zope ? Dirk ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related

[Zope-dev] Searching

2001-12-04 Thread Dirk Datzert
Hi, I'm looking for a search tool which can do semantic/synonym search. Can this be done via ZCatalog ? Regards Dirk ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! **

[Zope-dev] PythonScript

2001-12-04 Thread Dirk Datzert
Hi, I have following trivial problem: A DTML-Mthode calls a PythonScript suchThemen with Argumen themen like this The PythonScript should return values and I want to display in the dtml-in-loop the result variable themas. Question: How must I programm the PythonScript that suchThem

Re: [Zope-dev] Zope Exceptions and translation

2001-12-03 Thread Dirk Datzert
Hi, we at ZBabel have to same problems with translating the Exceptions of Products. And my personal best solution is to use the translate-Method direct in the Python-Code which raises the Exceptions. That works for every text directly in the Python Code. Regards Dirk Andre Schubert schrieb: >

[Zope-dev] Re: [Zip] Regarding translation of Zope

2001-12-01 Thread Dirk Datzert
Hello Lennart, there are currently 2 prjects for zip: localizer and ZBabel. I prefer ZBabel for I18N . Currently a ZBabelMaster-Tower is being build with all necessary phrases of Zope, CMF and a lot of products. Regards Dirk Lennart Regebro schrieb: > I've been trying to get updated and maybe