Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1561bab

Browse files
committed
Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61097,61103-61104,61110-61112,61114-61115,61117,61120-61122,61126-61136 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r61128 | martin.v.loewis | 2008-02-29 17:59:21 +0100 (Fr, 29 Feb 2008) | 1 line Make _hashlib a separate project. ........ r61132 | georg.brandl | 2008-02-29 19:15:36 +0100 (Fr, 29 Feb 2008) | 2 lines Until we got downloadable docs, stop confusing viewers by talking about a nonexisting table. ........ r61133 | martin.v.loewis | 2008-02-29 19:17:23 +0100 (Fr, 29 Feb 2008) | 1 line Build db-4.4.20 with VS9; remove VS2003 build if necessary. ........ r61135 | georg.brandl | 2008-02-29 19:21:29 +0100 (Fr, 29 Feb 2008) | 2 lines #2208: allow for non-standard HHC location. ........ r61136 | martin.v.loewis | 2008-02-29 19:54:45 +0100 (Fr, 29 Feb 2008) | 1 line Port build_ssl.py to 2.4; support HOST_PYTHON variable ........
1 parent 295f4fa commit 1561bab

9 files changed

Lines changed: 605 additions & 33 deletions

File tree

Doc/make.bat

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
@echo off
1+
@@echo off
22
setlocal
33

44
set SVNROOT=http://svn.python.org/projects
5-
if "%PYTHON%" EQU "" set PYTHON=python25
5+
if "%PYTHON%" EQU "" set PYTHON=..\pcbuild\python
6+
if "%HTMLHELP%" EQU "" set HTMLHELP=%ProgramFiles%\HTML Help Workshop\hhc.exe
67

78
if "%1" EQU "" goto help
89
if "%1" EQU "html" goto build
@@ -41,7 +42,7 @@ if not exist build mkdir build
4142
if not exist build\%1 mkdir build\%1
4243
if not exist build\doctrees mkdir build\doctrees
4344
cmd /C %PYTHON% tools\sphinx-build.py -b%1 -dbuild\doctrees . build\%1
44-
if "%1" EQU "htmlhelp" "%ProgramFiles%\HTML Help Workshop\hhc.exe" build\htmlhelp\pydoc.hhp
45+
if "%1" EQU "htmlhelp" "%HTMLHELP%" build\htmlhelp\pydoc.hhp
4546
goto end
4647

4748
:webrun

Doc/tools/sphinxext/download.html

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
<h1>Download Python {{ release }} Documentation
66
{%- if last_updated %} (last updated on {{ last_updated }}){% endif %}</h1>
77

8+
<p>Currently, the development documentation isn't packaged for download.</p>
9+
10+
<!--
811
<p>To download an archive containing all the documents for this version of
912
Python in one of various formats, follow one of links in this table. The numbers
1013
in the table are the size of the download files in Kilobytes.</p>
@@ -36,18 +39,9 @@ <h2>Unpacking</h2>
3639
3740
<h2>Problems</h2>
3841
39-
<p><strong>Printing PDFs using Adobe Acrobat Reader 5.0:</strong> Adobe has
40-
reportedly admitted that there is a bug in Acrobat Reader 5.0 which causes it
41-
not to print at least some PDF files generated by pdfTeX. This software is used
42-
to produce the PDF version of the Python documentation, and our documents
43-
definately trigger this bug in Acrobat Reader. To print the PDF files, use
44-
Acrobat Reader 4.x, ghostscript, or xpdf.</p>
45-
46-
<p>Reportedly, Acrobat Reader 6.0 can print these documents without this
47-
problem, but we've not yet had an opportunity to confirm the report. Sadly,
48-
version 6.0 is not yet available on Unix platforms.</p>
49-
5042
<p>If you have comments or suggestions for the Python documentation, please send
5143
email to <a href="[email protected]">[email protected]</a>.</p>
5244
45+
-->
46+
5347
{% endblock %}

0 commit comments

Comments
 (0)