[Zope3-Users] reStructuredText renderer question

2007-08-21 Thread Douglas Cerna
Hi everybody. I'm trying to use the rest renderer package to develop a cms application. Two questions: 1. I want to know if the renderer can be customized. I read in the mailing list, in the thread "Disable raw directive in restructured text" this line: renderer.render(settings_override).st

[Zope3-Users] zopeproject IServerControl ComponentLookupError

2007-09-16 Thread Douglas Cerna
Hi. I read Philip's mail and since I'm "playing" with grok and I liked the way installed eggs, I decided to try zopeproject too :) Anyway, I'm getting an error in ++etc++process/servercontrol.html: File "/docs/docs/grok/buildout-eggs/tmpRlWIg5/zope.tales-3.4.0a1-py2.4.egg/zope/tales/expressions

[Zope3-Users] Vocabularies and deleted values

2007-09-21 Thread Douglas Cerna
Hi everyone. I have setup a SimpleVocabulary that extracts its values from a Persistent object with a List attribute (kind like Philip's book example in Chapter 17). I also defined other object that uses the vocabulary in Choice field. It works. I can add and delete values from the Persistent obj

[Zope3-Users] Zope 3 hosting provider

2008-02-08 Thread Douglas Cerna
Hi everyone. I want to develop a website using Zope 3, but I need a hosting provider that meets the "3" requirement. I've checked the Zope Solution Providers page at zope.org, but haven't find any provider using Zope 3 yet. Zope 2.9 is the closest I get. Could you recommend (if) any provider? I

Re: [Zope3-Users] How do I get rid of a PAU with the API?

2009-01-10 Thread Douglas Cerna
Try to remove the utility from the sm like this: del sm['authentication'] Hope this helps. Douglas "... allí­ es cuando te das cuenta que las cosas malas pueden resultar bastante buenas..." - Lionel Messi Por favor, evite enviarme adjuntos de Word, Excel o PowerPoint. Vea http://www.gnu.org/p

Re: [Zope3-Users] functional doctest and testbowser with zopeproject

2009-03-31 Thread Douglas Cerna
Hi. I had a similar error and fixed it modifying: >>> browser.addHeader('Authorization', 'Basic mgr:mgrpw') To: >>> browser.addHeader('Authorization', 'Basic globalmgr:globalmgrpw') Both principals are defined in the ftesting.zcml file of your project, but just the globalmgr has the Manager

Re: [Zope3-Users] Best way to find normal objects.

2009-05-06 Thread Douglas Cerna
Maybe: from zope.app.generations.utility import findObjectsProviding can help you. You use it like this: findObjectsProviding(container, InterfaceYoureLookingFor) HTH Douglas "... allí­ es cuando te das cuenta que las cosas malas pueden resultar bastante buenas..." - Lionel Messi Por favo