|
Boost-Commit : |
From: Lawrence_at_[hidden]
Date: 2007-12-07 20:29:29
Author: crowl
Date: 2007-12-07 20:29:29 EST (Fri, 07 Dec 2007)
New Revision: 41848
URL: http://svn.boost.org/trac/boost/changeset/41848
Log:
Normalize descriptive list HTML.
Text files modified:
sandbox/committee/LWG/thread_library.html | 138 ++++++++++++++++++++++-----------------
1 files changed, 78 insertions(+), 60 deletions(-)
Modified: sandbox/committee/LWG/thread_library.html
==============================================================================
--- sandbox/committee/LWG/thread_library.html (original)
+++ sandbox/committee/LWG/thread_library.html 2007-12-07 20:29:29 EST (Fri, 07 Dec 2007)
@@ -3702,7 +3702,9 @@
</dd>
<dt>Postcondition:</dt>
-<dd><code>count() == <var>ns</var>;</code></dd>
+<dd>
+<code>count() == <var>ns</var>;</code>
+</dd>
</dl>
</blockquote>
@@ -3758,7 +3760,9 @@
</dd>
<dt>Postcondition:</dt>
-<dd><code>count() == <var>us</var>;</code></dd>
+<dd>
+<code>count() == <var>us</var>;</code>
+</dd>
</dl>
</blockquote>
@@ -3828,7 +3832,9 @@
</dd>
<dt>Postcondition:</dt>
-<dd><code>count() == <var>ms</var>;</code></dd>
+<dd>
+<code>count() == <var>ms</var>;</code>
+</dd>
</dl>
</blockquote>
@@ -3911,7 +3917,9 @@
</dd>
<dt>Postcondition:</dt>
-<dd><code>count() == <var>s</var>;</code></dd>
+<dd>
+<code>count() == <var>s</var>;</code>
+</dd>
</dl>
</blockquote>
@@ -4007,7 +4015,9 @@
</dd>
<dt>Postcondition:</dt>
-<dd><code>count() == <var>m</var>;</code></dd>
+<dd>
+<code>count() == <var>m</var>;</code>
+</dd>
</dl>
</blockquote>
@@ -4116,7 +4126,9 @@
</dd>
<dt>Postcondition:</dt>
-<dd><code>count() == <var>h</var>;</code></dd>
+<dd>
+<code>count() == <var>h</var>;</code>
+</dd>
</dl>
</blockquote>
@@ -4240,49 +4252,47 @@
<pre><code>system_time(); </code> </pre>
- <blockquote>
- <dl>
- <dt>Effects:</dt>
- <dd>
- Constructs a <code>system_time</code>
- object representing the epoch time point 1970-01-01 00:00:00.000000000
- </dd>
-
- </dl>
- </blockquote>
+<blockquote>
+<dl>
+<dt>Effects:</dt>
+<dd>
+Constructs a <code>system_time</code>
+object representing the epoch time point 1970-01-01 00:00:00.000000000
+</dd>
+</dl>
+</blockquote>
<pre><code>system_time(time_t <var>secs</var>, nanoseconds <var>ns</var>=0);</code> </pre>
- <blockquote>
- <dl>
- <dt>Effects:</dt>
- <dd>
- Construct<var>s</var> a <code>system_time</code>
- time object representing the time point
- <code><var>secs</var> + <var>ns</var> / 1,000,000,000</code> seconds after the epoch.
- </dd>
-
- <dt>Remarks:</dt>
- <dd>
- If the total nanoseconds is greater than 1 second, the seconds are
- incremented appropriately.
- </dd>
+<blockquote>
+<dl>
+<dt>Effects:</dt>
+<dd>
+Construct<var>s</var> a <code>system_time</code>
+time object representing the time point
+<code><var>secs</var> + <var>ns</var> / 1,000,000,000</code> seconds
+after the epoch.
+</dd>
- </dl>
- </blockquote>
+<dt>Remarks:</dt>
+<dd>
+If the total nanoseconds is greater than 1 second, the seconds are
+incremented appropriately.
+</dd>
+</dl>
+</blockquote>
<pre><code>time_t seconds_since_epoch() const;</code> </pre>
- <blockquote>
- <dl>
- <dt>Returns:</dt>
- <dd>
- The seconds since the epoch time represented by the current value
- of <code>*this</code>.
- </dd>
-
- </dl>
- </blockquote>
+<blockquote>
+<dl>
+<dt>Returns:</dt>
+<dd>
+The seconds since the epoch time represented by the current value
+of <code>*this</code>.
+</dd>
+</dl>
+</blockquote>
<pre><code>nanoseconds nanoseconds_since_epoch() const; </code></pre>
@@ -4424,7 +4434,8 @@
<dt>Returns:</dt>
<dd>
-<code>*this</code></dd>
+<code>*this</code>
+</dd>
</dl>
</blockquote>
@@ -4455,7 +4466,8 @@
<dt>Returns:</dt>
<dd>
-<code>*this</code></dd>
+<code>*this</code>
+</dd>
</dl>
</blockquote>
@@ -4470,18 +4482,16 @@
<dt>Returns:</dt>
<dd>
-The system time as provided by the operating system.</dd>
-<dd>
- </dd>
-<dd>
+<p>
+The system time as provided by the operating system.
+</p>
<i> [Note:</i> Provides access to the system clock at a
resolution as fine as nanoseconds.
-The actual resolution may vary.<i> --end note]</i></dd>
-<dt> </dt>
+The actual resolution may vary.<i> --end note]</i>
<dt>[Note: <span style="font-style: normal">No error reporting is provided.
Hosted implementations ([intro.compliance]) presumably utilize system clock
- API's that never report errors. </span>--end note.] </dt>
-
+ API's that never report errors. </span>--end note.]
+</dd>
</dl>
</blockquote>
@@ -4513,7 +4523,8 @@
resolution of <code>RhsDuration</code>, <code><var>lhs</var>.count()==x, where x is
<var>rhs</var>.count() </code>converted to the resolution of <code>LhsDuration</code>.
Otherwise, <code>x==<var>rhs</var>.count(), where x is <var>lhs</var>.count() </code>
-converted to the resolution of <code>RhsDuration</code>.</dd>
+converted to the resolution of <code>RhsDuration</code>.
+</dd>
</dl>
</blockquote>
@@ -4524,7 +4535,8 @@
<dt>Returns:</dt>
<dd>
-<code>!(<var>lhs</var>==<var>rhs</var>)</code>.</dd>
+<code>!(<var>lhs</var>==<var>rhs</var>)</code>.
+</dd>
</dl>
</blockquote>
@@ -4541,7 +4553,8 @@
resolution of <code>RhsDuration</code>, <code><var>lhs</var>.count()<x, where x is
<var>rhs</var>.count() </code>converted to the resolution of <code>LhsDuration</code>.
Otherwise, <code>x<<var>rhs</var>.count(), where x is <var>lhs</var>.count() </code>
-converted to the resolution of <code>RhsDuration</code>.</dd>
+converted to the resolution of <code>RhsDuration</code>.
+</dd>
</dl>
</blockquote>
@@ -4552,7 +4565,8 @@
<dt>Returns:</dt>
<dd>
-<code>!(<var>rhs</var><<var>lhs</var>)</code>.</dd>
+<code>!(<var>rhs</var><<var>lhs</var>)</code>.
+</dd>
</dl>
</blockquote>
@@ -4563,7 +4577,8 @@
<dt>Returns:</dt>
<dd>
-<code><var>rhs</var><<var>lhs</var>)</code>.</dd>
+<code><var>rhs</var><<var>lhs</var>)</code>.
+</dd>
</dl>
</blockquote>
@@ -4574,7 +4589,8 @@
<dt>Returns:</dt>
<dd>
-<code>!(<var>lhs</var><<var>rhs</var>)</code>.</dd>
+<code>!(<var>lhs</var><<var>rhs</var>)</code>.
+</dd>
</dl>
</blockquote>
@@ -4591,7 +4607,8 @@
resolution of <code>RhsDuration</code>, <code>LhsDuration(<var>lhs</var>.count()+x),
where x is <var>rhs</var>.count() </code>converted to the resolution of <code>
LhsDuration</code>. Otherwise, <code>RhsDuration(x+<var>rhs</var>.count()), where
-x is <var>lhs</var>.count() </code>converted to the resolution of <code>RhsDuration</code>.</dd>
+x is <var>lhs</var>.count() </code>converted to the resolution of <code>RhsDuration</code>.
+</dd>
</dl>
</blockquote>
@@ -4608,7 +4625,8 @@
resolution of <code>RhsDuration</code>, <code>LhsDuration(<var>lhs</var>.count()-x),
where x is <var>rhs</var>.count() </code>converted to the resolution of <code>
LhsDuration</code>. Otherwise, <code>RhsDuration(x-<var>rhs</var>.count()), where
-x is <var>lhs</var>.count() </code>converted to the resolution of <code>RhsDuration</code>.</dd>
+x is <var>lhs</var>.count() </code>converted to the resolution of <code>RhsDuration</code>.
+</dd>
</dl>
</blockquote>
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