Skip to content

Commit 4100583

Browse files
committed
Don't need the .px doc toolchain any more
1 parent 97658fc commit 4100583

File tree

5 files changed

+7
-156
lines changed

5 files changed

+7
-156
lines changed

Makefile

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,6 @@ WEBHOME = ~/web/stellated/pages/code/coverage
9494
docreqs:
9595
pip install -r doc/requirements.txt
9696

97-
px:
98-
$(SPHINXBUILD) -b px $(SPHINXOPTS) doc/_build/px
99-
rm doc/_build/px/search.px
100-
python doc/_ext/px_cleaner.py doc/_build/px/*.px
101-
10297
dochtml:
10398
$(SPHINXBUILD) -b html $(SPHINXOPTS) doc/_build/html
10499
@echo
@@ -107,16 +102,11 @@ dochtml:
107102
docspell:
108103
$(SPHINXBUILD) -b spelling $(SPHINXOPTS) doc/_spell
109104

110-
publish: px
111-
rm -f $(WEBHOME)/*.px
112-
cp doc/_build/px/*.px $(WEBHOME)
105+
publish:
113106
rm -f $(WEBHOME)/sample_html/*.*
114107
cp doc/sample_html/*.* $(WEBHOME)/sample_html
115108

116-
publishbeta: px
117-
rm -f $(WEBHOME)/beta/*.px
118-
mkdir -p $(WEBHOME)/beta
119-
cp doc/_build/px/*.px $(WEBHOME)/beta
109+
publishbeta:
120110
rm -f $(WEBHOME)/sample_html_beta/*.*
121111
mkdir -p $(WEBHOME)/sample_html_beta
122112
cp doc/sample_html_beta/*.* $(WEBHOME)/sample_html_beta

TODO.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@ Key:
2828
+ we can use "except ExcClass as e:"
2929

3030
- Plugins
31-
- Clean up
31+
+ Clean up
3232
+ implement plugin support in CTracer
3333
+ remove plugin support from PyTracer
34-
- add services:
34+
x add services:
3535
- filelocator
3636
- warning
3737
- dynamic_source_filename: return should be a canonical path
3838
- update the omit test to use "quux*" instead of "*quux*"
39-
- docs
39+
+ docs
4040
+ Make reports use filenames, not module names
4141
- documentation
4242
- test helpers
4343
+ cov.config["run:branch"] api (well, coverage.get_option etc)
44-
- "added in 4.0"
44+
+ "added in 4.0"
4545
- tweaks to theme?
4646
- Plugins!
4747
Once per process
@@ -52,7 +52,7 @@ Key:
5252
Once per line
5353
- build process
5454
- don't publish to nedbat.com any more (but still need the sample html reports)
55-
- don't need .px tooling
55+
+ don't need .px tooling
5656
- write a new nedbat.com/code/coverage page.
5757
- all doc links should point to rtfd
5858
+ Remove code only run on <2.6

doc/_ext/px_cleaner.py

Lines changed: 0 additions & 19 deletions
This file was deleted.

doc/_ext/px_xlator.py

Lines changed: 0 additions & 117 deletions
This file was deleted.

doc/conf.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
# add these directories to sys.path here. If the directory is relative to the
2121
# documentation root, use os.path.abspath to make it absolute, like shown here.
2222
#sys.path.append(os.path.abspath('.'))
23-
# Copied from django docs:
24-
sys.path.append(os.path.join(os.path.dirname(__file__), "_ext"))
2523

2624
# on_rtd is whether we are on readthedocs.org
2725
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
@@ -35,7 +33,6 @@
3533
'sphinx.ext.todo',
3634
'sphinx.ext.ifconfig',
3735
'sphinxcontrib.spelling',
38-
'px_xlator',
3936
]
4037

4138
# Add any paths that contain templates here, relative to this directory.

0 commit comments

Comments
 (0)