From ff24e8f7e8cd92a854a11659c88eba9ee2e763fe Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 25 Aug 2007 08:53:29 +0000 Subject: [PATCH] Fix for http://svn.boost.org/trac/boost/ticket/1075. [SVN r38924] --- doc/html/boost_regex/background_information/examples.html | 6 +++--- doc/html/boost_regex/background_information/history.html | 8 ++++---- .../boost_regex/background_information/standards.html | 6 +++--- .../boost_regex/ref/non_std_strings/icu/unicode_algo.html | 6 +++--- doc/html/index.html | 2 +- doc/icu_strings.qbk | 4 ++-- example/snippets/icu_example.cpp | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 6ee71e88..a8d3cf16 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -27,7 +27,7 @@ Test and Example Programs
- + Test Programs
@@ -97,7 +97,7 @@ Files: captures_test.cpp.

- + Example programs
@@ -123,7 +123,7 @@ Files: regex_timer.cpp.

- + Code snippets
diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 492418ba..6c1c30c8 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -25,7 +25,7 @@

History

- + Boost 1.34
@@ -48,7 +48,7 @@
- + Boost 1.33.1
@@ -173,7 +173,7 @@
- + Boost 1.32.1
@@ -181,7 +181,7 @@ Fixed bug in partial matches of bounded repeats of '.'.
- + Boost 1.31.0
diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index a39d4e9c..a702efe1 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -27,7 +27,7 @@ Standards Conformance
- + C++

@@ -35,7 +35,7 @@ report on C++ Library Extensions.

- + ECMAScript / JavaScript
@@ -81,7 +81,7 @@ a custom traits class.

- + Unicode

diff --git a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index c12edc59..337856b0 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -80,7 +80,7 @@ boost::smatch what; if(boost::u32regex_match(path, what, r)) { - // extract $1 as a CString: + // extract $1 as a std::string: return what.str(1); } else @@ -120,7 +120,7 @@ boost::u16match what; if(boost::u32regex_search(text, what, r)) { - // extract $0 as a CString: + // extract $0 as a UnicodeString: return UnicodeString(what[0].first, what.length(0)); } else @@ -130,7 +130,7 @@ }

- + u32regex_replace

diff --git a/doc/html/index.html b/doc/html/index.html index a5743be7..06b2cd6f 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -202,7 +202,7 @@

- +

Last revised: August 13, 2007 at 17:46:28 GMT

Last revised: August 25, 2007 at 08:47:36 GMT


diff --git a/doc/icu_strings.qbk b/doc/icu_strings.qbk index 59b8c1ea..4a4e13ec 100644 --- a/doc/icu_strings.qbk +++ b/doc/icu_strings.qbk @@ -138,7 +138,7 @@ Example: match a UTF-8 encoded filename: boost::smatch what; if(boost::u32regex_match(path, what, r)) { - // extract $1 as a CString: + // extract $1 as a std::string: return what.str(1); } else @@ -172,7 +172,7 @@ Example: search for a character sequence in a specific language block: boost::u16match what; if(boost::u32regex_search(text, what, r)) { - // extract $0 as a CString: + // extract $0 as a UnicodeString: return UnicodeString(what[0].first, what.length(0)); } else diff --git a/example/snippets/icu_example.cpp b/example/snippets/icu_example.cpp index 879b0bfd..8e5f22ca 100644 --- a/example/snippets/icu_example.cpp +++ b/example/snippets/icu_example.cpp @@ -43,7 +43,7 @@ std::string get_filename(const std::string& path) boost::smatch what; if(boost::u32regex_match(path, what, r)) { - // extract $1 as a CString: + // extract $1 as a std::string: return what.str(1); } else @@ -61,7 +61,7 @@ UnicodeString extract_greek(const UnicodeString& text) boost::u16match what; if(boost::u32regex_search(text, what, r)) { - // extract $0 as a CString: + // extract $0 as a UnicodeString: return UnicodeString(what[0].first, what.length(0)); } else