ibm - Connections dojo versions -


the ibm connections uses different dojo versions @ once. critical because both legacy , amd definitions used.

currently need access legacy modules amd ones , doesn't work, because necessary legacy modules loaded later amd requires them. in theory fixable changing dojo configuration (async , other parameters), looks haven't control on , not practice.

for example, com.ibm.servlets.amd.social.pim.1.0.resources uses amd, plugins advised written in legacy mode:

<?xml version="1.0" encoding="utf-8"?> <?eclipse version="3.4"?> <plugin>     <extension point="net.jazz.ajax.webbundles">     </extension>     <extension point="net.jazz.ajax.dojomodulebinding">         <dojomodulebinding bind="some.dojo.moduleclass" to="lconn.core.header" />     </extension> </plugin> 

is there way write extensions in amd mode? plugin.xml e.g.:

<?xml version="1.0" encoding="utf-8"?> <?eclipse version="3.4"?> <plugin>     <extension point="net.jazz.ajax.webbundles">     </extension>     <extension point="net.jazz.ajax.dojomodulebinding">         <dojomodulebinding bind="some/dojo/moduleclass" to="lconn.core.header" />     </extension> </plugin> 

or other way access legacy modules amd?

thanks.


Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -