[BlueBream] 1.0b4 / community packages / giant buildbot

Baiju M baiju.m.mail at gmail.com
Thu Aug 26 05:13:00 EDT 2010


On Wed, Aug 25, 2010 at 10:02 PM, Christophe Combelles <ccomb at free.fr> wrote:
> bluebream 1.0b4
> ---------------
>
> The Zope Toolkit 1.0a3 has been released yesterday,
> Are you ok for a BlueBream 1.0b4 release tonight?
> (tonight means around 10pm UTC)
>
> Could you please make a check? I've made a few changes :
>
> - cleaned up the package list and version file
> (btw, are we sure we don't need zope.app.xmlrpcintrospection?)

AFAIK, zope.app.xmlrpcintrospection was never part of official Zope 3 release.
http://www.zope.org/Products/Zope3

+0 for including it as part of BB release.

> - fixed the online version checking (minor versions only)

Is it really the third number ? that is "bugfix"/"patch" version ?

> - depend on  ZTK 1.0a3

Nice :)

> It would also be nice to fix the permission problem on the "welcome" demo app:
> when we click on "add a sample app", we get a permission error. We should be
> redirected to the login page.

To redirect to login page, we need to register a view for IUnauthorized
exception and this will only work if we use "deploy.ini"

Either we can use the zope.app.http.exception.unauthorized.Unauthorized
factory class or create another cutsom class:

<view
    for="zope.security.interfaces.IUnauthorized"
    type="zope.publisher.interfaces.http.IHTTPRequest"
    name="index"
    permission="zope.Public"
    factory="zope.app.http.exception.unauthorized.Unauthorized"
    />

<browser:defaultView
    for="zope.security.interfaces.IUnauthorized"
    layer="zope.publisher.interfaces.http.IHTTPRequest"
    name="index"
    />


I will try to comment on others later.

Regards,
Baiju M


More information about the bluebream mailing list