Closed pbauer closed 5 years ago
@pbauer thanks for creating this Pull Request and help improve Plone!
To ensure that these changes do not break other parts of Plone, the Plone test suite matrix needs to pass.
Whenever you feel that the pull request is ready to be tested, either start all jenkins jobs pull requests by yourself, or simply add a comment in this pull request stating:
@jenkins-plone-org please run jobs
With this simple comment all the jobs will be started automatically.
Happy hacking!
For comparison, this is the PR from plone.app.event: https://github.com/plone/plone.app.event/pull/287
There is also the change from a <browser:resourceDirectory>
to <plone:static>
. A plone:static can live in the ZODB, which would explain the error you're facing.
Done
@jenkins-plone-org please run jobs
@jenkins-plone-org please run jobs
Same as in p.a.event. Fixes #157
This still yields because
queryUtility(IResourceDirectory, name='persistent')
cannot find a resource directory:My guess was that it needed a
<include package="plone.resource" />
in the configure.zcml of p.a.discussion but that did not fix it. Anyone?