From: <jbo...@li...> - 2005-12-22 14:54:42
|
Author: aron.gombas Date: 2005-12-22 09:54:19 -0500 (Thu, 22 Dec 2005) New Revision: 1922 Added: trunk/labs/kosmos/web-portlet/pages/svn_monitoring_committer_details.jsp Log: Ooops, this file was left out Added: trunk/labs/kosmos/web-portlet/pages/svn_monitoring_committer_details.jsp =================================================================== --- trunk/labs/kosmos/web-portlet/pages/svn_monitoring_committer_details.jsp 2005-12-22 14:39:52 UTC (rev 1921) +++ trunk/labs/kosmos/web-portlet/pages/svn_monitoring_committer_details.jsp 2005-12-22 14:54:19 UTC (rev 1922) @@ -0,0 +1,40 @@ +<%@include file="includes/taglibs.jsp"%> + +<portlet:defineObjects/> +<fmt:setBundle basename="hu.midori.kosmos.portlet.svn.svn_monitoring" scope="application"/> + +<table> + <tr class="portlet-section-body"> + <td valign="top"><fmt:message key="svnrepository.mostActiveCommitters"/>:</td> + <td valign="top"><img src="<c:out value="${repository.commitsPerAuthorChartUrl}"/>" title="<fmt:message key="svnrepository.mostActiveCommitters"/>"/></td> + <td valign="top"> + + <c:set var="listSize" value="${fn:length(repository.commitsPerAuthor)}"/> + <c:set var="listIndex" value="0"/> + <%@include file="includes/table_expander.jsp" %> + + <table> + <c:forEach var="item" items="${repository.commitsPerAuthor}" varStatus="status"> + <c:choose> + <c:when test="${status.index < 10}"> + <tr id="row-<portlet:namespace/>-0-<c:out value="${status.index}"/>" class="portlet-section-alternate"> + </c:when> + <c:otherwise> + <tr id="row-<portlet:namespace/>-0-<c:out value="${status.index}"/>" style="display: none" class="portlet-section-alternate"> + </c:otherwise> + </c:choose> + <td><c:out value="${1 + status.index}"/></td> + <td><c:out value="${item.key}"/></td> + <td><c:out value="${item.value}"/></td> + </tr> + </c:forEach> + </table> + </td> + </tr> + <%@include file="includes/table_footer.jsp"%> +</table> + +<form action="<portlet:renderURL/>" method="post"> + <input type="submit" class="portlet-form-button" name="submit" value="<fmt:message key="action.back"/>"/> +</form> + \ No newline at end of file |