Plone 4 基于 sunburst 的响应式主题
项目描述
简介
============
这个响应式主题产品将在安装时为您的 Plone 提供响应式主题。但是您也可以将collective.responsivetheme 包含到您正在制作的自定义主题中。这是你如何做到的。
1. 确保当 buildout 运行时,它会得到collective.responsivetheme。我们将假设您的主题名为“plonetheme.yourcustomtheme”。在 plonetheme.yourcustomtheme 的第一个文件夹中有一个名为 setup.py 的文件。在 install_requires 部分添加:::
install_requires=[
'setuptools',
'collective.responsivetheme',
# -*- Extra requirements: -*- ],
2. 确保您的主题基于collective.responsivetheme。在您的 plonetheme.yourcustomtheme/plonetheme/yourcustomtheme/profiles/default/ 中找到您的 skins.xml 文件,将 <skin-path> **based-on=""** 更改为响应式主题。::
<skin-path name="Your Custom Theme" based-on="Responsive Theme">
...
</skin-path>
3. 确保在安装主题时,它也安装了collective.responsivetheme。在您的 plonetheme.yourcustomtheme/plonetheme/yourcustomtheme/profiles/default/ 中找到您的 metadata.xml 文件。我们需要添加依赖。像这样: ::
<?xml version="1.0"?>
<metadata>
<version>1000</version>
<dependencies>
<dependency>profile-collective.responsivetheme:default</dependency>
</dependencies>
</metadata>
Changelog
=========
1.5.2 (2013-08-21)
-------- ----------
- 将法语文件重命名为collective.responsivetheme
1.5.1 (2013-08-20)
------
- 不知何故法语没有上服务器。这修复了该问题
1.4 (2013-08-06)
----------------
- 添加了对 UI 的 i18n 支持:荷兰语和“显示导航”和“隐藏导航”的翻译法语。[kysr]
- 始终在移动菜单中显示正确的导航标签 [kysr]
1.3.2 (2012-11-30)
------------------
- 在与 Ethan Marcotte 和 Luke W.
1.3.1 (2012-11-20)交谈后,viewportchange.js 在 jsregistry.xml 中默认为 false,因为发生的缩放不是视口本身,而是所有事物的重力
—— -
- - 一些 IE 7 和 IE 8 修复
1.3 (2012-11-15)
-
- 添加Scott Jehl 的 Respond.js 可在不支持 CSS3 媒体查询的浏览器中启用响应式网页设计 - 特别是 Internet Explorer 8 及更低版本。它的编写方式可能会修补对其他不支持的浏览器的支持。
1.2.2 (2012-09-04)
-----------------
- 这个 history.txt 文件中的下划线不够长。不得不制作新版本。
1.2.1 (2012-09-04)
-----
- 修复了 logo.pt 要求标题
1.2 (2012-08-30)的问题
------------ ----
- 修复 IE 8 及以下
1.0 (2012-07-02)的导航
折叠问题
- - 首次发布
============
这个响应式主题产品将在安装时为您的 Plone 提供响应式主题。但是您也可以将collective.responsivetheme 包含到您正在制作的自定义主题中。这是你如何做到的。
1. 确保当 buildout 运行时,它会得到collective.responsivetheme。我们将假设您的主题名为“plonetheme.yourcustomtheme”。在 plonetheme.yourcustomtheme 的第一个文件夹中有一个名为 setup.py 的文件。在 install_requires 部分添加:::
install_requires=[
'setuptools',
'collective.responsivetheme',
# -*- Extra requirements: -*- ],
2. 确保您的主题基于collective.responsivetheme。在您的 plonetheme.yourcustomtheme/plonetheme/yourcustomtheme/profiles/default/ 中找到您的 skins.xml 文件,将 <skin-path> **based-on=""** 更改为响应式主题。::
<skin-path name="Your Custom Theme" based-on="Responsive Theme">
...
</skin-path>
3. 确保在安装主题时,它也安装了collective.responsivetheme。在您的 plonetheme.yourcustomtheme/plonetheme/yourcustomtheme/profiles/default/ 中找到您的 metadata.xml 文件。我们需要添加依赖。像这样: ::
<?xml version="1.0"?>
<metadata>
<version>1000</version>
<dependencies>
<dependency>profile-collective.responsivetheme:default</dependency>
</dependencies>
</metadata>
Changelog
=========
1.5.2 (2013-08-21)
-------- ----------
- 将法语文件重命名为collective.responsivetheme
1.5.1 (2013-08-20)
------
- 不知何故法语没有上服务器。这修复了该问题
1.4 (2013-08-06)
----------------
- 添加了对 UI 的 i18n 支持:荷兰语和“显示导航”和“隐藏导航”的翻译法语。[kysr]
- 始终在移动菜单中显示正确的导航标签 [kysr]
1.3.2 (2012-11-30)
------------------
- 在与 Ethan Marcotte 和 Luke W.
1.3.1 (2012-11-20)交谈后,viewportchange.js 在 jsregistry.xml 中默认为 false,因为发生的缩放不是视口本身,而是所有事物的重力
—— -
- - 一些 IE 7 和 IE 8 修复
1.3 (2012-11-15)
-
- 添加Scott Jehl 的 Respond.js 可在不支持 CSS3 媒体查询的浏览器中启用响应式网页设计 - 特别是 Internet Explorer 8 及更低版本。它的编写方式可能会修补对其他不支持的浏览器的支持。
1.2.2 (2012-09-04)
-----------------
- 这个 history.txt 文件中的下划线不够长。不得不制作新版本。
1.2.1 (2012-09-04)
-----
- 修复了 logo.pt 要求标题
1.2 (2012-08-30)的问题
------------ ----
- 修复 IE 8 及以下
1.0 (2012-07-02)的导航
折叠问题
- - 首次发布
项目详情
下载文件
下载适用于您平台的文件。如果您不确定要选择哪个,请了解有关安装包的更多信息。
源分布
collective.responsivetheme-1.5.2.zip
(47.6 kB
查看哈希)
collective.responsivetheme-1.5.2.tar.gz
(28.5 kB
查看哈希)