You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A possible fix would be to define a $portal_url Diazo/xslt variable and use it to generate the correct absolute url. The downside is that this would be the first variable in Barceloneta's manifest.cfg and that won't even be used in main rules.xml.
Another solution would be to just remove the initial slash from backend.xml link tag but I'm not sure this wouldn't impact caching (different URLs only working because of Acquisition).
Please merge my branch that resolves issue #96,
where I changed the stylesheet path from an absolute one (starting with "/") to a relative path (starting with "./").
When I use backend.xml like this (in my theme):
<xi:include href="./++theme++barceloneta/backend.xml" />
and publish the site in a "subfolder" (using Virtual Host Moster), like this:
http://somesite.com/plonesite/
Everything works great except that barceloneta-compiled.css doesn't load because backend.xml defines it like this:
Notice the forward slash! So what is supposed to be this:
http://somesite.com/plonesite/++theme++barceloneta/backend.xml
turns into this:
http://somesite.com/++theme++barceloneta/backend.xml
Can you see the problem?
The text was updated successfully, but these errors were encountered: