Re: [HappyDoc-discuss] incantation for multiple packages
Brought to you by:
doughellmann,
krlosaqp
From: Doug H. <do...@he...> - 2002-03-18 12:55:40
|
On Monday 18 March 2002 07:36, Donnal Walter wrote: > Using Python 2.2 on Windows 2000 Pro, I am working on an > application contained in three packages: [...] > How can I generate ALL of the documentation in \Docs\api (and its > corresponding subdirectories)? Thanks. There are still some bugs with path handling on win32 systems. I think I've worked out what the problems are, but I haven't had a chance to boot into windows to work on the fixes. Try not using the "C:" on the front of your paths, since I know drive letters confuse the path code right now. For example, try: C:\>C:\Python22\Scripts\happydocwin.py -d \Prism\Docs\api \Prism\Lib Please let me know if that works, since it will confirm my suspicions about what is broken. If that does not work, this workaround might help until I fix the problem. If you do not specify *any* path using the -d option, the output should be written to C:\Prism\Lib\docs. You could then rename/move that directory to where you want it to be. Thanks, Doug |