[Join-cvs] join1/src/web/jsp/artifact assemblies.jsp,1.4,1.5
Brought to you by:
lbroudoux
|
From: Laurent B. <lbr...@us...> - 2008-11-01 00:35:22
|
Update of /cvsroot/join/join1/src/web/jsp/artifact In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv1669/jsp/artifact Modified Files: assemblies.jsp Log Message: Fix for issue #2101946 : column with deploy link was not added when first assembly of list has no status yet Index: assemblies.jsp =================================================================== RCS file: /cvsroot/join/join1/src/web/jsp/artifact/assemblies.jsp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** assemblies.jsp 21 Oct 2007 18:56:55 -0000 1.4 --- assemblies.jsp 1 Nov 2008 00:35:17 -0000 1.5 *************** *** 68,79 **** <join:authorize role="manager"> <logic:present name="row"> ! <logic:notEmpty name="row" property="status"> ! <logic:equal value="true" name="row" property="status.terminal"> ! <display:column headerClass="empty" media="html" url="/action/deployment?op=form" paramId="assemblyKey" paramProperty="key"> <html:img page="/images/16x16/reload.gif" alt="Deploy this assembly"/> ! </display:column> ! </logic:equal> ! </logic:notEmpty> </logic:present> </join:authorize> --- 68,79 ---- <join:authorize role="manager"> <logic:present name="row"> ! <display:column headerClass="empty" media="html" url="/action/deployment?op=form" paramId="assemblyKey" paramProperty="key"> + <logic:notEmpty name="row" property="status"> + <logic:equal value="true" name="row" property="status.terminal"> <html:img page="/images/16x16/reload.gif" alt="Deploy this assembly"/> ! </logic:equal> ! </logic:notEmpty> ! </display:column> </logic:present> </join:authorize> |