فهرست منبع

Minor changes, including add "Boost" to many page titles

[SVN r8985]
Beman Dawes 25 سال پیش
والد
کامیت
64ac9ede8c
10فایلهای تغییر یافته به همراه23 افزوده شده و 20 حذف شده
  1. 2 2
      more/faq.htm
  2. 2 2
      more/formal_review_process.htm
  3. 2 2
      more/header.htm
  4. 2 2
      more/imp_vars.htm
  5. 1 1
      more/index.htm
  6. 9 6
      more/lib_guide.htm
  7. 2 2
      more/library_reuse.htm
  8. 1 1
      more/regression.html
  9. 1 1
      more/submission_process.htm
  10. 1 1
      more/test_policy.htm

+ 2 - 2
more/faq.htm

@@ -21,7 +21,7 @@
   </tr>
 </table>
 
-<h1>Frequently Asked Questions</h1>
+<h1>Boost Frequently Asked Questions</h1>
 
 <p><b>How is a library accepted for posting on the site?</b>
 See <a href="submission_process.htm">Library Submission Process</a></p>
@@ -125,7 +125,7 @@ encouraged to include keywords in the subject like &quot;thread&quot;,
 
 <hr>
 
-<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->08 December, 2000<!--webbot bot="Timestamp" endspan i-checksum="38516" -->
+<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->06 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40406" -->
 </p>
 </body>
 </html>

+ 2 - 2
more/formal_review_process.htm

@@ -19,7 +19,7 @@
     <td><a href="index.htm"><font face="Arial" color="#FFFFFF"><big>More</big></font></a></td>
   </tr>
 </table>
-<h1>Formal Review Process</h1>
+<h1>Boost Formal Review Process</h1>
 <p>The Formal Review process determines if a proposed library should be accepted
 as a Boost library.</p>
 <p>The final &quot;accept&quot; or &quot;reject&quot; decision is made by the <a href="#Review Manager">
@@ -107,7 +107,7 @@ submission file</a> sent to the webmaster for posting.&nbsp; If the suggested
 changes might affect reviewer's judgments,&nbsp; post a notice of the pending
 change on the mailing list.</p>
 <hr>
-<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->10 November, 2000<!--webbot bot="Timestamp" endspan i-checksum="39349" --></p>
+<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->06 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40406" --></p>
 <p>&nbsp;</p>
 
 </body>

+ 2 - 2
more/header.htm

@@ -20,7 +20,7 @@
     <td><a href="index.htm"><font face="Arial" color="#FFFFFF"><big>More</big></font></a></td>
   </tr>
 </table>
-<h1>Header Policy</h1>
+<h1>Boost Header Policy</h1>
 <p>Header files are the place where a library comes into contact with user code
 and other libraries.&nbsp; To co-exist peacefully and productively, headers must
 be &quot;good neighbors&quot;.</p>
@@ -86,7 +86,7 @@ commenting ending braces, and similar formatting issues.&nbsp; These stylistic
 issues are viewed as personal preferences and are not part of the Boost Header
 Policy.</p>
 <hr>
-<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->10 November, 2000<!--webbot bot="Timestamp" endspan i-checksum="39349" --></p>
+<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->06 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40406" --></p>
 
 </body>
 

+ 2 - 2
more/imp_vars.htm

@@ -19,7 +19,7 @@
     <td><a href="index.htm"><font face="Arial" color="#FFFFFF"><big>More</big></font></a></td>
   </tr>
 </table>
-<h1>Implementation Variations</h1>
+<h1>Boost Implementation Variations</h1>
 <h2>Separation of interface and implementation</h2>
 <p>The interface specifications for boost.org library components (as well as for
 quality software in general) are conceptually separate from implementations of
@@ -194,7 +194,7 @@ different, or when choice of variation is best done by some mechanism outside of
 the program itself.&nbsp; Thus usually not appropriate to cope with platform
 differences.</p>
 <hr>
-<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->10 November, 2000<!--webbot bot="Timestamp" endspan i-checksum="39349" --></p>
+<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->06 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40406" --></p>
 
 </body>
 

+ 1 - 1
more/index.htm

@@ -76,7 +76,7 @@ other headers each boost header includes.</p>
 </blockquote>
   <p>&nbsp;</p>
 <hr>
