Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r55538 - in sandbox/move: . doc doc/html doc/html/images libs/container libs/move
From: igaztanaga_at_[hidden]
Date: 2009-08-12 04:50:05


Author: igaztanaga
Date: 2009-08-12 04:50:04 EDT (Wed, 12 Aug 2009)
New Revision: 55538
URL: http://svn.boost.org/trac/boost/changeset/55538

Log:
-> Move: non-const rvalues of copyable and movable types are moved instead of copied. Documentation improved.
-> Container: Added test cases and documentation.
-> Intrusive: Container depends on this post-1.40 Intrusive version.
Added:
   sandbox/move/boost.css (contents, props changed)
   sandbox/move/boost.png (contents, props changed)
   sandbox/move/doc/
   sandbox/move/doc/html/
   sandbox/move/doc/html/images/
   sandbox/move/doc/html/images/alert.png (contents, props changed)
   sandbox/move/doc/html/images/blank.png (contents, props changed)
   sandbox/move/doc/html/images/caution.png (contents, props changed)
   sandbox/move/doc/html/images/draft.png (contents, props changed)
   sandbox/move/doc/html/images/home.png (contents, props changed)
   sandbox/move/doc/html/images/important.png (contents, props changed)
   sandbox/move/doc/html/images/next.png (contents, props changed)
   sandbox/move/doc/html/images/next_disabled.png (contents, props changed)
   sandbox/move/doc/html/images/note.png (contents, props changed)
   sandbox/move/doc/html/images/prev.png (contents, props changed)
   sandbox/move/doc/html/images/prev_disabled.png (contents, props changed)
   sandbox/move/doc/html/images/smiley.png (contents, props changed)
   sandbox/move/doc/html/images/tip.png (contents, props changed)
   sandbox/move/doc/html/images/toc-blank.png (contents, props changed)
   sandbox/move/doc/html/images/toc-minus.png (contents, props changed)
   sandbox/move/doc/html/images/toc-plus.png (contents, props changed)
   sandbox/move/doc/html/images/up.png (contents, props changed)
   sandbox/move/doc/html/images/up_disabled.png (contents, props changed)
   sandbox/move/doc/html/images/warning.png (contents, props changed)
Text files modified:
   sandbox/move/libs/container/index.html | 4 ++--
   sandbox/move/libs/move/index.html | 4 ++--
   2 files changed, 4 insertions(+), 4 deletions(-)

Added: sandbox/move/boost.css
==============================================================================
--- (empty file)
+++ sandbox/move/boost.css 2009-08-12 04:50:04 EDT (Wed, 12 Aug 2009)
@@ -0,0 +1,65 @@
+/*=============================================================================
+ Copyright 2002 William E. Kempf
+ Distributed under the Boost Software License, Version 1.0. (See accompany-
+ ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+=============================================================================*/
+
+H1
+{
+ FONT-SIZE: 200%;
+ COLOR: #00008B;
+}
+H2
+{
+ FONT-SIZE: 150%;
+}
+H3
+{
+ FONT-SIZE: 125%;
+}
+H4
+{
+ FONT-SIZE: 108%;
+}
+BODY
+{
+ FONT-SIZE: 100%;
+ BACKGROUND-COLOR: #ffffff;
+}
+PRE
+{
+ MARGIN-LEFT: 2em;
+ FONT-FAMILY: Courier,
+ monospace;
+}
+CODE
+{
+ FONT-FAMILY: Courier,
+ monospace;
+}
+CODE.as_pre
+{
+ white-space: pre;
+}
+.index
+{
+ TEXT-ALIGN: left;
+}
+.page-index
+{
+ TEXT-ALIGN: left;
+}
+.definition
+{
+ TEXT-ALIGN: left;
+}
+.footnote
+{
+ FONT-SIZE: 66%;
+ VERTICAL-ALIGN: super;
+ TEXT-DECORATION: none;
+}
+.function-semantics
+{
+ CLEAR: left;
+}
\ No newline at end of file

Added: sandbox/move/boost.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/alert.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/blank.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/caution.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/draft.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/home.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/important.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/next.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/next_disabled.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/note.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/prev.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/prev_disabled.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/smiley.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/tip.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/toc-blank.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/toc-minus.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/toc-plus.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/up.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/up_disabled.png
==============================================================================
Binary file. No diff available.

Added: sandbox/move/doc/html/images/warning.png
==============================================================================
Binary file. No diff available.

Modified: sandbox/move/libs/container/index.html
==============================================================================
--- sandbox/move/libs/container/index.html (original)
+++ sandbox/move/libs/container/index.html 2009-08-12 04:50:04 EDT (Wed, 12 Aug 2009)
@@ -5,10 +5,10 @@
 -->
 <html>
 <head>
-<meta http-equiv="refresh" content="0; URL=doc/html/container.html">
+<meta http-equiv="refresh" content="0; URL=doc/html/index.html">
 </head>
 <body>
 Automatic redirection failed, please go to
-doc/html/container.html
+doc/html/index.html
 </body>
 </html>

Modified: sandbox/move/libs/move/index.html
==============================================================================
--- sandbox/move/libs/move/index.html (original)
+++ sandbox/move/libs/move/index.html 2009-08-12 04:50:04 EDT (Wed, 12 Aug 2009)
@@ -5,10 +5,10 @@
 -->
 <html>
 <head>
-<meta http-equiv="refresh" content="0; URL=doc/html/move.html">
+<meta http-equiv="refresh" content="0; URL=doc/html/index.html">
 </head>
 <body>
 Automatic redirection failed, please go to
-doc/html/container.html
+doc/html/index.html
 </body>
 </html>


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