[Repoze-dev] static views and @@

2010-06-24 Thread Chris Withers
Hi All, I've registered a static view with: config.add_static_view('static','mypackage:templates/static') Which, if I read the docs, means I should be able to build urls such as: /@@static/some.css However, the above 404s. If I change is to: /static/some.css ...it works. What am I doi

Re: [Repoze-dev] static views and @@

2010-06-24 Thread Wichert Akkerman
On 6/24/10 09:28 , Chris Withers wrote: > Hi All, > > I've registered a static view with: > > config.add_static_view('static','mypackage:templates/static') > > Which, if I read the docs, means I should be able to build urls such as: > > /@@static/some.css I can't remember seeing any use of @

Re: [Repoze-dev] static views and @@

2010-06-24 Thread Paul Everitt
On Jun 24, 2010, at 3:34 AM, Wichert Akkerman wrote: > On 6/24/10 09:28 , Chris Withers wrote: >> Hi All, >> >> I've registered a static view with: >> >> config.add_static_view('static','mypackage:templates/static') >> >> Which, if I read the docs, means I should be able to build urls suc

Re: [Repoze-dev] static views and @@

2010-06-24 Thread Chris Withers
Paul Everitt wrote: >> I can't remember seeing any use of @@ in BFG docs. Where did you see that? > > http://docs.repoze.org/bfg/current/narr/traversal.html#traversal-chapter > > """ > The traversal algorithm exposes two special cases: > > [snip[ Yep, and in my case, I can to this from the warn