I defined my resource directory in the configure.zcml file:
<plone:static
type="plone"
name="stuff.dropdownmenu"
directory="static" />
I defined my JS resource in the registry.xml file:
<records
prefix="plone.resources/stuff"
interface='Products.CMFPlone.interfaces.IResourceRegistry'>
<value key="js">++plone++stuff.dropdownmenu/stuff.js</value>
</records>
My question is: what is the correct tag element value in the Bundle definition:
<records
prefix="plone.bundles/stuffdropdown"
interface='Products.CMFPlone.interfaces.IBundleRegistry'>
<value key="resources" purge="false">
<element>???<element>
</value>
<value key="enabled">True</value>
</records>
Is this part of stuffthe attribute prefix or ++plone++stuff.dropdownmenu/stuff.js?
Regards
source
share