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
|
@ -0,0 +1,40 @@
|
|||
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
|
||||
|
||||
<%@ taglib prefix="form" uri="http://vitro.mannlib.cornell.edu/edit/tags" %>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
|
||||
|
||||
<tr class="editformcell">
|
||||
<td valign="top">
|
||||
<c:choose>
|
||||
<c:when test="${opMode eq 'equivalentProperty'}">
|
||||
<b>Property<sup>*</sup></b><br/>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<b>Superproperty<sup>*</sup></b><br/>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<select name="SuperpropertyURI">
|
||||
<form:option name="SuperpropertyURI"/>
|
||||
</select>
|
||||
<span class="warning"><form:error name="SuperpropertyURI"/></span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="editformcell">
|
||||
<td valign="top">
|
||||
<c:choose>
|
||||
<c:when test="${opMode eq 'equivalentProperty'}">
|
||||
<b>Equivalent Property<sup>*</sup></b><br/>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<b>Subproperty<sup>*</sup></b><br/>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<select name="SubpropertyURI" >
|
||||
<form:option name="SubpropertyURI"/>
|
||||
</select>
|
||||
<span class="warning"><form:error name="SubpropertyURI"/></span>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<input type="hidden" name="operation" value="${operation}" />
|
||||
<input type="hidden" name="opMode" value="${opMode}" />
|
Loading…
Add table
Add a link
Reference in a new issue