$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r57847 - in sandbox/odeint: . libs/numeric/odeint/doc
From: mario.mulansky_at_[hidden]
Date: 2009-11-22 16:26:44
Author: mariomulansky
Date: 2009-11-22 16:26:43 EST (Sun, 22 Nov 2009)
New Revision: 57847
URL: http://svn.boost.org/trac/boost/changeset/57847
Log:
basis for quickbook documentation
Added:
   sandbox/odeint/libs/numeric/odeint/doc/Jamfile   (contents, props changed)
   sandbox/odeint/libs/numeric/odeint/doc/odeint.qbk   (contents, props changed)
Text files modified: 
   sandbox/odeint/Jamfile          |     2 +-                                      
   sandbox/odeint/project-root.jam |    14 ++++++++++++++                          
   2 files changed, 15 insertions(+), 1 deletions(-)
Modified: sandbox/odeint/Jamfile
==============================================================================
--- sandbox/odeint/Jamfile	(original)
+++ sandbox/odeint/Jamfile	2009-11-22 16:26:43 EST (Sun, 22 Nov 2009)
@@ -3,7 +3,7 @@
 # accompanying file LICENSE_1_0.txt or copy at
 # http://www.boost.org/LICENSE_1_0.txt)
 
-project
+project odeint
    : requirements
      <include>$BOOST_ROOT ;
 
Added: sandbox/odeint/libs/numeric/odeint/doc/Jamfile
==============================================================================
--- (empty file)
+++ sandbox/odeint/libs/numeric/odeint/doc/Jamfile	2009-11-22 16:26:43 EST (Sun, 22 Nov 2009)
@@ -0,0 +1,17 @@
+import quickbook ;
+
+xml odeint
+  :
+    odeint.qbk
+  ;
+
+boostbook doc
+  :
+    odeint
+  ;
+
+install html
+  :
+    /boost//doc/html/boostbook.css
+  ;
+
Added: sandbox/odeint/libs/numeric/odeint/doc/odeint.qbk
==============================================================================
--- (empty file)
+++ sandbox/odeint/libs/numeric/odeint/doc/odeint.qbk	2009-11-22 16:26:43 EST (Sun, 22 Nov 2009)
@@ -0,0 +1,21 @@
+[library boost.sandbox.numeric.odeint
+     [quickbook 1.3]
+     [authors [Ahnert, Karsten], [Mulansky, Mario]]
+     [copyright 2009 Karsten Ahnert and Mario Mulansky]
+     [category math]
+     [id odeint]
+     [dirname odeint]
+     [purpose 
+        Numerical integration of ordinary differential equations.
+     ]
+     [license
+        Distributed under 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])
+     ]
+]
+
+[section Introduction]
+Some Introduction.
+
+[endsect]
\ No newline at end of file
Modified: sandbox/odeint/project-root.jam
==============================================================================
--- sandbox/odeint/project-root.jam	(original)
+++ sandbox/odeint/project-root.jam	2009-11-22 16:26:43 EST (Sun, 22 Nov 2009)
@@ -7,3 +7,17 @@
 import os ;
 
 path-constant BOOST_ROOT : [ os.environ BOOST_ROOT ] ;
+
+
+###### The following is copied from another sandbox project #####
+###### to get the quickbook and boostbook working ...       #####
+
+import modules ;
+import path ; 
+
+local boost-root = [ modules.peek : BOOST_ROOT ] ;
+local explore-header-include = $(top)/../.. ;
+
+use-project /boost/regex : $(boost-root)/libs/regex/build ;
+
+##################################################################