diff -Nru zzzeeksphinx-1.1.5/debian/changelog zzzeeksphinx-1.1.6/debian/changelog --- zzzeeksphinx-1.1.5/debian/changelog 2020-07-11 20:42:54.000000000 +0000 +++ zzzeeksphinx-1.1.6/debian/changelog 2020-12-30 18:24:37.000000000 +0000 @@ -1,3 +1,16 @@ +zzzeeksphinx (1.1.6-1) unstable; urgency=medium + + [ Ondřej Nový ] + * d/control: Update Maintainer field with new Debian Python Team + contact address. + * d/control: Update Vcs-* fields with new Debian Python Team Salsa + layout. + + [ Piotr Ożarowski ] + * New upstream release + + -- Piotr Ożarowski Wed, 30 Dec 2020 19:24:37 +0100 + zzzeeksphinx (1.1.5-1) unstable; urgency=medium * New upstream release diff -Nru zzzeeksphinx-1.1.5/debian/control zzzeeksphinx-1.1.6/debian/control --- zzzeeksphinx-1.1.5/debian/control 2020-07-11 20:42:54.000000000 +0000 +++ zzzeeksphinx-1.1.6/debian/control 2020-12-30 18:24:19.000000000 +0000 @@ -1,5 +1,5 @@ Source: zzzeeksphinx -Maintainer: Debian Python Modules Team +Maintainer: Debian Python Team Uploaders: Piotr Ożarowski Section: python Priority: optional @@ -8,8 +8,8 @@ python3-setuptools Standards-Version: 4.5.0 Homepage: https://github.com/sqlalchemyorg/zzzeeksphinx -Vcs-Git: https://salsa.debian.org/python-team/modules/zzzeeksphinx.git -Vcs-Browser: https://salsa.debian.org/python-team/modules/zzzeeksphinx +Vcs-Git: https://salsa.debian.org/python-team/packages/zzzeeksphinx.git +Vcs-Browser: https://salsa.debian.org/python-team/packages/zzzeeksphinx Package: python3-zzzeeksphinx Architecture: all diff -Nru zzzeeksphinx-1.1.5/PKG-INFO zzzeeksphinx-1.1.6/PKG-INFO --- zzzeeksphinx-1.1.5/PKG-INFO 2020-07-11 16:02:30.120649000 +0000 +++ zzzeeksphinx-1.1.6/PKG-INFO 2020-08-06 02:20:37.443307200 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: zzzeeksphinx -Version: 1.1.5 +Version: 1.1.6 Summary: Zzzeek's Sphinx Layout and Utilities. Home-page: https://github.com/sqlalchemyorg/zzzeeksphinx Author: Mike Bayer diff -Nru zzzeeksphinx-1.1.5/zzzeeksphinx/extras.py zzzeeksphinx-1.1.6/zzzeeksphinx/extras.py --- zzzeeksphinx-1.1.5/zzzeeksphinx/extras.py 1970-01-01 00:00:00.000000000 +0000 +++ zzzeeksphinx-1.1.6/zzzeeksphinx/extras.py 2020-08-04 17:21:07.000000000 +0000 @@ -0,0 +1,47 @@ +from docutils.nodes import Admonition +from docutils.nodes import Element +from docutils.parsers.rst.directives.admonitions import BaseAdmonition +from sphinx.locale import admonitionlabels, _ + + +class deepalchemy(Admonition, Element): + pass + + +class DeepAlchemy(BaseAdmonition): + + required_arguments = 0 + node_class = deepalchemy + + +def visit_deepalchemy(self, node): + self.visit_admonition(node, "deepalchemy") + + +def depart_deepalchemy(self, node): + self.depart_admonition(node) + + +deepalchemy_visit = (visit_deepalchemy, depart_deepalchemy) + + +def setup(app): + + admonitionlabels["deepalchemy"] = _('Deep Alchemy') + + app.add_directive("deepalchemy", DeepAlchemy) + app.add_node( + deepalchemy, + **{ + key: deepalchemy_visit + for key in [ + "html", + "html5", + "latex", + "text", + "xml", + "texinfo", + "manpage", + ] + } + ) diff -Nru zzzeeksphinx-1.1.5/zzzeeksphinx/__init__.py zzzeeksphinx-1.1.6/zzzeeksphinx/__init__.py --- zzzeeksphinx-1.1.5/zzzeeksphinx/__init__.py 2020-05-08 16:24:35.000000000 +0000 +++ zzzeeksphinx-1.1.6/zzzeeksphinx/__init__.py 2020-08-04 16:48:44.000000000 +0000 @@ -1,4 +1,4 @@ -__version__ = "1.1.5" +__version__ = "1.1.6" def setup(app): @@ -9,7 +9,8 @@ sqlformatter, viewsource, scss, - render_pydomains + render_pydomains, + extras ) autodoc_mods.setup(app) @@ -19,6 +20,7 @@ viewsource.setup(app) scss.setup(app) render_pydomains.setup(app) + extras.setup(app) return { "version": __version__, diff -Nru zzzeeksphinx-1.1.5/zzzeeksphinx/theme.py zzzeeksphinx-1.1.6/zzzeeksphinx/theme.py --- zzzeeksphinx-1.1.5/zzzeeksphinx/theme.py 2020-04-11 16:29:13.000000000 +0000 +++ zzzeeksphinx-1.1.6/zzzeeksphinx/theme.py 2020-08-04 16:45:56.000000000 +0000 @@ -13,4 +13,4 @@ return { "parallel_read_safe": True, "parallel_write_safe": True, - } \ No newline at end of file + } diff -Nru zzzeeksphinx-1.1.5/zzzeeksphinx/themes/zsbase/layout.mako zzzeeksphinx-1.1.6/zzzeeksphinx/themes/zsbase/layout.mako --- zzzeeksphinx-1.1.5/zzzeeksphinx/themes/zsbase/layout.mako 2019-11-01 01:46:41.000000000 +0000 +++ zzzeeksphinx-1.1.6/zzzeeksphinx/themes/zsbase/layout.mako 2020-07-17 21:14:24.000000000 +0000 @@ -133,8 +133,8 @@

