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>
Something like that.
Maybe this can be used if a Flow Map concept will be implemented in C2.
Regards,
Konstantin Piroumian.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]