Quoting "Piroumian, Konstantin" <[EMAIL PROTECTED]>:
> Hi, Cocooners!
>
> How do you feel about having a possibility to inherit action sets and
> extend
> them by other actions. In this case you can have one root action-set for
> the
> whole web application, which can include: session tracking, language
> selection, authorization, etc. actions. Then in every particular case
> the
> sub-system can add its own behavior by extending that actions set. E.g.:
>
> <action-set name="main">
> <act type="check-session" />
> <act type="lang-select" />
> <act type="some-other-action" />
> </action-set>
>
> Then it can be extended:
>
> <action-set name="forms" extends="main">
> <act type="form-validate" />
> <act type="navigate" />
> </action-set>
>
> <action-set name="menu" extends="main">
> <act type="menu-action" />
> </action-set>
IIRC this is already addressed by:
<action-set name="forms">
<act set="main"/>
<act type="form-validate" />
<act type="navigate" />
</action-set>
This way you can controll the point where a super-set takes place as well.
Giacomo
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]