Hi,
I'm going on vacation. When I come back after two-week holidays, I'd like to get the list of all the pages that will have been changed.
The macro {recently-updated} provides about 50 last changes, that is the maximum.
How to get the looooong list of all the user's commits?
Thanks!
You want updates for all spaces?
Before vacation, subscribe to daily updates [Your name > Settings > Email]
You will then receive daily emails listing all changes (that you have permission to view)
It's not precisely the same format as {recently-updated}, but will list all the changes that you've missed.
If you just want changes in a particular space, then start watching that space, and you can compile the emails when you return.
Hope this helps, and have a nice vacation.
Hallo Alex
Arun and Lis have given the two answers that I would recommend. However, I'd recommend that you use them both. :) So:
The reason for doing both is this:
I hope this helps!
Cheers, Sarah
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I like to use my RSS reader to track space updates across an entire Confluence instance. It's pretty easy to create an RSS feed link within Confluence by using the top-level Browse menu and click on "Feed Builder." From there, you can select the type of updates you want to track, which spaces, and if you click on "Advanced Options," you can specify the number of entries in the feed. For performance reasons, the maximum limit is 200 entries, which may be suit you fine when you come back.
If you want to ensure you track everything that changed while you're away, you can plug the generated feed link into your feed reader and have the reader refresh the link frequently (daily or every few hours).
cheers,
Arun
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thans a lot, guys.
Thank you very much!
All advice is really helpful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could use a basic SQL Query (assuming SQL Server):
SET ROWCOUNT 300;
select content.title, content.lastmodifier, content.lastmoddate , spaces.spacename, spaces.spacekeyfrom content, spaces where contenttype='PAGE' and content.spaceid=spaces.spaceid order by lastmoddate desc
If you're using MySQL you could use the Limit keyword instead of setting the rowcount
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.