vote up 0 vote down star

In Pylons I have a mako template linking to /static/resource.css. How do I automatically link to /pylons/static/resource.css when I decide to map the application to a subdirectory on my web server?

flag

2 Answers

vote up 2 vote down check

If you want your static file links to be relative to your app root, wrap them like this in your templates (assuming Mako and Pylons 0.9.7):

${url('/static/resource.css')}

The root path of your app will be prepended. No need to define specific routes for each file.

link|flag
vote up 1 vote down

What you want are static routes:

map.connect('resource', '/static/resource.css', _static=True)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.