File tree 4 files changed +10
-9
lines changed
4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 25
25
26
26
SPHINX_BUILD = 'sphinxbuild'
27
27
28
- def sf ():
29
- 'push a copy to the sf site'
30
- os .system ('cd build/html; rsync -avz . wesmckinn,pandas@web.sf.net'
31
- ':/home/groups/p/pa/pandas/htdocs/ -essh --cvs-exclude' )
32
- def sfpdf ():
28
+ def upload ():
29
+ 'push a copy to the site'
30
+ os .system ('cd build/html; rsync -avz . pandas@pandas.pydata.org'
31
+ ':/usr/share/nginx/pandas/pandas-docs/vbench/ -essh' )
32
+
33
+ def uploadpdf ():
33
34
'push a copy to the sf site'
34
35
os .system ('cd build/latex; scp pandas.pdf wesmckinn,pandas@web.sf.net'
35
36
':/home/groups/p/pa/pandas/htdocs/' )
@@ -85,8 +86,8 @@ def all():
85
86
'html' : html ,
86
87
'latex' : latex ,
87
88
'clean' : clean ,
88
- 'sf ' : sf ,
89
- 'sfpdf ' : sfpdf ,
89
+ 'upload ' : upload ,
90
+ 'uploadpdf ' : uploadpdf ,
90
91
'all' : all ,
91
92
}
92
93
Original file line number Diff line number Diff line change 45
45
#source_encoding = 'utf-8'
46
46
47
47
# The master toctree document.
48
- master_doc = 'vbench '
48
+ master_doc = 'index '
49
49
50
50
# General information about the project.
51
51
project = u'pandas'
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ def generate_rst_files(benchmarks):
102
102
with open (rst_path , 'w' ) as f :
103
103
f .write (rst_text )
104
104
105
- with open (os .path .join (RST_BASE , 'vbench .rst' ), 'w' ) as f :
105
+ with open (os .path .join (RST_BASE , 'index .rst' ), 'w' ) as f :
106
106
print >> f , """
107
107
Performance Benchmarks
108
108
======================
You can’t perform that action at this time.
0 commit comments