cmfcontentpanels是一个plone portlets产品,用于构建复合页面

Products.CMFContentPanels的Python项目详细描述


概述

Products.CMFContentPanels is a Plone product to build manageable composite pages.

You can create new content object which is composed of other contents as configurable ‘content panels’. You can change the layout, the panel skin and the content viewlet through the web. There is no need to use special content objects, you can just use the standard plone content and compose them

功能

  • Support multi-page and multi-column
  • fully functional layout management, easy to use: move panels left/right/up/down
  • predefined viewlets for Document, Image, Folder, Topic, ZWiki Page, PloneChat, mxmDynamicPage.
  • each viewlet is configurable. it is quite easy to add new viewlets. You can add a RSS viewlet or a simplet text viewlet.
  • contentpanels content can be used as a portle thru collective.portlet.content.
  • support multi-rows: use ‘tile’ page layout mode, and each page becomes a new row!

安装

To use this product, on a buildout based installation:

  1. Edit your buildout.cfg and add ^{tt1}$ to the list of eggs to install

    [buildout]
    ...
    eggs =
        Products.CMFContentPanels
    

更新配置文件后,需要运行“bin/buildout”, 它将负责更新您的系统。

进入Plone界面的“站点设置”页面,点击 “添加/删除产品”链接。

选择产品(选中其复选框)并单击“安装”按钮。

卸载-这可以在同一个管理屏幕上完成,但仅限于 如果是从快速安装程序安装的。

扩展products.cmfcontentpanels(针对开发人员)

新视图

Viewlet is a view of content which can be selected in contentpanels. Viewlet can be a zpt or a zpt macro. Viewlets are registered with CMF Action mechanism.

  1. Write a viewlet for your content. You can refer to stuff at ‘CMFContentPanels/skins/cp_viewlets’, where are default viewlets.

  2. All viewlets are registered in portal_contentpanels. You can also register viewlets using:

    from Products.CMFContentPanels import registerViewlets
    registerViewlets(you_viewlets)
    

    With this way, if you reinstall CMFContentPanels, your viewlets configuration will not lost.

如何使viewlets可配置

  1. Viewlet configuration form fields can be define in a macro with name: ‘(your_viewlet_macroname)_viewletconf’

    For example, ‘viewlets_folder_recent.pt’ has 2 macros: ‘base_portlet’ and ‘base_portlet_viewletconf’

  2. The form fields will be showed and saved automatically

  3. Your viewlet can use the form variables in a dict named ‘viewletOptions’, for example ‘viewletOptions[“itemCount”]’

如何添加新的面板外观

You can define a new css wrapper to define a new panel skin:

  1. Customise contentpanels_skin.css.dtml, write your new css wrapper there
  2. Go to ZMI ‘portal_contentpanels’, in the properties view, add your new wrapper there.

学分

错误报告和功能请求

In the “Products.CMFContentPanels product area”: http://plone.org/products/cmfcontentpanels you can report bugs and request new features.

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java Intellij通过方法中的包查找用法   java中VS代码和打包命名的问题   将java CMS功能集成到具有高度动态内容的网站(Lucene/Mysql/Nosql)的策略   oracle的java类强制转换异常。jdbc。驾驶员OracleConnection   字节码向JVM添加上指令   如何在抽象类中执行java方法?   java是否可以在apache访问日志中排除指定的GET参数?(作者:W7开发环境)   java如何获取已安装音频播放器的列表?   尝试向HS学生展示如何使用Java访问MS数据库   使用正则表达式java对给定行中的特定字符串进行计数   java JOOQ Select查询中的Select计数   方法Java,如何从二维双精度数组中找到特定值?   获取图像URL的java正则表达式   java在切换到新的窗口驱动程序后找不到元素