On Sep 16, 2007, at 3:39 AM, Brett Porter wrote:
Interesting. Are the fields like the "status" some kind of
automatically updated field?
well anything is possible. Right now it's a user that decides when
the status changes but we can imagine anything like closing it
automatically when the associated jira issue is closed or whatever.
To modify it right now, the user simply needs to edit the page
objects but again we can do whatever we want including editing it in
view mode if that's what we want.
FWIW that summary page has the following content for displaying the
table:
1.1 List of current Design proposals
#set ($sql = ", BaseObject as obj where obj.name=doc.fullName and
obj.className='XWiki.DesignClass' and
obj.name<>'XWiki.DesignClassTemplate'
order by doc.name asc")
#set ($designs= $xwiki.searchDocuments($sql))
<table id="designTable" class="grid sortable filterable doOddEven"
cellpadding="0" cellspacing="0" border="0">
<tr class="sortHeader">
<th>Title</th>
<th class="selectFilter">Status</th>
<th>Lead</th>
<th>JIRA</th>
</tr>
#foreach ($design in $designs)
<tr style="cursor: pointer;"
onclick="window.location='$xwiki.getURL($design)'">
#set ($designDoc = $xwiki.getDocument($design))
<td>
*$designDoc.display("Title")*
</td>
<td>
$designDoc.display("Status")
</td>
<td>
$designDoc.display("Lead")
</td>
<td>
$designDoc.display("JIRAIssueReference")
</td>
</tr>
#end
</table>
-Vincent
On 15/09/2007, at 5:29 AM, Vincent Massol wrote:
Hi there,
Just to let you know that I've done a quick implementation (took
me 20 minutes) of the Design Dashboard for XWiki's need on http://
www.xwiki.org/xwiki/bin/view/Design/
Thought this is something you could find interesting since this is
similar to what you have done on http://docs.codehaus.org/display/
MAVEN/All+Proposals
Cheers,
-Vincent
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
Brett Porter - [EMAIL PROTECTED]
Blog: http://www.devzuz.org/blogs/bporter/
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]