Plone 4 的 API?
我想知道 Plone 4 是否有 API。我在 api.plone.org 上没有看到任何记录。
本质上我想做的是将内容通过管道传输到 Plone 页面。我们在 MySQL 中有许多查找表,如果它们的内容可以移植到 Plone,将允许在 Plone 中找到内容并建立索引。这些表每年大约更新四次,因此每次通过管道传输时,它都会成为同一文档的新版本。
I am wondering if Plone 4 has an API. I don't see one documented on api.plone.org.
Essentially what I would like to do is pipe content to a Plone page. We have a number of lookup tables in MySQL which if their content could be ported to Plone would allow the content to be found and indexed in Plone. These tables are updated about four times a year so each time it is piped it would become a new version of the same document.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
api.plone.org 已过时。
如果您想了解如何使用 Python 对 Plone 进行编程,请阅读此处:
http://collective-docs.readthedocs。 org/en/latest/index.html
然而,Plone 与任何其他 Python 程序没有什么不同。您可以将标准 Python MySQL 库和框架与 Plone 结合使用。
有一个用于将内容导入到 Plone 的框架,称为 Transmogrifier:
http://pypi.python.org/pypi/collective。 transmogrifier/1.0
以及各种子包:
http://plone.org/products/mr.migrator
http://www.slideshare.net/regebro/transmogrifier-migration-to- plone-with-less-pain-2387600
Plone Conference 2011 有一个将 Liferay CMS SQL 数据导入到 Plone 的示例,但是据我所知,该演示文稿尚未上线。
任何情况下都需要高级 Python 技能。
api.plone.org is outdated.
If you want to know how to program Plone with Python read here:
http://collective-docs.readthedocs.org/en/latest/index.html
However Plone is not different from any other Python program. You can use standard Python MySQL libraries and frameworks with Plone.
There exist a framework for importing content to Plone called Transmogrifier:
http://pypi.python.org/pypi/collective.transmogrifier/1.0
And various subpackages:
http://plone.org/products/mr.migrator
http://www.slideshare.net/regebro/transmogrifier-migrating-to-plone-with-less-pain-2387600
Plone Conference 2011 had an example of importing Liferay CMS SQL data to Plone but AFAIK this presentation is not on-line yet.
Advanced Python skills needed in any case.