Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r56878 - sandbox/committee/rvalue_ref
From: dave_at_[hidden]
Date: 2009-10-15 14:54:29


Author: dave
Date: 2009-10-15 14:54:28 EDT (Thu, 15 Oct 2009)
New Revision: 56878
URL: http://svn.boost.org/trac/boost/changeset/56878

Log:
Set up CSS for insertions/deletions. To build,

    rst2html.py --footnote-references=superscript --stylesheet-path=./rst.css --embed-stylesheet N2983-throwing-move.rst N2983.html

Added:
   sandbox/committee/rvalue_ref/rst.css (contents, props changed)
Text files modified:
   sandbox/committee/rvalue_ref/N2983-throwing-move.rst | 19 ++++++++++++++++++-
   sandbox/committee/rvalue_ref/N2983.html | 32 ++++++++++++++++++++++++--------
   2 files changed, 42 insertions(+), 9 deletions(-)

Modified: sandbox/committee/rvalue_ref/N2983-throwing-move.rst
==============================================================================
--- sandbox/committee/rvalue_ref/N2983-throwing-move.rst (original)
+++ sandbox/committee/rvalue_ref/N2983-throwing-move.rst 2009-10-15 14:54:28 EDT (Thu, 15 Oct 2009)
@@ -241,8 +241,25 @@
 Proposed Changes to Standard Wording
 ====================================
 
-.. Rani fills in this part
+.. role:: ins
+ :class: ins
 
+.. role:: del
+ :class: del
+
+This is some text with :ins:`an inserted section` and :del:`a deleted section`.
+
+To insert and delete in code, use the “parsed-literal” directive as follows::
+
+ .. parsed-literal::
+
+ int foo(:ins:`int`:del:`short` x);
+
+The result looks like:
+
+.. parsed-literal::
+
+ int foo(:ins:`int`:del:`short` x);
 
 -------
 

Modified: sandbox/committee/rvalue_ref/N2983.html
==============================================================================
--- sandbox/committee/rvalue_ref/N2983.html (original)
+++ sandbox/committee/rvalue_ref/N2983.html 2009-10-15 14:54:28 EDT (Thu, 15 Oct 2009)
@@ -8,7 +8,15 @@
 <meta name="author" content="David Abrahams, Rani Sharoni" />
 <meta name="organization" content="BoostPro Computing, Microsoft" />
 <meta name="date" content="2009-10-14" />
-<link rel="stylesheet" href="http://www.boost.org/doc/libs/1_38_0/rst.css" type="text/css" />
+<style type="text/css">
+
+@import "http://www.boost.org/doc/libs/1_38_0/rst.css";
+p {text-align:justify}
+li {text-align:justify}
+.ins {background-color:#A0FFA0;border-bottom: 1px solid black}
+.del {background-color:#FFA0A0;text-decoration:line-through}
+
+</style>
 </head>
 <body>
 <div class="document" id="allowing-move-constructors-to-throw">
@@ -63,9 +71,6 @@
 constructors altogether:</p>
 <ul class="simple">
 <li>It can be a hard rule for users to follow.</li>
-<li>Generating move constructors by default as proposed in <a class="reference external" href="http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2904.pdf">N2904</a>
-requires a carefully-engineered set of rules about when such a
-default can be generated.</li>
 <li>It hobbles the optimization potential of move constructors, because
 efficient move constructors that might throw (but almost never will)
 can't be generated or written.</li>
@@ -74,11 +79,12 @@
 cannot move-enable a class until all its sub-objects have been
 move-enabled.</li>
 <li>It forces the weakening of class invariants for some move-enabled
-classes: if move construction can throw, it must be possible to
-leave the source object in a resource-less state.</li>
+classes: if move construction is not allowed to throw, the invariant
+must include a resource-less state in which we can leave the source
+object.</li>
 <li>In some cases class maintainers may need to choose between
 move-enabling their class and maintaining its current guarantees to
-users. For example, dinkumware's list implementation currently
+users. For example, Dinkumware's list implementation currently
 derives QOI benefits from having no resource-less state—“begin” and
 â€œend” iterators maintain their relationships even after lists are
 swapped. If throwing move constructors are banned, that would no
@@ -243,7 +249,17 @@
 </div>
 <div class="section" id="proposed-changes-to-standard-wording">
 <h1><a class="toc-backref" href="#id10">Proposed Changes to Standard Wording</a></h1>
-<!-- Rani fills in this part -->
+<p>This is some text with <span class="ins">an inserted section</span> and <span class="del">a deleted section</span>.</p>
+<p>To insert and delete in code, use the “parsed-literal” directive as follows:</p>
+<pre class="literal-block">
+.. parsed-literal::
+
+ int foo(:ins:`int`:del:`short` x);
+</pre>
+<p>The result looks like:</p>
+<pre class="literal-block">
+int foo(<span class="ins">int</span><span class="del">short</span> x);
+</pre>
 <hr class="docutils" />
 <table class="docutils footnote" frame="void" id="attribute" rules="none">
 <colgroup><col class="label" /><col /></colgroup>

Added: sandbox/committee/rvalue_ref/rst.css
==============================================================================
--- (empty file)
+++ sandbox/committee/rvalue_ref/rst.css 2009-10-15 14:54:28 EDT (Thu, 15 Oct 2009)
@@ -0,0 +1,5 @@
+@import "http://www.boost.org/doc/libs/1_38_0/rst.css";
+p {text-align:justify}
+li {text-align:justify}
+.ins {background-color:#A0FFA0;border-bottom: 1px solid black}
+.del {background-color:#FFA0A0;text-decoration:line-through}


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