$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r76852 - in branches/release: . tools tools/quickbook tools/quickbook/doc tools/quickbook/src
From: dnljms_at_[hidden]
Date: 2012-02-03 03:38:07
Author: danieljames
Date: 2012-02-03 03:38:06 EST (Fri, 03 Feb 2012)
New Revision: 76852
URL: http://svn.boost.org/trac/boost/changeset/76852
Log:
Quickbook: Merge from trunk.
Properties modified: 
   branches/release/   (props changed)
   branches/release/tools/   (props changed)
   branches/release/tools/quickbook/   (props changed)
Text files modified: 
   branches/release/tools/quickbook/doc/change_log.qbk |    40 ++++++++++++++++++++++++++++++++++++++++
   branches/release/tools/quickbook/src/quickbook.cpp  |     2 +-                                      
   2 files changed, 41 insertions(+), 1 deletions(-)
Modified: branches/release/tools/quickbook/doc/change_log.qbk
==============================================================================
--- branches/release/tools/quickbook/doc/change_log.qbk	(original)
+++ branches/release/tools/quickbook/doc/change_log.qbk	2012-02-03 03:38:06 EST (Fri, 03 Feb 2012)
@@ -208,3 +208,43 @@
 * Close open sections at end of document (still warns about them).
 * New anchor markup for headers, will hopefully generate better pdfs.
 * Remove some whitespace around code from post processed output.
+
+[heading Version 1.5.7 - Boost 1.49]
+
+* Several internal changes.
+* Some improved error messages.
+* Better handling of block templates expanded in a phrase context.
+* Avoids empty simple markup (i.e. \/\/ is not treated as an italic empty
+  space.
+* Better anchor markup for headers, which should be better for printing
+  - suggested by John Maddock.
+* Further improvements to the id generator.
+* If sections are left unopened at the end of a document, then close them
+  in the generated markup.
+* Try to handle whitespace better at the beginning and end of code blocks.
+* Handle lists that come immediately after an anchor.
+* Make horizontal rules followed by multi-line comments a little more
+  sensible.
+* Better support for empty ids and titles in docinfo.
+* Fix some minor regressions in SVG handling.
+* Better handling of invalid command line macros.
+* When auto-building quickbook, build the release version.
+* Lots of changes for 1.6:
+  * Scope templates in included files.
+  * Support import of templates and macros.
+  * Including top level quickbook blocks from source files.
+  * Use doc info blocks in included quickbook files.
+  * Better handling of macros with the same name.
+  * `block` element.
+  * Better handling of significant punctuation (e.g. escapes, square brackets).
+  * Support escapes in links, anchors, images, includes etc.
+  * Improved table title syntax.
+  * Paragraphs nested in lists.
+  * New docinfo attributes:
+    * `compatibility-mode` to make it possible to upgrade documents without
+      breaking ids.
+    * `xmlbase` for escaped `xi:include`s.
+  * Allow some docinfo attributes to be used before, or without, a doc info
+    block (`quickbook`, `compatibility-mode`, `source-mode`).
+  * Only add explicit alt text to images.
+  * Don't put 'inline' code blocks inside paragraphs.
Modified: branches/release/tools/quickbook/src/quickbook.cpp
==============================================================================
--- branches/release/tools/quickbook/src/quickbook.cpp	(original)
+++ branches/release/tools/quickbook/src/quickbook.cpp	2012-02-03 03:38:06 EST (Fri, 03 Feb 2012)
@@ -36,7 +36,7 @@
 #pragma warning(disable:4355)
 #endif
 
-#define QUICKBOOK_VERSION "Quickbook Version 1.5.7 (beta)"
+#define QUICKBOOK_VERSION "Quickbook Version 1.5.7"
 
 namespace quickbook
 {