| 
									
										
										
										
											1998-05-07 14:53:55 +00:00
										 |  |  | #! /bin/sh
 | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											1998-08-11 14:10:40 +00:00
										 |  |  | # Drive HTML generation for a Python manual. | 
					
						
							| 
									
										
										
										
											1998-05-07 14:53:55 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											1999-02-16 20:05:43 +00:00
										 |  |  | # This is probably *not* useful outside of the standard Python documentation, | 
					
						
							|  |  |  | # but suggestions are welcome and should be sent to <python-docs@python.org>. | 
					
						
							| 
									
										
										
										
											1998-08-11 14:10:40 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # The first arg is required and is the designation for which manual to build; | 
					
						
							|  |  |  | # api, ext, lib, ref, or tut.  All other args are passed on to latex2html. | 
					
						
							| 
									
										
										
										
											1998-05-07 14:53:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | WORKDIR=`pwd` | 
					
						
							|  |  |  | cd `dirname $0`/.. | 
					
						
							|  |  |  | srcdir=`pwd` | 
					
						
							|  |  |  | cd $WORKDIR | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | part=$1; shift 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEXINPUTS=$srcdir/$part:$TEXINPUTS | 
					
						
							|  |  |  | export TEXINPUTS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ -d $part ] ; then | 
					
						
							| 
									
										
										
										
											1998-05-11 18:41:16 +00:00
										 |  |  |     rm -f $part/*.html | 
					
						
							| 
									
										
										
										
											1998-05-07 14:53:55 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-08-11 14:10:40 +00:00
										 |  |  | echo "latex2html -init_file $srcdir/perl/l2hinit.perl -dir $part" \
 | 
					
						
							| 
									
										
										
										
											1998-05-15 17:14:17 +00:00
										 |  |  |  "${1:+$@} $srcdir/$part/$part.tex" | 
					
						
							| 
									
										
										
										
											1998-05-08 04:00:56 +00:00
										 |  |  | latex2html \
 | 
					
						
							|  |  |  |  -init_file $srcdir/perl/l2hinit.perl \
 | 
					
						
							| 
									
										
										
										
											1998-11-30 20:27:31 +00:00
										 |  |  |  -address '<hr>Send comments to <a href="mailto:python-docs@python.org">python-docs@python.org</a>.' \
 | 
					
						
							| 
									
										
										
										
											1998-05-15 17:14:17 +00:00
										 |  |  |  -dir $part \
 | 
					
						
							| 
									
										
										
										
											1998-05-08 04:00:56 +00:00
										 |  |  |  ${1:+$@} \
 | 
					
						
							| 
									
										
										
										
											1999-02-16 20:05:43 +00:00
										 |  |  |  $srcdir/$part/$part.tex || exit $? | 
					
						
							| 
									
										
										
										
											1998-05-07 14:53:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-02-16 20:28:25 +00:00
										 |  |  | # copy in the stylesheet | 
					
						
							|  |  |  | echo "cp $srcdir/html/style.css $part/$part.css" | 
					
						
							|  |  |  | cp $srcdir/html/style.css $part/$part.css || exit $? | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-02-16 20:05:43 +00:00
										 |  |  | echo "(cd $part; $srcdir/tools/node2label.pl \*.html)" | 
					
						
							| 
									
										
										
										
											1998-05-07 14:53:55 +00:00
										 |  |  | cd $part | 
					
						
							| 
									
										
										
										
											1999-02-16 20:05:43 +00:00
										 |  |  | $srcdir/tools/node2label.pl *.html || exit $? |