For web app at
domain.org/app,
server.webpath successfully avoids needing to add /app to hyperlink
URLs. (For example..."/mymethod" works instead of "/app/mymethod".)
It does NOT seem to avoid need for /app in URL to **CSS files**
or images.
Why not?
Here is my config part for CSS...
[/css]
static_filter.on = True
static_filter.dir = "%(top_level_dir)s/views/css"
Here is what I'd like to see.....
<link href="/css/main.css" type="text/css" rel="stylesheet"/>
Instead I must do...
<link href="/app/css/main.css" type="text/css" rel="stylesheet"/>
Any help would be greatly appreciated.
Chris