1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
#!/usr/bin/env python3
#
# column_widths.py
"""
Sphinx extension to allow customisation of column widths in autosummary tables with the LaTeX builder.
.. versionadded:: 3.0.0
Usage
--------------
This extension provides the :rst:dir:`autosummary-widths` directive.
This sets the autosummary table's column widths with the LaTeX builder
until the end of the current reStructuredText document,
or until the next :rst:dir:`autosummary-widths` directive.
.. rst:directive:: autosummary-widths
Set the width of the autosummary table's columns with the LaTeX builder.
The directive takes up to two arguments -- the column widths as vulgar fractions (e.g. ``5/10``).
If only one argument is provided, this sets the width of the first column,
and the width of the second column is calculated from it.
If both arguments are provided, they set the width of the first and second columns respectively.
.. latex:clearpage::
:bold-title:`Examples:`
.. code-block:: rst
.. autosummary-widths:: 5/10
.. autosummary-widths:: 3/10, 7/10
.. autosummary-widths:: 35/100
.. attention:: This directive ignores the :confval:`autosummary_col_type` configuration option.
API Reference
----------------
"""
# Copyright © 2022 Dominic Davis-Foster <dominic@davis-foster.co.uk>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
# OR OTHER DEALINGS IN THE SOFTWARE.
#
# Parts based on https://github.com/sphinx-doc/sphinx/blob/3.x/sphinx/ext/autosummary/__init__.py
# | Copyright (c) 2007-2022 by the Sphinx team (see AUTHORS file).
# | BSD Licensed
# | All rights reserved.
# |
# | Redistribution and use in source and binary forms, with or without
# | modification, are permitted provided that the following conditions are
# | met:
# |
# | * Redistributions of source code must retain the above copyright
# | notice, this list of conditions and the following disclaimer.
# |
# | * Redistributions in binary form must reproduce the above copyright
# | notice, this list of conditions and the following disclaimer in the
# | documentation and/or other materials provided with the distribution.
# |
# | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# stdlib
from contextlib import suppress
from fractions import Fraction
from itertools import chain
from typing import Iterable, List, Tuple, cast
# 3rd party
import docutils
from docutils import nodes
from docutils.statemachine import StringList
from domdf_python_tools import stringlist
from sphinx import addnodes
from sphinx.application import Sphinx
from sphinx.config import Config
from sphinx.ext.autosummary import autosummary_table
from sphinx.util import rst
from sphinx.util.docutils import SphinxDirective, switch_source_input
# this package
from sphinx_toolbox import latex
from sphinx_toolbox.more_autosummary import PatchedAutosummary
from sphinx_toolbox.utils import SphinxExtMetadata, metadata_add_version
__all__ = ("AutosummaryWidths", "WidthsDirective", "configure", "setup")
class AutosummaryWidths(PatchedAutosummary):
"""
Customised :rst:dir:`autosummary` directive with customisable width with the LaTeX builder.
.. attention:: This directive ignores the :confval:`autosummary_col_type` configuration option.
"""
def get_table(self, items: List[Tuple[str, str, str, str]]) -> List[nodes.Node]:
"""
Generate a proper list of table nodes for autosummary:: directive.
:param items: A list produced by ``self.get_items``.
"""
table_spec = addnodes.tabular_col_spec()
widths = tuple(chain.from_iterable(getattr(self.state.document, "autosummary_widths", ((1, 2), (1, 2)))))
assert len(widths) == 4
table_spec["spec"] = r'\Xx{%d}{%d}\Xx{%d}{%d}' % widths
table = autosummary_table('')
classes = ["autosummary", "longtable"]
if docutils.__version_info__ >= (0, 18):
classes.append("colwidths-given")
real_table = nodes.table('', classes=classes)
table.append(real_table)
group = nodes.tgroup('', cols=2)
real_table.append(group)
group.append(nodes.colspec('', colwidth=10))
group.append(nodes.colspec('', colwidth=90))
body = nodes.tbody('')
group.append(body)
def append_row(*column_texts: str) -> None:
row = nodes.row('')
source, line = self.state_machine.get_source_and_line()
for text in column_texts:
node = nodes.paragraph('')
vl = StringList()
vl.append(text, f"{source}:{line:d}:<autosummary>") # pylint: disable=loop-invariant-statement
with switch_source_input(self.state, vl):
self.state.nested_parse(vl, 0, node)
with suppress(IndexError):
if isinstance(node[0], nodes.paragraph):
node = node[0]
row.append(nodes.entry('', node))
body.append(row)
add_signature = "nosignatures" not in self.options
for name, sig, summary, real_name in items:
col1 = f":obj:`{name} <{real_name}>`"
if add_signature:
col1 += f"\\ {rst.escape(sig)}"
append_row(col1, summary)
return [table_spec, table]
class WidthsDirective(SphinxDirective):
"""
Sphinx directive which configures the column widths of an :rst:dir:`autosummary` table
for the remainder of the document, or until the next `autosummary-widths` directive.
""" # noqa: D400
required_arguments = 1
optional_arguments = 1
@staticmethod
def parse_widths(raw_widths: Iterable[str]) -> List[Tuple[int, int]]:
"""
Parse a width string (as a vulgar fraction) into a list of 2-element ``(numerator, denominator)`` tuples.
For example, ``'5/10'`` becomes ``(5, 10)``.
:param raw_widths:
"""
widths = [cast(Tuple[int, int], tuple(map(int, arg.split('/')))) for arg in raw_widths]
if len(widths) == 1:
left_width = Fraction(*widths[0])
right_width = 1 - left_width
widths.append((right_width.numerator, right_width.denominator))
return widths
def run(self) -> List:
"""
Process the directive's arguments.
"""
self.state.document.autosummary_widths = self.parse_widths(self.arguments) # type: ignore[attr-defined]
return []
def configure(app: Sphinx, config: Config) -> None:
"""
Configure :mod:`sphinx_toolbox.more_autosummary.column_widths`.
:param app: The Sphinx application.
:param config:
"""
latex_elements = getattr(config, "latex_elements", {})
latex_preamble = stringlist.StringList(latex_elements.get("preamble", ''))
latex_preamble.blankline()
latex_preamble.append(r"\makeatletter")
latex_preamble.append(r"\newcolumntype{\Xx}[2]{>{\raggedright\arraybackslash}p{\dimexpr")
latex_preamble.append(r" (\linewidth-\arrayrulewidth)*#1/#2-\tw@\tabcolsep-\arrayrulewidth\relax}}")
latex_preamble.append(r"\makeatother")
latex_preamble.blankline()
latex_elements["preamble"] = str(latex_preamble)
config.latex_elements = latex_elements # type: ignore[attr-defined]
@metadata_add_version
def setup(app: Sphinx) -> SphinxExtMetadata:
"""
Setup :mod:`sphinx_toolbox.more_autosummary.column_widths`.
:param app: The Sphinx application.
"""
app.setup_extension("sphinx_toolbox.more_autosummary")
app.add_directive("autosummary", AutosummaryWidths, override=True)
app.add_directive("autosummary-widths", WidthsDirective)
app.connect("config-inited", configure)
app.connect("build-finished", latex.replace_unknown_unicode)
return {"parallel_read_safe": True}
|