How can I setup Plone 4.0.7 for Diazo? [closed]
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
开发者_如何学C Improve this questionI would like to know the correct steps to setup Diazo in a Plone 4.0.7 installation.
Thanks in advance.
Alano
plone.app.theming is not supported on Plone 4.0. You should use Plone 4.1.
First, upgrade to Plone 4.1.
Then you can use plone.app.theming if you add the KGS to your buildout:
- http://good-py.appspot.com/release/plone.app.theming/1.0b8?plone=4.1rc3
In practice, that means editing your buildout.cfg file as follows. Add plone.app.theming to your instance eggs:
[instance]
eggs += plone.app.theming
And update the [versions] section as follows. Either include all the version pins:
# Known good set for plone.app.theming version 1.0b8
# The latest version can be found at
# http://good-py.appspot.com/release/plone.app.theming/1.0b8?plone=4.1rc3
[versions]
AccessControl = 2.13.4
Acquisition = 2.13.7
ClientForm = 0.2.10
DateTime = 2.12.6
…
Or extend the good-py config:
[buildout]
extends = http://good-py.appspot.com/release/plone.app.theming/1.0b8?plone=4.1rc3
versions = versions
Then follow the plone.app.theming and diazo instructions:
- http://pypi.python.org/pypi/plone.app.theming/1.0b8
- http://diazo.org
精彩评论