diff options
Diffstat (limited to 'doc/developer/main.xml')
-rw-r--r-- | doc/developer/main.xml | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/doc/developer/main.xml b/doc/developer/main.xml new file mode 100644 index 0000000..0ebed33 --- /dev/null +++ b/doc/developer/main.xml @@ -0,0 +1,110 @@ +<?xml version="1.0"?> + +<!-- + + Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 The SCons Foundation + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY + KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--> + +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" +"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" +[ + + <!ENTITY % version SYSTEM "../version.xml"> + %version; + + <!ENTITY % scons SYSTEM "../scons.mod"> + %scons; + + <!ENTITY architecture SYSTEM "architecture.xml"> + <!ENTITY branches SYSTEM "branches.xml"> + <!ENTITY copyright SYSTEM "copyright.xml"> + <!ENTITY cycle SYSTEM "cycle.xml"> + <!ENTITY packaging SYSTEM "packaging.xml"> + <!ENTITY preface SYSTEM "preface.xml"> + <!ENTITY sourcetree SYSTEM "sourcetree.xml"> + <!ENTITY testing SYSTEM "testing.xml"> + +]> + +<book> + <bookinfo> + <title>SCons Developer's Guide &buildversion;</title> + + <author> + <firstname>Steven</firstname> + <surname>Knight</surname> + </author> + + <edition>Revision &buildrevision; (&builddate;)</edition> + + <pubdate>2007</pubdate> + + <copyright> + <year>2007</year> + <holder>Steven Knight</holder> + </copyright> + + <legalnotice> + ©right; + </legalnotice> + + <releaseinfo>version &buildversion;</releaseinfo> + + </bookinfo> + + <preface id="chap-preface"> + <title>Preface</title> + &preface; + </preface> + + <chapter id="chap-development-cycle"> + <title>Development Cycle</title> + &cycle; + </chapter> + + <chapter id="chap-source-tree"> + <title>Source Tree</title> + &sourcetree; + </chapter> + + <chapter id="chap-testing"> + <title>Testing</title> + &testing; + </chapter> + + <chapter id="chap-branches"> + <title>Branches</title> + &branches; + </chapter> + + <chapter id="chap-packaging"> + <title>Packaging</title> + &packaging; + </chapter> + + <chapter id="chap-architecture"> + <title>Architecture</title> + &architecture; + </chapter> + +</book> |