Contents | Index - % if pdf_url: - | Download as PDF + % if zip_url: + | Download as ZIP file % endif

@@ -156,8 +156,8 @@ Binary files /tmp/tmpdJ8RBD/9s44m_1izz/zzzeeksphinx-1.1.5/zzzeeksphinx/themes/zzzeeksphinx/static/deepalchemy.png and /tmp/tmpdJ8RBD/ND61WpAfmw/zzzeeksphinx-1.1.6/zzzeeksphinx/themes/zzzeeksphinx/static/deepalchemy.png differ diff -Nru zzzeeksphinx-1.1.5/zzzeeksphinx/themes/zzzeeksphinx/static/docs.scss zzzeeksphinx-1.1.6/zzzeeksphinx/themes/zzzeeksphinx/static/docs.scss --- zzzeeksphinx-1.1.5/zzzeeksphinx/themes/zzzeeksphinx/static/docs.scss 2020-07-03 17:05:17.000000000 +0000 +++ zzzeeksphinx-1.1.6/zzzeeksphinx/themes/zzzeeksphinx/static/docs.scss 2020-08-04 17:35:58.000000000 +0000 @@ -13,6 +13,8 @@ $sidebar-header-color: #222222; $notebox-background-color: #EEFFEF; $deprecated-background-color: #FCF0F6; +$warning-background-color: #FCF0F6; +$deepalchemy-background-color: #F6E8FD; $versionchanged-background-color: #F9F9D9; $border-style: 1px solid #CCC; $highlighted-nav-link-background-color: #DDD; @@ -587,14 +589,18 @@ list-style: square outside none; } -div.note, div.topic, div.admonition { +div.topic, div.admonition { background-color:$notebox-background-color; } -div.warning, p.deprecated, div.deprecated { +p.deprecated, div.deprecated { background-color:$deprecated-background-color; } +.versionchanged, .versionadded, .versionmodified added { + background-color:$versionchanged-background-color; +} + div.admonition, div.topic, div.deprecated, div.versionadded, div.versionchanged, div.versionmodified { border: $border-style; padding:5px 5px 5px 10px; @@ -606,6 +612,7 @@ div.note, div.warning { background-image: url("dragons.png"); + background-color:$notebox-background-color; background-position: left center; background-repeat: no-repeat; clear: right; @@ -613,11 +620,18 @@ padding-left: 120px; } -.versionchanged, .versionadded, .versionmodified added { - background-color:$versionchanged-background-color; +div.warning { + background-color:$warning-background-color; } -p.admonition-title, p.topic-title { +div.deepalchemy { + background-image: url("deepalchemy.png"); + background-position: left center; + background-repeat: no-repeat; + background-color:$deepalchemy-background-color; + clear: right; + min-height: 140px; + padding-left: 140px; } diff -Nru zzzeeksphinx-1.1.5/zzzeeksphinx.egg-info/PKG-INFO zzzeeksphinx-1.1.6/zzzeeksphinx.egg-info/PKG-INFO --- zzzeeksphinx-1.1.5/zzzeeksphinx.egg-info/PKG-INFO 2020-07-11 16:02:29.000000000 +0000 +++ zzzeeksphinx-1.1.6/zzzeeksphinx.egg-info/PKG-INFO 2020-08-06 02:20:37.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: zzzeeksphinx -Version: 1.1.5 +Version: 1.1.6 Summary: Zzzeek's Sphinx Layout and Utilities. Home-page: https://github.com/sqlalchemyorg/zzzeeksphinx Author: Mike Bayer diff -Nru zzzeeksphinx-1.1.5/zzzeeksphinx.egg-info/SOURCES.txt zzzeeksphinx-1.1.6/zzzeeksphinx.egg-info/SOURCES.txt --- zzzeeksphinx-1.1.5/zzzeeksphinx.egg-info/SOURCES.txt 2020-07-11 16:02:29.000000000 +0000 +++ zzzeeksphinx-1.1.6/zzzeeksphinx.egg-info/SOURCES.txt 2020-08-06 02:20:37.000000000 +0000 @@ -5,6 +5,7 @@ zzzeeksphinx/__init__.py zzzeeksphinx/autodoc_mods.py zzzeeksphinx/dialect_info.py +zzzeeksphinx/extras.py zzzeeksphinx/mako.py zzzeeksphinx/render_pydomains.py zzzeeksphinx/scss.py @@ -31,6 +32,7 @@ zzzeeksphinx/themes/zsmako/theme.conf zzzeeksphinx/themes/zsmako/static/docs.css zzzeeksphinx/themes/zzzeeksphinx/theme.conf +zzzeeksphinx/themes/zzzeeksphinx/static/deepalchemy.png zzzeeksphinx/themes/zzzeeksphinx/static/detectmobile.js zzzeeksphinx/themes/zzzeeksphinx/static/docs.scss zzzeeksphinx/themes/zzzeeksphinx/static/dragons.png