Improve output: distinguish between failed assertions (failures) and unexpected exceptions (errors), and print a filtered stack trace for any exception.
This commit is contained in:
commit
4f2e303079
1839 changed files with 235630 additions and 0 deletions
50
webapp/web/templates/edit/specific/user_retry.jsp
Normal file
50
webapp/web/templates/edit/specific/user_retry.jsp
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||
|
||||
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:c="http://java.sun.com/jstl/core" xmlns:form="http://vitro.mannlib.cornell.edu/edit/tags" version="2.0">
|
||||
|
||||
<tr class="editformcell">
|
||||
<td valign="bottom" colspan="2">
|
||||
<b>User Name*</b><br/>
|
||||
<input type="text" name="Username" value="${formValue['Username']}" size="60" maxlength="120" />
|
||||
<span class="warning"><form:error name="Username"/></span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="editformcell">
|
||||
<td valign="bottom" colspan="1">
|
||||
<b>First Name</b><br/>
|
||||
<input type="text" name="FirstName" value="${formValue['FirstName']}" size="30" maxlength="120"/>
|
||||
<span class="warning"><form:error name="FirstName"/></span>
|
||||
</td>
|
||||
<td valign="bottom" colspan="1">
|
||||
<b>Last Name</b><br/>
|
||||
<input type="text" name="LastName" value="${formValue['LastName']}" size="30" maxlength="120"/>
|
||||
<span class="warning"><form:error name="LastName"/></span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="editformcell">
|
||||
<td valign="bottom" colspan="2">
|
||||
<b>Role</b><br/>
|
||||
<select name="RoleURI">
|
||||
<form:option name="Role"/>
|
||||
</select>
|
||||
<span class="warning"><form:error name="Role"/></span>
|
||||
</td>
|
||||
</tr>
|
||||
<c:if test="${empty user.md5password}">
|
||||
<tr class="editformcell">
|
||||
<td valign="bottom" colspan="2">
|
||||
<b>Password (6-12 characters)</b><br/>
|
||||
<input type="password" name="Md5password" value="${formValue['Md5password']}" size="64" maxlength="128"/>
|
||||
<span class="warning"><form:error name="Md5password"/></span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="editformcell">
|
||||
<td valign="bottom" colspan="2">
|
||||
<b>Confirm password</b><br/>
|
||||
<input type="password" name="passwordConfirmation" value="" size="64" maxlength="128"/>
|
||||
</td>
|
||||
</tr>
|
||||
</c:if>
|
||||
</jsp:root>
|
Loading…
Add table
Add a link
Reference in a new issue