Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add the generated function documentation to the User's Guide as an appendix. | Steven Knight | 2010-07-22 | 6 | -1/+101 |
| | | | | | Fixes and refactoring in the bin/scons-proc.py script to support this. Fixes to various parts of the XML input. | ||||
* | Move the authoritative source for functions from the man page to various | Steven Knight | 2010-07-21 | 2 | -4044/+23 |
| | | | | | | .xml files (some new, some updated) next to the modules that implement them. Generate the man page using the output generated from the .xml file by bin/scons-proc.py. | ||||
* | Fix formatting errors: really ignore comment lines, | Steven Knight | 2010-07-20 | 1 | -50/+56 |
| | | | | indent some after-example paragraphs correctly. | ||||
* | Issue 2654: Consolidate three chapters into one. (Greg Noel) | Steven Knight | 2010-07-05 | 2 | -24/+58 |
| | |||||
* | Users Guide updates re: Tools as packages. Also updates UG xml files for my ↵ | Gary Oberbrunner | 2010-07-04 | 2 | -30/+56 |
| | | | | previous patch. Closes issue 2642. | ||||
* | Add all the per-system and per-user site_scons dirs, per discussion in SEP 002. | Gary Oberbrunner | 2010-07-04 | 2 | -15/+69 |
| | |||||
* | Issue 5062: XML fixes in the User's Guide. (Dirk Baechle) | Steven Knight | 2010-06-27 | 23 | -51/+54 |
| | |||||
* | Fix misspelled entity (&Scons; => &SCons;). | Steven Knight | 2010-06-17 | 2 | -2/+2 |
| | |||||
* | Add Users Guide example of generating source code. | Gary Oberbrunner | 2010-06-17 | 2 | -2/+123 |
| | |||||
* | Minor User's Guide updates: copyright years, deprecated features, TODOs ↵ | Steven Knight | 2010-06-08 | 6 | -26/+14 |
| | | | | that have been documented. | ||||
* | Fix an AllowSubstExceptions() typo in the User's Guide update. | Steven Knight | 2010-06-05 | 2 | -2/+2 |
| | |||||
* | Issue 1975: Add documentation of the AllowSubstExceptions() function | Steven Knight | 2010-06-04 | 3 | -1/+157 |
| | | | | to the User's Guide. (Jim Randall) | ||||
* | Document FindPathDirs in Users Guide | Gary Oberbrunner | 2010-06-04 | 2 | -0/+98 |
| | |||||
* | Document GetBuildPath in Users Guide | Gary Oberbrunner | 2010-06-03 | 3 | -0/+92 |
| | |||||
* | http://scons.tigris.org/issues/show_bug.cgi?id=2365 | Greg Noel | 2010-05-28 | 1 | -1/+32 |
| | | | | | | Start the deprecation cycle for SourceCode() and its related factory functions. Deprecation messages are added to the functions. Regression tests are modified to deal with the messages being generated. Documentation is updated. | ||||
* | Convert old-style classes in miscellaneous files to new-stylre classes: | Steven Knight | 2010-05-21 | 1 | -2/+2 |
| | | | | src/test_strings.py, runtest.py and doc/man/scons.1. | ||||
* | Merged revisions 4832,4834-4836 via svnmerge from | William Deegan | 2010-05-09 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | http://scons.tigris.org/svn/scons/checkpoint/trunk ........ r4832 | bdbaddog | 2010-05-03 23:00:21 -0700 (Mon, 03 May 2010) | 3 lines Updated RELEASE.txt from Greg Noel ........ r4834 | bdbaddog | 2010-05-03 23:34:14 -0700 (Mon, 03 May 2010) | 3 lines Updates for 2.0.0.alpha.20100503 checkpoint release ........ r4835 | bdbaddog | 2010-05-08 14:27:43 -0700 (Sat, 08 May 2010) | 3 lines Change test to check for version 3.0 and expect failure, since we're now working on a 2.0 checkpoint. ........ r4836 | bdbaddog | 2010-05-08 14:31:58 -0700 (Sat, 08 May 2010) | 3 lines Update build date. Fix checkpoint build version string to remove the .dYYYYMMDD and change to .YYYYMMDD ........ | ||||
* | Issue 2498: fix SourceFileScanner documentation references. | Steven Knight | 2010-04-30 | 1 | -5/+10 |
| | |||||
* | Restore </example> tags mistakenly deleted along with 1.5.2 code. | Steven Knight | 2010-04-27 | 2 | -0/+6 |
| | |||||
* | http://scons.tigris.org/issues/show_bug.cgi?id=2345 | Greg Noel | 2010-04-24 | 11 | -133/+15 |
| | | | | | | | 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. | ||||
* | http://scons.tigris.org/issues/show_bug.cgi?id=2345 | Greg Noel | 2010-04-15 | 1 | -1/+1 |
| | | | | | | Apply the first part of the 'raise' fixer (the three-argument cases are not converted and will need to wait until native support of with_traceback() is available). | ||||
* | Fix XML in documentation, and in the bin/scons-doc.py script that generates | Steven Knight | 2010-04-05 | 19 | -73/+73 |
| | | | | the User's Guide XML from the .in files' SGML. | ||||
* | Trivial man page fix; fixes issue #2585. | Gary Oberbrunner | 2010-03-30 | 1 | -1/+1 |
| | |||||
* | http://scons.tigris.org/issues/show_bug.cgi?id=2329 | Greg Noel | 2010-03-27 | 4 | -37/+13 |
| | | | | | | | | | | | | | | | 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()'. | ||||
* | Move 2.0 changes collected in branches/pending back to trunk for further | Greg Noel | 2010-03-25 | 6 | -33/+26 |
| | | | | | 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. | ||||
* | trivial typo in man page | Greg Noel | 2010-01-30 | 1 | -1/+1 |
| | |||||
* | rebuilt docs | William Deegan | 2010-01-19 | 19 | -352/+1862 |
| | |||||
* | Merge back from checkpoint. | William Deegan | 2010-01-19 | 19 | -1860/+350 |
| | | | | Need to regenerate the .xml files. | ||||
* | Fix timestamp-related Decider() examples by using Object() instead of | Steven Knight | 2010-01-16 | 2 | -18/+14 |
| | | | | | | Program(), to avoid the downstream "hello" executable sometimes not getting re-linked if the example re-ran within a single second and didn't change the hello.o timestamp. | ||||
* | Fix the Requires() examples by adding a sleep command to the | Steven Knight | 2010-01-16 | 3 | -55/+68 |
| | | | | | | | | 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. | ||||
* | Update a change of compilation order in the version.c examples. | Steven Knight | 2010-01-16 | 1 | -1/+1 |
| | |||||
* | Rename the sconsoutput.py script to scons-doc.py, and refactor it to | Steven Knight | 2010-01-15 | 1 | -5/+5 |
| | | | | | support command-line option parsing and generating output on streams other than sys.stdout. | ||||
* | Capture updated troubleshooting output. | Steven Knight | 2010-01-14 | 1 | -18/+24 |
| | |||||
* | Capture the previous output from "pkg-config x11" in a static | Steven Knight | 2010-01-13 | 2 | -0/+48 |
| | | | | | screen section. Ubuntu Karmic changed the X11 package config so it no longer prints a -I option, and this is just an example anyway. | ||||
* | Updates for changes to SCons error messages. | Steven Knight | 2010-01-12 | 2 | -2/+2 |
| | |||||
* | Propagate doc about site_scons to builders-writing.xml. Typographic edits. | Steven Knight | 2010-01-11 | 2 | -119/+161 |
| | |||||
* | Propagate typo fix to doc/user/separate.xml. | Steven Knight | 2010-01-11 | 1 | -1/+1 |
| | |||||
* | Fix doc bug #2502 (Ignore example was wrong) | Gary Oberbrunner | 2010-01-11 | 2 | -4/+6 |
| | |||||
* | XML file change to go with .in file change | William Deegan | 2010-01-11 | 1 | -2/+2 |
| | |||||
* | Fix bug 2389 - indicate that the install dir will depend on the python being ↵ | William Deegan | 2010-01-11 | 1 | -2/+2 |
| | | | | used | ||||
* | fix typos in the man page | Greg Noel | 2010-01-06 | 1 | -7/+14 |
| | |||||
* | Fix typo in man page, per patch in issue #2529. | Gary Oberbrunner | 2009-12-06 | 1 | -1/+1 |
| | |||||
* | Fix issue 2519 - add textfile to list of builders | William Deegan | 2009-11-14 | 1 | -0/+1 |
| | |||||
* | Use Glob() instead of glob.glob() | Greg Noel | 2009-09-23 | 2 | -4/+2 |
| | |||||
* | Document build fixes. | Steven Knight | 2009-07-25 | 1 | -0/+3 |
| | |||||
* | Fix typo I found | Robert Managan | 2009-06-22 | 1 | -1/+1 |
| | |||||
* | Doc patch from issue 2282 (mention JAVAVERSION in users guide), thanks to ↵ | Gary Oberbrunner | 2009-05-29 | 2 | -0/+40 |
| | | | | Knut Arild Erstad. | ||||
* | Issue 2229, fix, tests, doc | Greg Noel | 2009-05-17 | 1 | -4/+8 |
| | |||||
* | Add Textfile and Substfile builders | Greg Noel | 2009-04-22 | 1 | -0/+2 |
| | |||||
* | Document that filename that has a dot as the first character must be matched ↵ | Greg Noel | 2009-04-12 | 1 | -1/+4 |
| | | | | explicitly in a Glob() pattern |