It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I need to add to a list import with "html-include" macro, where I have the page ID to display... The idea is that each row in this list have the button to add/remove to favourite and add/remove from watchlist... I attached a example of the list... Please help...
thnx.
I'd like answer to this too. You can automatically generate a link that will do some of the work:
## @noparams <a href="/pages/addpagenotification.action?pageId=$content.getIdAsString()">Add Watcher</a>
Of course, this will only work for the page you are currently on. You'd probably have to manually update the code with each page ID.
Anyway, this fails for two reasons:
So yeah, I'd like to know how to do this too.
Hi Bryan,
For creating the list of pages I'd recommend using the Reporting plugin to do this. It could easily generate a table for you, with columns for page name, creator, last modified date etc. You could also have columns for specific actions you want to perform on each page. I've used this technique quite often, sometimes to offer a link for editing the page, or remove it, without having to go into the page itself. I'll post an example for you tomorrow.
Your desired actions are different though - to make the page a favourite or watch it. That should be do-able too. The Reporting plugin will give you the page id for each page in the table (content:id) and you can embed that in a suitable link. Firebug is useful for understanding what that link should be.
Here's an example in the old Atlassian forum where we inserted a page id into the normal Confluence URL for creating a comment. (we also inserted specific text).
http://forums.atlassian.com/message.jspa?messageID=257362632
Getting the link to act as a toggle may be tricky, but one step at a time!
Here's an example of embedding a page id into a link with the aid of Reporting. The link allows the page to be edited:
{report-table}
{local-reporter:content:children|type=page}{local-reporter}
{report-column:title=Page Name}{report-info:content:title|link=true}{report-column}
{report-column:title=Page Id}{report-info:content:id}{report-column}
{report-column:title=Edit}
{report-link:content:id|prefix=/pages/editpage.action?pageId=}Edit Page{report-link}
{report-column}
{report-column:title=Remove}
{report-link:content:id|prefix=/pages/removepage.action?pageId=}Remove Page{report-link}
{report-column}
{report-empty}No child pages found.{report-empty}
{report-table}
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHi Community! Kesha (kay-sha) from the Confluence marketing team here! Can you share stories with us on how your non-technical (think Marketing, Sales, HR, legal, etc.) teams are using Confluen...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.