Issue Details (XML | Word | Printable)

Key: HAUS-1644
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Unassigned
Reporter: Jody Garnett
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Haus Chores

table of context page export layout for GEOTDOC

Created: 07/Mar/08 05:17 PM   Updated: 17/Mar/08 04:44 PM
Component/s: Confluence
Affects Version/s: None
Fix Version/s: None

Time Tracking:
Not Specified


 Description  « Hide
In the past I have used a custom layout when exporting html content out of the geotools user guide; the recent upgrade (or change in policy) prevents acess to Layout options. The Layout link under Edit Site Layouts now returns the following: {warning}
You can not customise the site look and feel while a theme is active. You must first disable currently configured theme.{warning}

Disabling the current theme (ie choosing the default) has no effect.

Here is the layout I wish to apply:

#macro (displayContentTree $contentTree)
    <ul>
        #foreach ($rootNode in $contentTree.getRootNodes())
            #displayContentNodeAndChildren($rootNode)
        #end
    </ul>
#end

#macro (displayContentNodeAndChildren $node)
        #set ($page = $node.page)

        #if ($generalUtil.isSafeTitleForUrl($page.title))
<topic label="${page.title}" href="${page.title}.html">
        #else
<topic label="${page.id}" href="${page.title}.html">
        #end
        #if ($page.homePage)<!-- HOME --> #end
        #foreach ($childNode in $node.children)
            #displayContentNodeAndChildren($childNode)
        #end
</topic>
#end

<?xml version="1.0" encoding="UTF-8"?>
<?NLS TYPE="org.eclipse.help.toc"?>
<toc label="$space.name">
#displayContentTree($contentTree)
</toc>
<!-- Document generated by Confluence on $dateFormatter.formatDateTime($exportDate) -->
</toc>

I looked into exporting the site context from codehaus into my own copy of confluence for this work (which is an option) - but I am stuck because I am using 2.7 and cannot import a 2.6.x export.



 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Ben Walding added a comment - 07/Mar/08 09:07 PM
I'm surprised the 2.7 version can't import a 2.6 export.

Very weird.

There have been no security changes (apart from a 2.6 upgrade) that should affect your permissions.

That being said, when we did the upgrade, the default theme did change; so that's one source of confusion.


Jody Garnett added a comment - 07/Mar/08 09:11 PM
Yeah interesting; editing layouts was something you "left on" for my account a while back - as I watch sites like this one where the layout has been changed.

Chances are I lost this ability during some of the change of permissions to xircles.


Ben Walding added a comment - 17/Mar/08 04:44 PM
I've checked - you've got Confluence admin privileges. I will take a look at the theme editing capability.