Re: [Zope] RE: Is there any way to turn off the publishing of externalmethods to the web in Zope?

2007-01-30 Thread Chris Withers
Martin Aspeli wrote: Pushpage by Tres). I guess it comes down to taste. I found Cheetah horrendously ugly, aesthetically speaking. Martin, I'd be interested in your views on Twiddler :-) Also note that if all you really need is a blog, there are probably existing solutions you could use and

Re: [Zope] Is there any way to turn off the publishing of externalmethods to the web in Zope?

2007-01-30 Thread Chris Withers
Mark, Jonathan (Integic) wrote: I don't know Zope well, No offence, but that much is apparent ;-) excellent Squishdot product for three years at Goodbyejim.com. Chris has moved on to other Zope activities and has not upgraded Squishdot since 2001. I still use Squishdot heavilly. I

[Zope] Which Products Folder?

2007-01-30 Thread Frank Drews
Hi, I am very new to Zope, Zope is running fine, but I dont know the Products-Folder to copy new Products: zope 2.94 C:\Programme\CPS3.4.0-3\Zope\lib\python\Products C:\Programme\CPS3.4.0-3\Zope\skel\Products C:\Programme\Zope-2.9.4\lib\python\Products C:\Programme\Zope-2.9.4\skel\Products

[Zope] A good time to set HTTP_ACCEPT_LANGUAGE

2007-01-30 Thread Peter Bengtsson
My multilingo app now works with PlacelessTranslationService quite fine. If you change your browser setting with about:config you get the website in different languages. Neat! However, what if you're in an internet cafe in Kenya using a Zulu web browser and you want the pages to appear in

RE: [Zope] Is there any way to turn off the publishing of externalmethods to the web in Zope?

2007-01-30 Thread Mark, Jonathan (Integic)
I wish to thank Chris for his helpful comments. I accept them in the playful spirit in which they were offered. This sort of feedback is essential to people who are learning. LESSON #1: If it looks as if a product is no longer maintained then ask the maintainer of the product if he has any

[Zope] Referencing authenticated user

2007-01-30 Thread Sinang, Danny
Hello, I need to modify a Zope product to record the authenticated user executing a method. How do I refer to the authenticated user ? Regards, Danny ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross

[Zope] Re: Which Products Folder?

2007-01-30 Thread Maurits van Rees
Frank Drews, on 2007-01-30: Hi, Hi Frank, I am very new to Zope, Zope is running fine, but I dont know the Products-Folder to copy new Products: I have never run Zope on a Windows computer, so do not take my answer to be the final word on this, but I will give it a go. zope 2.94

Re: [Zope] Referencing authenticated user

2007-01-30 Thread Maciej Wisniowski
I need to modify a Zope product to record the authenticated user executing a method. How do I refer to the authenticated user ? You may try: self.REQUEST.AUTHENTICATED_USER -- Maciej Wisniowski ___ Zope maillist - Zope@zope.org

Re: [Zope] Referencing authenticated user

2007-01-30 Thread Andreas Jung
--On 30. Januar 2007 21:52:52 +0100 Maciej Wisniowski [EMAIL PROTECTED] wrote: I need to modify a Zope product to record the authenticated user executing a method. How do I refer to the authenticated user ? You may try: self.REQUEST.AUTHENTICATED_USER nah...don't do that. Use from

[Zope-dev] Zope Tests: 7 OK

2007-01-30 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Mon Jan 29 12:00:00 2007 UTC to Tue Jan 30 12:00:00 2007 UTC. There were 7 messages: 7 from Zope Unit Tests. Tests passed OK --- Subject: OK : Zope-2.6 Python-2.1.3 : Linux From: Zope Unit Tests Date: Mon Jan 29 21:27:57 EST 2007

[Zope-dev] Re: dynamic table

2007-01-30 Thread Philipp von Weitershausen
Graziella Toutoungis wrote: Hello, [...] This is the wrong list, please write to zope@zope.org with general problems about *using* Zope. Please don't respond to this email. -- http://worldcookery.com -- Professional Zope documentation and training Next Zope 3 training at Camp5:

[Zope-dev] Re: ploneout - Or how using zc.buildout for a common Zope2 project might look like

2007-01-30 Thread Philipp von Weitershausen
Martin Aspeli wrote: Jim Fulton wrote: [foo] recipe=zc.recipe.egg eggs = egg1 egg2 ... interpreter = mypy extra-paths = path-to-your-instance/lib/python scripts = mypy This is great :) I used eggs = ${instance:eggs} to make sure it has the same eggs as our

[Zope-PAS] PAS plugin

2007-01-30 Thread javi lopez
hello, i am doing a plugin for pas and i want to define : authenticateCredentials, extractCredentials, doaddUser, etc, i did a file: init.py and nameplugin.py and this file i want to implement those methods. Is it correct? This plugin is to replace login from Plone.Thanks Can i do it???

[Zope-PAS] how??

2007-01-30 Thread javi lopez
i am doing a plugin for pas, i did this method but it donĀ“t work: security.declarePrivate('authenticateCredentials') def authenticateCredentials(self, credentials): Authentication Part login = credentials.get( 'login' ) password = credentials.get( 'password' )