blob: cc700f6e068c23a9c486094bee3eed242e7e1ee1 [file] [log] [blame]
<#--
/*
* $Id: pom.xml 559206 2007-07-24 21:01:18Z apetrelli $
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
-->
<#include "tigris-macros.ftl">
<#assign hideNav = true>
<#call startPage pageTitle="Validator Details"/>
<table>
<tr><td>Validated Class:</td><td>${action.stripPackage(clazz)}</td></tr>
<tr><td>Context:</td><td>${context}</td></tr>
<tr><td>Validator Number:</td><td>${selected}</td></tr>
<tr><td>Validator Type:</td><td>${action.stripPackage(selectedValidator.class)}</td></tr>
</table>
<table width="100%" title="Properties">
<tr><th>Name</th><th>Value</th><th>Type</th></tr>
<#foreach prop in properties>
<tr <#if prop_index%2 gt 0>class="b"<#else>class="a"</#if>>
<td>${prop.name}</td>
<td><#if prop.value?exists> ${prop.value?string} <#else> <b>null</b> </#if></td>
<td>${prop.type.name}</td>
</tr>
</#foreach></table>
<#call endPage>