> The only obsticle that I've seen so far is that action names are > global (ie, login button called 'login' is global and not > loginDialog.login) This means you will have to have some convention so > you don't step on each others toes. (prefix non-global actions, etc)
I believe you are referring to WTKX IDs, not action names. If so, this behavior has been corrected for Pivot 1.5: http://issues.apache.org/jira/browse/PIVOT-428 In previous versions, includes would inherit the namespace of the parent WTKX file if the include was not given its own wtkx:id. This wasn't very intuitive. We now define an "inline" attribute for the <wtkx:include> element. If true, the include inherits the parent's namespace; otherwise, it defines its own. The default value is false. G
