Fixed PDF format as article

Added iterator_traits docs


[SVN r22043]
This commit is contained in:
Dave Abrahams
2004-01-29 05:55:26 +00:00
parent 0122a0c8ec
commit 8cf04e1c7b
30 changed files with 6501 additions and 4569 deletions

View File

@ -1,4 +1,7 @@
#!/usr/bin/python
# Copyright David Abrahams 2004. Use, modification and distribution is
# subject to the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
# Generate html, TeX, and PDF versions of all the source files
@ -13,7 +16,7 @@ if 0:
for s in sources:
syscmd('boosthtml %s' % s)
else:
extensions = ('html', 'tex', 'pdf')
extensions = ('html', 'pdf')
if len(sys.argv) > 1:
extensions = sys.argv[1:]
@ -23,7 +26,7 @@ else:
for s in sources
]
print 'make -k %s' % ' '.join(all)
syscmd('make -k %s' % ' '.join(all))
print 'make %s' % ' '.join(all)
syscmd('make %s' % ' '.join(all))