Skip to content

Commit 6563137

Browse files
committed
Remove doc dependency sphinxcontrib-cheeseshop.
Was used for download button in the index page for the website. It is still pointing to the old http pypi endpoint. I tried to override cheeseshop_url in the sphinx conf.py without luck. Richard Jones forgot that cheeseshop existed, so I think it can be considered depricated. Removed cheeseshop directive and inserted http markup using raw directive to provide download "button" to link to latest package page on https://pypi.org.
1 parent caa98ad commit 6563137

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ Fixed:
3030
requesting message properties) would result in a 404 error. Now we're
3131
returning a JSON 'null' value. for an empty link (e.g. empty author in
3232
the example).
33+
- sphinxcontrib.cheeseshop is unmaintained and using old http
34+
url. Attempts to override cheeseshop_url failed. Replace call to
35+
cheeseshop in docs with raw html and remove references to
36+
cheeseshop. (John Rouillard)
3337

3438
Features:
3539
- issue2550522 - Add 'filter' command to command-line

website/README.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ to free resources:
9191
updating www.roundup-tracker.org
9292
---------------------------------
9393
Site update requires rebuilding HTML files. For that
94-
you `sphinx` and `sphinxcontrib-cheeseshop` are required/
95-
Hopefully, they are already installed into virtualenv, so
94+
`sphinx` is required/
95+
Hopefully, it is already installed into virtualenv, so
9696
the whole procedure looks like so:
9797

9898
# activate the virtualenv

website/www/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
# Add any Sphinx extension module names here, as strings. They can be extensions
3131
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
32-
extensions = ['sphinxcontrib.cheeseshop']
32+
# extensions = ['sphinxcontrib.cheeseshop']
3333

3434
# Add any paths that contain templates here, relative to this directory.
3535
templates_path = ['_templates']

website/www/index.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
Roundup Issue Tracker
22
=====================
33

4-
.. pypi-release:: roundup
5-
:prefix: Download
6-
:class: note
4+
.. raw:: html
5+
6+
<div class="release_info note">Download:
7+
<a href="https://pypi.org/project/roundup/">latest</a></div>
78

89
Roundup is a simple-to-use and -install issue-tracking system with
910
command-line, web and e-mail interfaces. It is based on the winning

website/www/make.bat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
@rem python -m pip install sphinx
2-
@rem python -m pip install sphinxcontrib-cheeseshop
32

43
python -m sphinx . html

0 commit comments

Comments
 (0)