diff options
author | Fred Drake <fdrake@acm.org> | 1999-02-05 20:50:59 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-02-05 20:50:59 (GMT) |
commit | dfb4e24431e95acd42e9a7097dcc2885b71d8373 (patch) | |
tree | 08825622752b43e382f009e9b5718f6ba9ef72f7 /Doc/tools | |
parent | 5ebeea0467c27eadf3072b7fcfde1908669e115f (diff) | |
download | cpython-dfb4e24431e95acd42e9a7097dcc2885b71d8373.zip cpython-dfb4e24431e95acd42e9a7097dcc2885b71d8373.tar.gz cpython-dfb4e24431e95acd42e9a7097dcc2885b71d8373.tar.bz2 |
Respond to suggestion from "Albert" <hat@se-46.wpa.wtb.tue.nl> to add
document titles to the list of files.
Also added total page count and a note that comments should be
directed to python-docs@python.org.
Diffstat (limited to 'Doc/tools')
-rwxr-xr-x | Doc/tools/getpagecounts | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/Doc/tools/getpagecounts b/Doc/tools/getpagecounts index 7ede6b8..e701e94 100755 --- a/Doc/tools/getpagecounts +++ b/Doc/tools/getpagecounts @@ -6,18 +6,35 @@ cd `dirname $0`/.. PAPER=${PAPER:-letter} +TOTAL=0 +getpagecount() { + PAGECOUNT=`grep -c '^%%Page:' paper-$PAPER/$1.ps` + echo "$2 $1.ps ($PAGECOUNT pages)" + TOTAL=`expr $TOTAL + $PAGECOUNT` +} cat <<EOF This is the PostScript version of the standard Python documentation. If you plan to print this, be aware that some of the documents are -long. These files have the following page counts: +long. The following manuals are included: EOF +getpagecount api "Python/C API " +getpagecount ext "Extending and Embedding the Python Interpreter" +getpagecount lib "Python Library Reference " +getpagecount mac "Macintosh Module Reference " +getpagecount ref "Python Reference Manual " +getpagecount tut "Python Tutorial " -for PART in api ext lib mac ref tut ; do - FILE=paper-$PAPER/$PART.ps - PAGECOUNT=`grep -c '^%%Page:' $FILE` - echo " $PART.ps -- $PAGECOUNT pages" -done +echo +echo " Total page count: $TOTAL" + +cat <<EOF + + +If you have any questions, comments, or suggestions regarding these +documents, please send them via email to python-docs@python.org. + +EOF |