-<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->01 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40396" --></p>
+<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->03 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40400" --></p>
 
 </body>
 

+ 9 - 6
more/lib_guide.htm

@@ -149,6 +149,11 @@ library, but a reasonable effort to comply is expected.</p>
     uppercase letter. Macro (gasp!) names should be all uppercase and begin with
     BOOST_.</li>
 </ul>
+<ul>
+  <li>Choose meaningful names - explicit is better than implicit, and readability counts.
+    There is a strong preference for clear and descriptive names, even if
+    lengthy.</li>
+</ul>
 <ul>
   <li>Use exceptions to report errors where appropriate, and write code that is
     safe in the face of exceptions.</li>
@@ -294,17 +299,15 @@ detail, and over a long period of time. The discussion was repeated again in
 early boost postings. A short summary:</p>
 <ul>
   <li>Naming conventions are contentious, and although several are widely used,
-    no one style predominates.<br>
+    no one style predominates.
   </li>
   <li>Given the intent to propose portions of boost for the next revision of the
     C++ standard library, boost decided to follow the standard library's
-    conventions.<br>
+    conventions.
   </li>
   <li>Once a library settles on a particular convention, a vast majority of
-    stakeholders want that style to be consistently used.<br>
+    stakeholders want that style to be consistently used.
   </li>
-  <li>There is a strong preference for clear and descriptive names, even if
-    lengthy.</li>
 </ul>
 <hr>
 <h3>Source <a name="code fonts">code fonts</a> rationale</h3>
@@ -336,7 +339,7 @@ suggestion.&nbsp; Major contributions are usually acknowledged in the
 documentation, while minor fixes are often mentioned in comments within the code
 itself.</p>
 <hr>
-<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->29 January, 2001<!--webbot bot="Timestamp" endspan i-checksum="38328" --></p>
+<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->06 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40406" --></p>
 
 </body>
 

+ 2 - 2
more/library_reuse.htm

@@ -21,7 +21,7 @@
   </tr>
 </table>
 &nbsp;
-<h1>Library reuse: cost versus benefit trade-offs</h1>
+<h1>Boost Library reuse: cost versus benefit trade-offs</h1>
 <p>A Boost library <b>should not</b> use libraries other than Boost or the C++
 Standard Library.</p>
 <p>A Boost library <b>should</b> use other Boost Libraries or the C++ Standard
@@ -63,7 +63,7 @@ another boost library to use dir_it just to check that a file is available
 before opening.&nbsp; C++ Standard Library file open functionality does this at
 lower cost.&nbsp; Don't use dir_it just for the sake of using a boost library.</p>
 <hr>
-<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B %Y" startspan -->10 November 2000<!--webbot bot="Timestamp" endspan i-checksum="39429" --></p>
+<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B %Y" startspan -->06 February 2001<!--webbot bot="Timestamp" endspan i-checksum="40613" --></p>
 <p>&nbsp;</p>
 <p>&nbsp;</p>
 

+ 1 - 1
more/regression.html

@@ -20,7 +20,7 @@
 </table>
 
 
-<h1>Internal Regression Test Suite</h1>
+<h1>Boost Internal Regression Test Suite</h1>
 
 Boost's internal regression test suite produces the
 <a href="../status/compiler_status.html">compiler status tables</a>.

+ 1 - 1
more/submission_process.htm

@@ -149,7 +149,7 @@ necessary.</p>
 <p>Libraries are software; they loose their value over time if not
 maintained.&nbsp; Details still hazy.</p>
 <hr>
-<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->10 November, 2000<!--webbot bot="Timestamp" endspan i-checksum="39349" --></p>
+<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->03 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40400" --></p>
 
 </body>
 

+ 1 - 1
more/test_policy.htm

@@ -83,7 +83,7 @@ generation of HTML compiler status tables, was developed by Beman Dawes in June,
 <h2>Acknowledgements</h2>
 <p>Written by Beman Dawes. Jens Maurer, Paul Moore, Gary Powell and Jeremy Siek contributed helpful suggestions.</p>
 <hr>
-<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->01 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40396" -->
+<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->03 February, 2001<!--webbot bot="Timestamp" endspan i-checksum="40400" -->
 </p>
 <p>&nbsp;</p>
 <p>&nbsp;</p>

粤ICP备19079148号