[issue1472] Small bat files to build docs on Windows

2008-01-18 Thread Christian Heimes
Christian Heimes added the comment: I've implemented Amaury's suggestions and also added a call to hhc.exe if the target is htmlhelp. The files was added in r60048 -- resolution: - fixed status: open - closed __ Tracker [EMAIL PROTECTED]

[issue1472] Small bat files to build docs on Windows

2008-01-13 Thread Georg Brandl
Georg Brandl added the comment: FTR, I'm currently removing all 2.5isms from Sphinx. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1472 __ ___ Python-bugs-list mailing list

[issue1472] Small bat files to build docs on Windows

2008-01-12 Thread Georg Brandl
Georg Brandl added the comment: Ideally, yes. The case of the doc build is a bit more complicated because it relies on external libraries which may or may not work with the tree version. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1472

[issue1472] Small bat files to build docs on Windows

2008-01-12 Thread Martin v. Löwis
Martin v. Löwis added the comment: Would all things in the tree ideally work with the version that was built from checkout? It's more important that it works with many old versions, than with its own version. python should be on the path, and ideally, whatever you get there should work. The

[issue1472] Small bat files to build docs on Windows

2008-01-11 Thread Joseph Armbruster
Joseph Armbruster added the comment: Ah, good to know :-) __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1472 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1472] Small bat files to build docs on Windows

2008-01-11 Thread Joseph Armbruster
Joseph Armbruster added the comment: Is referencing the built python binary in the build tree a good idea? Just in case they do not have python installed on the system already? __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1472

[issue1472] Small bat files to build docs on Windows

2008-01-11 Thread Georg Brandl
Georg Brandl added the comment: Christian Heimes schrieb: Christian Heimes added the comment: Joseph Armbruster wrote: Is referencing the built python binary in the build tree a good idea? Just in case they do not have python installed on the system already? The doc builder requires

[issue1472] Small bat files to build docs on Windows

2008-01-11 Thread Joseph Armbruster
Joseph Armbruster added the comment: Which brings up a question. Would all things in the tree ideally work with the version that was built from checkout? Just in case something like this comes up in the future, i'd want to know if it is better to have it configured as this or to auto-magically

[issue1472] Small bat files to build docs on Windows

2008-01-10 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: This batch file is a good idea. I have two remarks: - it assumes that the python program is spelled python25. This could be configurable. Something along: IF %PYTHON%== SET PYTHON=python25 Or is there a better way? - Also, I suggest to insert a

[issue1472] Small bat files to build docs on Windows

2008-01-04 Thread Joseph Armbruster
Joseph Armbruster added the comment: I tested this out out in the trunk (59706). Placed builddoc.bat in /Doc and ran the following commands: builddoc checkout builddoc html builddoc htmlhelp builddoc web All appeared to work fine on my system. -- nosy: +JosephArmbruster

[issue1472] Small bat files to build docs on Windows

2008-01-03 Thread Joseph Armbruster
Changes by Joseph Armbruster: -- components: +Windows __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1472 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1472] Small bat files to build docs on Windows

2007-11-19 Thread Martin v. Löwis
Martin v. Löwis added the comment: See also Tools/buildbot/buildmsi.bat. With cygwin installed, building the documentation is as simple as bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp' %ProgramFiles%\HTML Help Workshop\hhc.exe Doc\build\htmlhelp\pydoc.hhp -- nosy: +loewis

[issue1472] Small bat files to build docs on Windows

2007-11-19 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: patch, py3k nosy: tiran priority: low severity: normal status: open title: Small bat files to build docs on Windows type: rfe versions: Python 2.6, Python 3.0 __ Tracker [EMAIL PROTECTED]