Re: [Zope3-Users] make check [OSX v3.3.0]

2006-10-10 Thread Jim Fulton
Robert Hicks wrote: I get the following error and it is the only one: Error in test checkVerificationInvalidationPersists (ZEO.tests.testConnection.MappingStorageConnectionTests) Traceback (most recent call last): File

Re: [Zope3-Users] Re: Intended scope of viewlets?

2006-10-10 Thread Alec Munro
You were correct, because my skin was inheriting from z3c.layer.minimal.IMinimalBrowserLayer, which as best I can tell, doesn't inherit from the default layer (there's probably a ZCML directive to set this somewhere though), my pages/templates/viewlets/etc weren't available to be looked up. I

[Zope3-Users] svn.zope.org and www.zope.org not online

2006-10-10 Thread Roger Ineichen
Hi Can somebody confirm that the www.zope.org site and the svn is not reachable? I can only access the apache test page at: http://download.zope.org/ Thanks Rgards Roger Ineichen _ Projekt01 GmbH www.projekt01.ch Boesch 65 6331 Hünenberg phone +41 (0)41 781 01

Re: [Zope3-Users] svn.zope.org and www.zope.org not online

2006-10-10 Thread Adam Groszer
Hello Roger, u, yes squid/2.5.STABLE6 says: While trying to retrieve the URL: http://www.zope.org/ The following error was encountered: Connection Failed The system returned: (111) Connection refused Tuesday, October 10, 2006, 3:35:34 PM, you wrote: RI Hi RI Can somebody confirm

Re: [Zope3-Users] svn.zope.org and www.zope.org not online

2006-10-10 Thread Benji York
Adam Groszer wrote: squid/2.5.STABLE6 says: While trying to retrieve the URL: http://www.zope.org/ The following error was encountered: Connection Failed The system returned: (111) Connection refused There appear to be some issues with the zope.org DNS as it is transitioned to

Re[2]: [Zope3-Users] svn.zope.org and www.zope.org not online

2006-10-10 Thread Adam Groszer
Hello Benji, www.zope.org works again. :-) But FYI It's the following: l:~ # dig www.zope.org ; DiG 9.2.4 www.zope.org ;; global options: printcmd ;; Got answer: ;; -HEADER- opcode: QUERY, status: NOERROR, id: 42272 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2 ;;

RE: [Zope3-Users] svn.zope.org and www.zope.org not online

2006-10-10 Thread Roger Ineichen
Hi Benji, Adam, Sascha www.zope.org is still not reachable. Do I get a old cached DNS entry from my DNS provider? What is the correct working IP for svn.zope.org? Here's my trace route: Routenverfolgung zu www.zope.org [63.240.213.1] über maximal 30 Abschnitte: 11 ms1 ms1 ms

Re: [Zope3-Users] svn.zope.org and www.zope.org not online

2006-10-10 Thread Benji York
Roger Ineichen wrote: www.zope.org is still not reachable. Do I get a old cached DNS entry from my DNS provider? Not exactly, the IP hasn't changed. The new DNS host seems to be handing out the wrong IPs. What is the correct working IP for svn.zope.org? 63.240.213.173 -- Benji York

[Zope3-Users] Re: Unable to start new Zope3 instance - missing meta.zcml

2006-10-10 Thread Philipp von Weitershausen
Kent Tenney wrote: Howdy, Zope3 trunk, r 70593 on W2K I get a traceback when trying to start Zope3 from a newly created instance. The instance is created in a new directory. If that's actually the case (new directory), then you probably have some stale data in zopeskel/etc/package-includes.

Re: [Zope3-Users] svn.zope.org and www.zope.org not online

2006-10-10 Thread Marius Gedminas
On Tue, Oct 10, 2006 at 11:48:35AM -0400, Benji York wrote: Roger Ineichen wrote: www.zope.org is still not reachable. Do I get a old cached DNS entry from my DNS provider? Not exactly, the IP hasn't changed. The new DNS host seems to be handing out the wrong IPs. Just double-checking:

Re: [Zope3-Users] Re: Intended scope of viewlets?

2006-10-10 Thread Alec Munro
One more thing. When using this masterpage idea, what is the pattern for creating new pages? For example, I would traditionally have: MyObject/SubjectOne.html MyObject/SubjectTwo.html MyObject/SubjectThree.html Registered with: page for=IMyObject name=SubjectOne.html

[Zope3-Users] ForbiddenAttribute on locate method

2006-10-10 Thread Thierry FLORAC
Hi, I try to setup a little application but have a probably little problem with a ForbiddenAttribute exception on location.locate method. Here is my setup : class IPhoto(IContainer,IContained): Photo handling interface ... image = Bytes(...)