1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<?xml version="1.0" standalone="yes"?>
<wo class="WOMetaRefresh">
<binding name="action" passthrough="NO" defaults="Actions"/>
<binding name="href"/>
<binding name="pageName" passthrough="NO" defaults="Page Names"/>
<binding name="directActionName" passthrough="NO" defaults="Direct Actions"/>
<binding name="actionClass" passthrough="NO" defaults="Direct Action Classes"/>
<binding name="disabled" passthrough="NO" defaults="YES/NO" />
<binding name="fragmentIdentifier" />
<binding name="timeout" passthrough="NO" />
<binding name="queryDictionary" passthrough="NO"/>
<!-- SOPE -->
<binding name="otherTagString" passthrough="NO"/>
<validation message="either one of 'action', 'href', or 'pageName' may be bound, or either or both of 'actionClass' and 'directActionName' may be bound">
<count test="!=1">
<bound name="action"/>
<bound name="href"/>
<bound name="pageName"/>
<or>
<bound name="actionClass"/>
<bound name="directActionName"/>
</or>
</count>
</validation>
</wo>
|