We use AutoExport forked by skeary-immt/confluence-autoexport-plugin which forked from atllassian labs since confluence 5.5 is not supported yet.
When will it be supported for Confluence 5.5 ?
In a former version we were able to provide a custom stylesheet tag with an relative uri which is now replaced by the confluenceUri.
Is it possible to change the confluence url via the provided template ?
I tried the following:
## #set ($siteroot = "") ##
or
## #set ($confluenceUri= "") ##
but href attribute always gets overwritten with the confluence url, so our automatic export to the http server won't work again, because we will have to search replace the url.
Our template:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <HEAD> <META http-equiv="pragma" content="no-cache"> <META http-equiv="cache-control" content="no-cache"> <META http-equiv="expires" content="0"> <LINK type="text/css" rel="stylesheet" href="resources/space.css"> <title>$page.title</title> <META http-equiv="Content-Type" content="text/html;charset=UTF-8"></HEAD> <body> <div id="PageContent"> <div class="pagecontent"> <div class="wiki-content"> $body </div> </div> </div> <DIV class="footer"> copyright 2014 by curecomp Software Services GmbH </DIV> </body> </html>
produces:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML> <HEAD> <META http-equiv="pragma" content="no-cache"> <META http-equiv="cache-control" content="no-cache"> <META http-equiv="expires" content="0"> <LINK type="text/css" rel="stylesheet" href="http://confluence.clevercure.com/pages/resources/space.css"> <TITLE>Ablaufüberwachung</TITLE> <META http-equiv="Content-Type" content="text/html;charset=UTF-8"></HEAD> <BODY> <DIV id="PageContent"> <DIV class="pagecontent"> <DIV class="wiki-content"> .... </DIV> </DIV> </DIV> <DIV class="footer"> copyright 2014 by curecomp Software Services GmbH </DIV> </BODY> </HTML>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.