Hi all,
I was wondering if there was a way to strip all content from a Confluence page (headers, footers, etc.) and only have user-created HTML (A couple buttons and words).
My reasoning is trying to have authentication access to an iFrame that will be outward facing. We want to create the iFrame and point it to a blank Confluence page, then only give certain Confluence users access to edit it.
Thanks in advance!
Scroll Viewport let you do this. It provides for simple content theming for Confluence (no need to deal with overly complex Confluence themes).
In your case, you can create a template that only outputs the "naked" content like this:
<html> <head> <title>$page.title</title> </head> <body> $page.content </body> </html>
Please make sure to check out the Getting Started Guide (http://www.k15t.com/display/VPRT/Getting+Started+Guide) and the template reference (http://www.k15t.com/display/VPRT/Template+Reference).
Hope this helps,
-Stefan
Another approach you can use is to prevent Confluence from applying any decorator to the file. You do this by editing the decorators.xml file. Within the <decorator name="none"> block, add the following:
<url-pattern>/your-pattern</url-pattern>
hth,
-matt
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think any component of Confluence renders a naked page with only the contents. I've tried to do that before and I had to create a plugin to do that.
If you create a plugin for that, have a look at ViewPageAction#execute() in the source of Confluence (which you can download from http://my.atlassian.com). That will give you a good example of how Confluence renders content.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.