paulsp 2002/07/01 20:18:21
Added: webapp/WEB-INF/templates/vm/portlets/html
customize-securityref_row.vm customize-skin_row.vm
Log:
Common files used to customize the skin and security_ref
Revision Changes Path
1.1
jakarta-jetspeed/webapp/WEB-INF/templates/vm/portlets/html/customize-securityref_row.vm
Index: customize-securityref_row.vm
===================================================================
## $Id: customize-securityref_row.vm,v 1.1 2002/07/02 03:18:20 paulsp Exp $
<tr>
<td><b>$l10n.CUSTOMIZER_SECURITY_REF</b></td>
<td>
<select name="_security_ref">
<option value="">-- Default--
#foreach ($security in $securitys)
<option value="$security.Name" #if ($security.Name == $!security_ref)
SELECTED #end>
#if ($security.Title) $security.Title #else $security.Name #end
#end
</select>
</td>
</tr>
1.1
jakarta-jetspeed/webapp/WEB-INF/templates/vm/portlets/html/customize-skin_row.vm
Index: customize-skin_row.vm
===================================================================
## $Id: customize-skin_row.vm,v 1.1 2002/07/02 03:18:21 paulsp Exp $
<tr>
<td><b>$l10n.CUSTOMIZER_SKIN</b></td>
<td>
<select name="_skin">
<option value="">-- Default--
#foreach ($temp_skin in $skins)
<option value="$temp_skin.Name" #if ($temp_skin.Name == $!current_skin)
SELECTED #end>
#if ($temp_skin.Title) $temp_skin.Title #else $temp_skin.Name #end
#end
</select>
</td>
</tr>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>