blob: 6c1cfa8ae9699fee785c95c3900bead81d2dea7d (
plain) (
tree)
|
|
<!-- **************************************************************************
#
# Copyright (c) 2004-2011 Oracle Corporation.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#
# Kohsuke Kawaguchi, Anton Kozak
#
#
#************************************************************************** -->
<!--
Used to display indented nested portion of the form
-->
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<st:documentation>
<st:attribute name="isPropertyOverridden">
if present and true - the column will be highlight as overridden cascading property.
</st:attribute>
</st:documentation>
<tr>
<td colspan="2" class="${attrs.isPropertyOverridden? 'modified' :'original'}"/>
<td colspan="2">
<d:invokeBody />
</td>
</tr>
</j:jelly>
|