With Nagare, every applications named <name> has a static
directory served by the URL `/static/<name>`.
By default, This is the `static` directory where your application
is installed (you can change it with the `static` parameter
of the `[application]` section in the application configuration
file).
For example, Nagare is normally installed by easy_install under
`<NAGARE_HOME>/lib/python2.5/site-packages/nagare-0.1.0-py2.5.egg`.
So the URL `/static/nagare/` go to
`<NAGARE_HOME>/lib/python2.5/site-packages/nagare-0.1.0-py2.5.egg/
static`.
Note that if you want to access the css and javascript of _your_
application,
you can give only a relative path to `h.head.css_url()` and
`h.head.javascript_url()`. So `h.head.css_url('path/to/a/css')` is
equivalent
to `h.head.css_url('/static/<name>/path/to/a/css').
(see
http://www.nagare.org/trac/wiki/RendererObjects#head-renderer)