Changeset 9
- Timestamp:
- 01/22/06 17:08:22
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/deployment/webadmin/webapp/resources/en_US/default/default.xsl
r8 r9 95 95 <xsl:variable name="authuser-showUpdateList" select="/bedeworkadmin/urlPrefixes/authuser/showUpdateList/a/@href"/> 96 96 <xsl:variable name="authuser-initUpdate" select="/bedeworkadmin/urlPrefixes/authuser/initUpdate/a/@href"/> 97 <xsl:variable name="authuser-fetchForUpdate" select="/bedeworkadmin/urlPrefixes/authuser/fetchForUpdate/a/@href"/> 97 <xsl:variable name="authuser-fetchForUpdate" select="/bedeworkadmin/urlPrefixes/authuser/fetchForUpdate/a/@href"/><!-- used --> 98 98 <xsl:variable name="authuser-update" select="/bedeworkadmin/urlPrefixes/authuser/update/a/@href"/> 99 99 <xsl:variable name="admingroup-showModForm" select="/bedeworkadmin/urlPrefixes/admingroup/showModForm/a/@href"/> … … 1828 1828 <xsl:template name="authUserList"> 1829 1829 <h2>Modify Users</h2> 1830 <p>Click on the user that you would like to update:</p>1831 1830 1832 1831 <table id="commonListTable"> 1833 1832 <tr> 1834 <th>User id</th>1833 <th>UserId</th> 1835 1834 <th>Roles</th> 1835 <th colspan="2">update:</th> 1836 1836 </tr> 1837 1837 1838 1838 <xsl:for-each select="bedeworkadmin/authUsers/authUser"> 1839 <tr> 1840 <td> 1841 <xsl:copy-of select="account/*"/> 1839 <xsl:sort select="account" order="ascending" case-order="upper-first"/> 1840 <tr> 1841 <td> 1842 <xsl:value-of select="account"/> 1842 1843 </td> 1843 1844 <td> … … 1851 1852 alert; <xsl:text> </xsl:text> 1852 1853 </xsl:if> 1854 </td> 1855 <td> 1856 <xsl:variable name="account" select="account"/> 1857 <a href="{$authuser-fetchForUpdate}&editAuthUserId={$account}"> 1858 roles 1859 </a> 1860 </td> 1861 <td> 1862 <a href=""> 1863 preferences 1864 </a> 1853 1865 </td> 1854 1866 </tr> trunk/calendar3/webadmin/war/docs/authuser/authUserList.jsp
r2 r9 15 15 <logic:iterate id="authUser" name="peForm" property="authUsers" > 16 16 <authUser> 17 <bean:define id="account" name="authUser" property="user.account"/> 18 <% rpitemp="/authuser/fetchForUpdate.do?editAuthUserId=" + account; %> 19 <account> 20 <genurl:link page="<%=rpitemp%>"> 21 <bean:write name="authUser" property="user.account" /> 22 </genurl:link> 23 </account> 17 <account><bean:write name="authUser" property="user.account" /></account> 24 18 <superUser><bean:write name="authUser" property="superUser"/></superUser> 25 19 <alertUser><bean:write name="authUser" property="alertUser"/></alertUser>
