This question is in reference to Atlassian Documentation: Task Report Macro
How can I restrict the task report to summazire only those tasks, listed on the same page as the macro is - when I do not know the pagename yet - e.g. for templates or code snippets.
With other macros, there is a placeholder "@self" or "@localspace" available.
Here is what I would do. You will need the Confluence Source Editor. It is free and made by Atlassian. First add a task report macro to your page and set it up the way you want without the page ... we'll get to that in a sec.
image2016-8-4 11:7:45.png
Then open up the source of the page(top right corner of the editor) to grab the storage format for the macro.
image2016-8-4 11:8:44.png
image2016-8-4 11:9:27.png
Select the macro storage format and copy it. The highlighted part in the above image is the page parameter and we are going to create a user macro that will implement the built-in task report macro but will dynamically swap out the page parameter.
Go to Confluence Admin -> User Macros and create a new one. The below user macro definition is based on what you see above. If you want more of the report macro parameters set a certain way then do that before you copy the storage format for creating your user macro ... again we are just going to switch out that one "pages" parameter.
Page Task Report Macro
Macro Name
page_task_report
Macro Title
Page Task Report
Description
Whatever you want
Macro Body Processing
No macro body
Template
## Developed by: Davin Studer ## Date created: 08/04/2016 ## @noparams <ac:structured-macro ac:name="tasks-report-macro"> <ac:parameter ac:name="pages">$content.id</ac:parameter> <ac:parameter ac:name="labels">Stuff</ac:parameter> </ac:structured-macro>
You now have a macro that you can drop into your templates.
Sounds cool - and thanks for your effort to make it a tutorial
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Agree with Martin. This does not seem like a solution to the obvious need.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Currently, you cannot point the task report macro at the current page. This allows you to create a wrapper around the built-in task report macro that will dynamically put in the page id for you ... effectively giving you the ability to point it at the current page. It may not be the ideal but it allows you get that functionality now instead of having to wait for it to be natively implemented.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your quick response, Davin. Sorry about the way I expressed myself. My comment was aimed at Atlassian. To have to save the page I created and then search for that page is tedious when it should be straightforward. I created a template that includes a Task List for that page and would love to see that be able to reference <self> or something like that.
I don't have macro privs, so I can't implement your solution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Davin - thanks for the instructions, it helped me a lot :)
(removed description of the problem - as I managed to solve it)
It just works, my mistake. Thanks again!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Davin,
Many thanks for your help. The Confluence Source Editor sure is a great tool for this purpose.
Cheers !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Davin,
I'm trying to implement your solution but whitout success.
Firstly, I cannot see user macro in macro menu. That's strange!
Secondly, if I try to copy/paste source code block directly on page to switch out that one "pages" parameter I got error about content.id.
If i replace through source editor content.id by page Id value (get from page information URL) it works.
I certainly missed something.
Attached my macro definition, source editor block which works and error message if I put $content.id in source editor.
All help is welcome.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In your user macro definition change the Macro Name to something other than tasks-report-macro. That is the built-in macro and we are creating a macro that wraps around it so it needs a different name than the built-in one.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Davin, thanks for your time.
Unfortunately changing name of macro does not solved issue. I have replace macro name by customizedtaskreporting.
I 'm still not able to see macro using UI menu or Keyboad shortcut '[ '
Rebecca
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So the macro browser keyboard shortcut is '{' not '['. Was that just a typo or are you using the wrong shortcut?
After you save the user macro you may need to refresh your page as the macro names are cached. Once you've refreshed the page and clicked edit if you type '{' and then start typing customizedtaskreporting it should show.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Davin,
It's a nightmare. I already created macro in the past. I don't understand why I still cannot see macro in menu or using shortcut after having refreshed page.
Rebecca
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there an easier way to do this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately, I don't know a solution for this :(
Why is this question marked "solved"?
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.