Re: [Repoze-dev] rss feed

2010-03-07 Thread Charlie Clark
Am 07.03.2010, 17:39 Uhr, schrieb Michael Haubenwallner mich...@d2m.at: hi, i was wondering why the repoze.org feed was not coming up in planetzope - seems it does not validate anymore. Please check errors at http://feedvalidator.org/check.cgi?url=http://blog.repoze.org/rss.xml The RSS feed

Re: [Repoze-dev] Continuous integration with Hudson

2010-03-07 Thread Chris McDonough
On 3/7/10 2:55 AM, Sebastien Douche wrote: Hi again, I'm learning Hudson[1] for the bluebream project. BFG is a small project, thus I started with it. What do you think? http://hudson.securactive.org/ [1] http://hudson-ci.org/ I think your permissions might be a little screwy there..

Re: [Repoze-dev] rss feed

2010-03-07 Thread Chris McDonough
On 3/7/10 11:39 AM, Michael Haubenwallner wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hi, i was wondering why the repoze.org feed was not coming up in planetzope - seems it does not validate anymore. Please check errors at

Re: [Repoze-dev] Continuous integration with Hudson

2010-03-07 Thread Sebastien Douche
On Sun, Mar 7, 2010 at 20:10, Chris McDonough chr...@plope.com wrote: I think your permissions might be a little screwy there.. no projects show up in the hudson view for anonymous users. oops, done: http://hudson.securactive.org/ -- Sebastien Douche sdou...@gmail.com Twitter:

Re: [Repoze-dev] rss feed

2010-03-07 Thread Chris McDonough
On 3/7/10 2:16 PM, Chris McDonough wrote: On 3/7/10 11:39 AM, Michael Haubenwallner wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hi, i was wondering why the repoze.org feed was not coming up in planetzope - seems it does not validate anymore. Please check errors at

Re: [Repoze-dev] Continuous integration with Hudson

2010-03-07 Thread Chris McDonough
On 3/7/10 2:26 PM, Sebastien Douche wrote: On Sun, Mar 7, 2010 at 20:10, Chris McDonoughchr...@plope.com wrote: I think your permissions might be a little screwy there.. no projects show up in the hudson view for anonymous users. oops, done: http://hudson.securactive.org/ Looks great,

[Repoze-dev] Handling webob.exc.HTTPException in router.

2010-03-07 Thread Andrey Popp
I have ideological question -- why not to handle webob.exc.HTTPException in router? I think it is very useful, consider for example the following case: I need to define some views that works with JSON encoded request body, so there is base class for them: class JSONView(object): def

Re: [Repoze-dev] Handling webob.exc.HTTPException in router.

2010-03-07 Thread Chris McDonough
On 3/7/10 6:46 PM, Andrey Popp wrote: I have ideological question -- why not to handle webob.exc.HTTPException in router? I think it is very useful, consider for example the following case: I need to define some views that works with JSON encoded request body, so there is base class for

Re: [Repoze-dev] Handling webob.exc.HTTPException in router.

2010-03-07 Thread Chris McDonough
On 3/7/10 7:36 PM, Andrey Popp wrote: Yes, I know I can make it work by returning webob.exc.HTTPException objects as response. But the point was to decode JSON request at view initialization phase and raise webob.exc.HTTPBadRequest if needed, so in subclasses at request processing phase