We are using a custom layout for our Confluence 3.5.13 site, and are using the Global Theme. We recently added the DOC space to include the local 3.5 Confluence Documentation as part of our Confluence site. We would like to apply the custom layout to the DOC space but are unable to get it to work with the Documentation Theme in this space. We have tried to create a custom layout for the space but it is not recognizing the page tree. I've read the user community posts and the Atlassian documentation but haven't found a solution to our problem. In our code, it calls it this way:
<div class="spacetree">
#includePage($helper.spaceKey "TreeNavigation") </div>
but we see a Page Not Found error instead of the tree navigation for the space. I've read related posts but have not found a solution to this issue. Any ideas how to apply our custom layout to the documentation theme in this space?
Thanks!
Christi
I'm was just having the same problem, and think I worked it out.
#includePage($helper.spaceKey "Menu")
in the "Main Layout" decorator (includes/main.vnd) then I always get a "Page not found" error.
If i move the same line of code into the "Page Layout" decorator (decorators/page.vmd) then it will work.
I was banging my head against the wall, and then as I was writing a 'me too' reply to this post, I tried replacing the line of code with this, and it worked:
#includePage("PORTAL" ".menu")
I tried this as well. I found that this as well as using #includePage($spaceKey "TreeNavigation") works for main.vmd. However, while I can see the page tree being displayed, it can't seem to find any of the pages (i.e. it displays a empty page tree).
Update: If I include a pagetree in the page, the pagetree in main.vmd displays the pages correctly. Taking the pagetree withing the page away and the pagetree in main.vmd displays an empty pagetree again... weird
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
please see this link: http://confluence.atlassian.com/display/DOC/Adding+a+Navigation+Sidebar
I think, this should help.
Raffy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, Raffy.
This is where I found the information to add the sidebar. The code is correct but it is not calling the page for some reason.
Regards,
ChristiK
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Christi,
Probably a daft question, but do you have a page called "TreeNavigation" in the root of the space you are trying to apply the custom layout to?
Andrew.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Andrew,
Not a daft question at all! Yes, I have a page called TreeNavigation at the top of the hierarchy in the space.
Christi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm, permissions issue? The TreeNavigation page doesn't have any view level resitrctions on it does it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There are no view restrictions. There are edit restrictions on the Documentation Home Page but nothing on the TreeNavigation page.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.