| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
- several smaller fixes
- added first version of the Overview document for the doc toolchain
|
|
|
|
| |
one up in the hierarchy to the 'scons_output' tag
|
|
|
|
|
|
| |
- started to work on support for UserGuide examples
- added xslt for transforming SCons XSD to Docbook documents
- added SConstructs for all documents and titlepage for the UserGuide
|
|
|
|
| |
by copying the <xml...> declaration at the start of the file
|
|
|
|
| |
- bin/doc* and sconsexample.py are not used anymore and get deleted
|
|
|
|
| |
to the User's Guide. (Jim Randall)
|
| |
|
| |
|
|
|
|
|
|
|
| |
Comb out all code that supported earlier versions of Python. Most such
code is in snippets of only a few lines and can be identified by having
a Python version string in it. Such snippets add up; this combing pass
probably got rid of over 500 lines of code.
|
| |
|
|
|
|
| |
the User's Guide XML from the .in files' SGML.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Applied a number of idiomatic changes.
Uses of the 'sort()' method were converted into calls of 'sorted()' when
possible and the sorted() expression was inserted into a subsequent statement
whenever that made sense.
The statement 'while 1:' was changed to 'while True:'.
Names from the 'types' module (e.g., 'types.FooType') were converted to the
equivalent build-in type (e.g., 'foo').
Comparisons between types were changed to use 'isinstance()'.
|
|
|
|
|
| |
development. Note that this set of changes is NOT backward-compatible;
the trunk no longer works with Python 1.5.2, 2.0, or 2.1.
|
|
|
|
|
|
|
|
| |
infrastructure and using it to force the SConstruct file(s) to generate
version.c files with new timestamps each run. Fix the description of
the example, since the verson.o file does get recompiled each run, but
the use of Requires() means the downstream hello executable doesn't get
relinked because of it.
|
|
support command-line option parsing and generating output on
streams other than sys.stdout.
|