We are using confluence to build up a suite of documentation, is there a neat way to extract a summary of delta information (changes from one version of a page to the next) from all pages within a specified tree ?
Hey thanks for the rapid response, really appreciated, Ill give that a try
Rgds
Pam
Hello Pamela, you can see which pages where updated using the following query.
SELECT spaces.spacename, MAX(content.lastmoddate) FROM content, spaces WHERE content.spaceid = spaces.spaceid GROUP BY spaces.spacename;
Further to it you can compare page versions, looking into the version
column within the content
table from Confluence database, and making a diff between the corresponding content from the other table bodycontent
. For documentation reference you can refer to this.
Hope this can put you on the right track to achieve the desired result.
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.