Skip to content

Commit 9d837a4

Browse files
committed
merge disabling of spellcheck onto main tip
2 parents 4f6a1f7 + f87c32d commit 9d837a4

File tree

6 files changed

+34
-4
lines changed

6 files changed

+34
-4
lines changed

COPYING.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Roundup, exclusive of the Zope page templates, is `MIT licensed`_.
22

3-
.. _MIT licensed: https://opensource.org/license/mit/
3+
.. _MIT licensed: https://opensource.org/license/mit
44

55
Roundup Licensing
66
-----------------
77

8-
| Copyright (c) 2009-2024 Roundup-Team (https://opensource.org/license/mit/)
8+
| Copyright (c) 2009-2024 Roundup-Team (https://opensource.org/license/mit)
99
| Copyright (c) 2003-2009 Richard Jones ([email protected])
1010
| Copyright (c) 2002 eKit.com Inc
1111
| Copyright (c) 2001 Bizar Software Pty Ltd
@@ -49,7 +49,7 @@ The license for this code is the `Zope Public License (ZPL) Version 2.0`_,
4949
included below.
5050

5151

52-
.. _Zope Public License (ZPL) Version 2.0: https://opensource.org/license/zpl-2-0/
52+
.. _Zope Public License (ZPL) Version 2.0: https://opensource.org/license/zpl-2-0
5353

5454
Zope Public License (ZPL) Version 2.0
5555
-------------------------------------

doc/_static/style.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@ div[class^=highlight-], div[class^=highlight-] * { width:
190190
text-decoration-color: darkgrey;
191191
}
192192

193+
:is(h1,h2,h3,h4) > :link:hover { text-underline-offset: -0.1em; }
194+
193195
a.toc-backref { color: #000000; }
194196

195197
.header h1 { margin-left: 1em; }
@@ -480,6 +482,15 @@ div.file_insert { /* use to insert COPYING into license.txt */
480482

481483
table.valign-top tbody td { vertical-align: top; }
482484

485+
.footnote-list {
486+
border: lightgrey dotted 2px;
487+
font-size: smaller;
488+
margin-inline: 2em;
489+
padding-inline: 1em;
490+
}
491+
492+
aside.footnote > span + p { margin-block-start: unset; }
493+
483494
/* consider highlighting header element that is a target */
484495
/*
485496
:target > :is(h1,h2,h3,h4,h5,h6) {

doc/admin_guide.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,7 @@ SSL certificate. `Securing Redis`_ has more details.
11891189

11901190
.. _Redis: https://redis.io
11911191
.. _redis-py: https://pypi.org/project/redis/
1192-
.. _Securing Redis: https://redis.io/docs/manual/security/
1192+
.. _Securing Redis: https://redis.io/docs/latest/operate/oss_and_stack/management/security/
11931193

11941194

11951195
Users and Security

doc/installation.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ program you can run ``python demo.py`` instead.)
7474
.. _install the source:
7575

7676
1. ``python3 -m pip download roundup``
77+
78+
* (If you are really impatient, you probably don't want to
79+
`verify the downloaded file <security.html#verify-source-tarball>`_.)
80+
7781
2. ``tar -xzvf roundup-2.2.0.tar.gz``
7882

7983
* if you don't have a tar command, ``python3 -c "import tarfile, sys; tarfile.open(sys.argv[1]).extractall();" roundup-2.2.0.tar.gz`` can be used.

doc/user_guide.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -628,6 +628,8 @@ items. At the end of the subject line, propname=value pairs can be
628628
specified in square brackets, using the same conventions as for the
629629
roundup set shell command.
630630

631+
.. highlight:: text
632+
631633
For example,
632634

633635
- setting the priority of an issue::
@@ -646,6 +648,8 @@ For example,
646648

647649
Subject: Re: [ issue 2 ] we're out of widgets [nosy=-richard;priority=bug]
648650

651+
.. highlight:: python3
652+
649653
In all cases, the message relates to issue 2. The ``Re:`` prefix is
650654
stripped off.
651655

website/www/_static/style.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@ div[class^=highlight-], div[class^=highlight-] * { width:
190190
text-decoration-color: darkgrey;
191191
}
192192

193+
:is(h1,h2,h3,h4) > :link:hover { text-underline-offset: -0.1em; }
194+
193195
a.toc-backref { color: #000000; }
194196

195197
.header h1 { margin-left: 1em; }
@@ -480,6 +482,15 @@ div.file_insert { /* use to insert COPYING into license.txt */
480482

481483
table.valign-top tbody td { vertical-align: top; }
482484

485+
.footnote-list {
486+
border: lightgrey dotted 2px;
487+
font-size: smaller;
488+
margin-inline: 2em;
489+
padding-inline: 1em;
490+
}
491+
492+
aside.footnote > span + p { margin-block-start: unset; }
493+
483494
/* consider highlighting header element that is a target */
484495
/*
485496
:target > :is(h1,h2,h3,h4,h5,h6) {

0 commit comments

Comments
 (0)