使用Resource Folder和Diazo Resources的文档,猜想我可以分别创建一个资源文件夹,如下所示:
<!-- ZCML resourceDirectory -->
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser">
<browser:resourceDirectory
name="my.theme"
directory="resources" />
</configure>
和
<configure
...
xmlns:plone="http://namespaces.plone.org/plone">
<plone:static
name="my.theme"
directory="resources"
type="theme" />
</configure>
我的问题是:我可以使用同一个目录来满足两个资源文件夹注册的需要吗?如果不合适,应该发生什么问题?