Skip to content

Commit 78fdfcf

Browse files
committed
Fix matplotlib.github.com#1
1 parent 1067ba1 commit 78fdfcf

File tree

2 files changed

+10
-15
lines changed

2 files changed

+10
-15
lines changed

doc/_templates/index.html

+8-4
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,14 @@ <h4>Need help?</h4>
154154
<a href="https://github.com/matplotlib/matplotlib/issues?sort=created&direction=desc&state=open">tracker</a>,
155155
but it is a good idea to ping us on the mailing list too.</p>
156156

157-
<p>For details on what's new, see the detailed <a href="{{
158-
pathto('_static/CHANGELOG', 1) }}">changelog</a> or browse the <a href="https://github.com/matplotlib/matplotlib">source code</a>. Anything that could
159-
require changes to your existing codes is logged in the <a href="{{
160-
pathto('api/api_changes.html', 1) }}">api changes</a> file.</p>
157+
<p>To keep up to date with what's going on in matplotlib, see
158+
the <a href="{{ pathto('users/whats_new.html', 1) }}">what's new
159+
page</a>, the more detailed <a href="{{ pathto('_static/CHANGELOG', 1)
160+
}}">changelog</a> or browse
161+
the <a href="https://github.com/matplotlib/matplotlib">source
162+
code</a>. Anything that could require changes to your existing code
163+
is logged in the <a href="{{ pathto('api/api_changes.html', 1) }}">api
164+
changes</a> file.</p>
161165

162166
<h1>Toolkits</h1>
163167

doc/make.py

+2-11
Original file line numberDiff line numberDiff line change
@@ -121,15 +121,6 @@ def check_build():
121121
except OSError:
122122
pass
123123

124-
def sf():
125-
'push a copy to the sf site'
126-
shutil.copy('../CHANGELOG', 'build/html/_static/CHANGELOG')
127-
os.system('cd build/html; rsync -avz . jdh2358,matplotlib@web.sf.net:/home/groups/m/ma/matplotlib/htdocs/ -essh --cvs-exclude')
128-
129-
def sfpdf():
130-
'push a copy to the sf site'
131-
os.system('cd build/latex; scp Matplotlib.pdf jdh2358,matplotlib@web.sf.net:/home/groups/m/ma/matplotlib/htdocs/')
132-
133124
def doctest():
134125
os.system('sphinx-build -b doctest -d build/doctrees . build/doctest')
135126

@@ -157,6 +148,8 @@ def html():
157148
for filename in glob.glob('build/html/_images/*.pdf'):
158149
os.remove(filename)
159150

151+
shutil.copy('../CHANGELOG', 'build/html/_static/CHANGELOG')
152+
160153
def latex():
161154
check_build()
162155
#figs()
@@ -222,8 +215,6 @@ def all():
222215
'latex' : latex,
223216
'texinfo' : texinfo,
224217
'clean' : clean,
225-
'sf' : sf,
226-
'sfpdf' : sfpdf,
227218
'all' : all,
228219
'doctest' : doctest,
229220
'linkcheck': linkcheck,

0 commit comments

Comments
 (0)