不带克隆体的变形器
我想在 plone 之外使用 c.transmogrifier 。距离独立克隆还有多远?
实际上,我在 trunk 中看到很少与 plone 相关的导入和仅 plone 特定的代码 这样看来是可行的。
是否有任何路线图或任何待办事项/建议列表来实现此目的?
I'd like to user c.transmogrifier outside plone. How far is it from being plone-independent?
Actually I see very few plone-related imports and plone-only-specific code inside the trunk so that it seems feasible.
Is there any roadmap or any todo/advice list for getting this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我创建了一个运行程序,用于通过命令行工具在 plone 之外执行 Transmogrifier。目前,跑步者是 funnelbweb 的一部分。您可以使用 funnelweb 脚本通过“funnelweb --pipeline=mypipeline.cfg”运行您自己的管道
然而,我们正在将该代码迁移到名为 mr.migrator 的通用模块中。 Mr.migrator 既是 Transmogrifier 管道的命令行运行程序,也是执行相同操作的 Plone UI。
I've created a runner for executing transmogrifier outside of plone via a commandline tool. At the moment that runner is part of funnelbweb. You can use the funnelweb script to run your own pipelines via "funnelweb --pipeline=mypipeline.cfg"
However we are in the process of migrating that code into a general module called mr.migrator. Mr.migrator will be both a commandline runner for transmogrifier pipelines and also a Plone UI to do the same.
collective.transmogrifier
仅依赖于 CMFCore,而不依赖于 Plone。我确实计划使该依赖项成为可选的,但我只是还没有时间这样做。collective.transmogrifier
only depends on CMFCore, not Plone. I do have plans to make that dependency optional though, I simply haven't had the time to do so yet.