Personal tools
You are here: Home PC zope&plone COREBlog2 Plone3
Document Actions

COREBlog2 Plone3

by かわうぃん last modified 2008-01-27 01:14

Plone3にCoreBlog2をInstallするためのメモ

COREBlog2が壊れたプロダクトとして表示

以下は、2008年1月27日現在、COREBlog2ベータ版を適用することで回避されています。

************************************************

新しいPlone3にCOREBlog2をInstallすると次のようなエラーが表示されます。


ERROR CMFQuickInstallerTool COREBlog2, 
exceptions.ImportError: No module named migrate

Migrateが必要なので 古いバージョンのCMFDynamicViewFTIからCopy.l

wget http://plone.org/products/cmfdynamicviewfti/releases/3.0/CMFDynamicViewFTI-3.0.tar.gz
# cd CMFDynamicViewFTI
# cp migrate.py /opt/Plone-3.0.5/zinstance/Products/CMFDynamicViewFTI/

すると。


**********************

The product_name parameter of ToolInit is now ignoredの修正

メッセージ
2008-01-24 23:23:54 WARNING SecurityInfo
Class "COREBlogEntry" had conflicting security declarations
/opt/Plone-3.0.5/zinstance/Products/COREBlog2/__init__.py:53:
DeprecationWarning: The product_name parameter of ToolInit is now ignored
  product_name=PROJECTNAME, icon='tool.gif',

修正するファイル $ vi __init__.py

修正前

utils.ToolInit('COREBlog Tool', tools=(COREBlogTool.COREBlog2Tool,),
      product_name=PROJECTNAME, icon='tool.gif',
      ).initialize(context)

修正後


utils.ToolInit('COREBlog Tool', tools=(COREBlogTool.COREBlog2Tool,),
       icon='tool.gif',
       ).initialize(context)



Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: