Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to display a list of most recently created pages in Confluence 3.5

Piergiuliano Bossi March 7, 2012

Hi there,

In Confluence 3.5 is it possible to display a list of most recently created pages? Basically I'm not interested in seeing when a page is updated, but only when it's created.

If not with 3.5, can it be done with any other Confluence version?

Thanks,

bop

2 answers

1 accepted

1 vote
Answer accepted
MatthewC
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 7, 2012

There is way.... ;-)

Use some SQL with the SQL Macro plugin from Bob Swift (https://studio.plugins.atlassian.com/wiki/display/SQL/Confluence+SQL+Plugin ) Written for SQL server database

select c.TITLE, c.VERSION, c.CREATOR, c.CREATIONDATE, s.spacekey, s.spacename from
 "Confluence"."dbo"."CONTENT" c,
"Confluence"."dbo"."SPACES" s
where c.spaceid = s.spaceid and 
contenttype='PAGE' and content_status='current'
order by creationdate desc

You can also do it with the Customware Reporting plugin but the load it puts on the server is enough to kill it. here is a version that would work on the current space (I think....but I havent tested it)



{report-block:maxResults=5}
{content-reporter:type=page|space=@self}
{date-sort:content:creation date|order=descending}
{content-reporter}
{report-body}
{report-info:content:title|link=true} in {report-info:content:space|link=true}, created {report-info:content:creation date}
{report-body}
{report-block}

Piergiuliano Bossi March 7, 2012

Oh very nice, I'll give a try to the SQL Macro plugin. Thanks.

0 votes
Joe Clark
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 7, 2012

I don't think this is possible with any of the macros that come included with Confluence by default, but it should be pretty easy to write a user macro to do this!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events