Re: [Web-SIG] Announcing bobo

2009-06-18 Thread Martijn Faassen
Hey, On Thu, Jun 18, 2009 at 3:55 AM, Sergey Schetininmal...@gmail.com wrote: [snip]  In particular you should be able to assign a  component to any URL in the same sense that you  can give an object any name.  You should also  be able to build relocatable URL trees which can  be mounted

Re: [Web-SIG] Announcing bobo

2009-06-18 Thread Jim Fulton
(Note that this discussion is getting rather dense. I suggest reading my reply all the way through befor responding to individual points. :) On Jun 17, 2009, at 6:42 PM, Sergey Schetinin wrote: On 2009-06-17, Jim Fulton j...@zope.com wrote: On Jun 16, 2009, at 11:02 AM, Sergey Schetinin

Re: [Web-SIG] Announcing bobo

2009-06-18 Thread Sergey Schetinin
On 2009-06-18, Jim Fulton j...@zope.com wrote: (Note that this discussion is getting rather dense. I suggest reading my reply all the way through befor responding to individual points. :) On Jun 17, 2009, at 6:42 PM, Sergey Schetinin wrote: On 2009-06-17, Jim Fulton j...@zope.com wrote:

Re: [Web-SIG] Announcing bobo

2009-06-18 Thread Sergey Schetinin
On 2009-06-19, P.J. Eby p...@telecommunity.com wrote: At 02:46 AM 6/19/2009 +0300, Sergey Schetinin wrote: but wouldn't it be nice if we could finally just do things like from somebody_else.forum import ForumApp urlmap['/forum'] = ForumApp(db_config=...) The Folder example in the

Re: [Web-SIG] Announcing bobo

2009-06-18 Thread Sergey Schetinin
On 2009-06-19, P.J. Eby p...@telecommunity.com wrote: So you could implement your urlmap above more or less like this: @bobo.scan_class class UrlMap(dict): @bobo.subroute('/:name') def subitem(self, name): try: return self[name] except KeyError: