[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]
http://bugs.python.org/issue1472
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 documentation, unfortunately, requires 2.5 as a minimum.
It should stay that way for a long time, so that at some
point, it works with whatever people typically have on their
machines.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1472
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 Python 2.5 and *may* work with 2.6 but
 definitely not with 3.x.

It should work with 2.6 without problems.

3k compatibility is another story, of course :)

--
nosy: +georg.brandl

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1472
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 point to the right
place in the build tree for the python binary.

Curiosity more than anything.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1472
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
SETLOCAL
command on the second line of the script, so that the variables set in
the script are restored at the end.

--
nosy: +amaury.forgeotdarc

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1472
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1472
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1472
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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]
http://bugs.python.org/issue1472
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com