Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r66295 - in branches/release: libs/filesystem libs/filesystem/v2/doc tools/quickbook tools/quickbook/src tools/quickbook/test
From: dnljms_at_[hidden]
Date: 2010-10-31 09:43:25


Author: danieljames
Date: 2010-10-31 09:43:19 EDT (Sun, 31 Oct 2010)
New Revision: 66295
URL: http://svn.boost.org/trac/boost/changeset/66295

Log:
Merge some more documentation fixes.
Added:
   branches/release/tools/quickbook/test/newline.gold
      - copied unchanged from r66294, /trunk/tools/quickbook/test/newline.gold
   branches/release/tools/quickbook/test/newline.quickbook
      - copied unchanged from r66294, /trunk/tools/quickbook/test/newline.quickbook
Properties modified:
   branches/release/libs/filesystem/ (props changed)
   branches/release/tools/quickbook/ (props changed)
Text files modified:
   branches/release/libs/filesystem/v2/doc/index.htm | 2 +-
   branches/release/libs/filesystem/v2/doc/portability_guide.htm | 6 +++---
   branches/release/tools/quickbook/src/phrase_grammar.hpp | 3 ++-
   branches/release/tools/quickbook/test/Jamfile.v2 | 1 +
   4 files changed, 7 insertions(+), 5 deletions(-)

Modified: branches/release/libs/filesystem/v2/doc/index.htm
==============================================================================
--- branches/release/libs/filesystem/v2/doc/index.htm (original)
+++ branches/release/libs/filesystem/v2/doc/index.htm 2010-10-31 09:43:19 EDT (Sun, 31 Oct 2010)
@@ -780,7 +780,7 @@
   <li>The object library can now be built for either
   static or dynamic (shared/dll) linking. </li>
   <li>Several added functions, including improved checking for directory and
- file name portability. See <a href="portability_guide.htm#name_check­_functions">
+ file name portability. See <a href="portability_guide.htm#name_check_functions">
   Name check functions</a>.</li>
   <li>Separation of canonical form and normalized form and a new path member
   function normalize(). This changes behavior,

Modified: branches/release/libs/filesystem/v2/doc/portability_guide.htm
==============================================================================
--- branches/release/libs/filesystem/v2/doc/portability_guide.htm (original)
+++ branches/release/libs/filesystem/v2/doc/portability_guide.htm 2010-10-31 09:43:19 EDT (Sun, 31 Oct 2010)
@@ -18,7 +18,7 @@
 
 <p>
 <a href="#Introduction">Introduction</a><br>
-name_check functions<br>
+name_check functions<br>
 <a href="#recommendations">File and directory name recommendations</a></p>
 <h2><a name="Introduction">Introduction</a></h2>
 <p>Like any other C++ program which performs I/O operations, there is no
@@ -52,7 +52,7 @@
 give the programmer a &quot;fighting chance&quot; to achieve portability by early
 detection of common naming problems.</p>
 
-<h2><a name="name_check­_functions">name_check functions</a></h2>
+<h2><a name="name_check_functions">name_check functions</a></h2>
 
 <p>A <i>name_check</i> function
 returns true if its argument is valid as a directory and regular file name for a
@@ -142,7 +142,7 @@
   </tr>
   <tr>
     <td valign="top">Limit file and directory names to the characters A-Z, a-z, 0-9, period, hyphen, and
- underscore.<p>Use any of the &quot;portable_&quot; <a href="#name_check­_functions">
+ underscore.<p>Use any of the &quot;portable_&quot; <a href="#name_check_functions">
     name check functions</a> to enforce this recommendation.</td>
     <td valign="top">These are the characters specified by the POSIX standard for portable directory and
     file names, and are also valid for Windows, Mac, and many other modern file systems.</td>

Modified: branches/release/tools/quickbook/src/phrase_grammar.hpp
==============================================================================
--- branches/release/tools/quickbook/src/phrase_grammar.hpp (original)
+++ branches/release/tools/quickbook/src/phrase_grammar.hpp 2010-10-31 09:43:19 EDT (Sun, 31 Oct 2010)
@@ -299,7 +299,8 @@
             ;
 
         escape =
- cl::str_p("\\ ") // ignore an escaped space
+ cl::str_p("\\n") [actions.break_]
+ | cl::str_p("\\ ") // ignore an escaped space
             | '\\' >> cl::punct_p [actions.raw_char]
             | "\\u" >> cl::repeat_p(4) [cl::chset<>("0-9a-fA-F")]
                                                 [actions.escape_unicode]

Modified: branches/release/tools/quickbook/test/Jamfile.v2
==============================================================================
--- branches/release/tools/quickbook/test/Jamfile.v2 (original)
+++ branches/release/tools/quickbook/test/Jamfile.v2 2010-10-31 09:43:19 EDT (Sun, 31 Oct 2010)
@@ -55,6 +55,7 @@
     [ quickbook-test xml-escape_1_2 ]
     [ quickbook-test xml-escape_1_5 ]
     [ quickbook-test blocks ]
+ [ quickbook-test newline ]
     [ quickbook-test command_line_macro : : : <quickbook-define>__macro__=*bold* ]
     [ quickbook-fail-test fail-include ]
     [ quickbook-fail-test fail-import ]


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk