[patch] Add <link> tags to html docs
Jonathan Wakely
cow@compsoc.man.ac.uk
Thu Nov 13 01:00:00 GMT 2003
Dull docs patch follows!
This patch adds <link> tags to most of the HTML docs. These specify
relationships between the pages, and give a simple structure to the docs
collection.
Each howto.html page in one of the chapter-specific directories links to
the next and previous chapter's howto.html and the chapters that have
extra pages (22_locale and exts) have <link rel='Bookmark'> tags for those
extra pages. Most pages link back to the start of the docs, to the
license.html page and to the FAQ.
The links can be navigated in most modern browsers using some kind of
Navigation Toolbar and are all relative URLs so they work just as well
for installed copies on your hard drive as on the website.
It also fixes a typo and an inconsistent heading while it's at it.
Any objections to my committing this in a day or two?
jon
2003-11-12 Jonathan Wakely <redi@gcc.gnu.org>
* docs/html/configopts.html, docs/html/debug.html,
docs/html/documentation.html, docs/html/explanations.html,
docs/html/install.html, docs/html/17_intro/contribute.html,
docs/html/17_intro/howto.html, docs/html/17_intro/license.html,
docs/html/18_support/howto.html, docs/html/19_diagnostics/howto.html,
docs/html/20_util/howto.html, docs/html/21_strings/howto.html,
docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
docs/html/22_locale/messages.html, docs/html/23_containers/howto.html,
docs/html/24_iterators/howto.html, docs/html/25_algorithms/howto.html,
docs/html/26_numerics/howto.html, docs/html/27_io/howto.html,
docs/html/ext/howto.html, docs/html/ext/sgiexts.html: Add <link> tags.
--
http://c2.com/cgi/wiki?NeverExplain
-------------- next part --------------
? docs/html/.debug_mode.html.swp
Index: docs/html/configopts.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/configopts.html,v
retrieving revision 1.32
diff -u -p -r1.32 configopts.html
--- docs/html/configopts.html 2 Sep 2003 18:46:54 -0000 1.32
+++ docs/html/configopts.html 13 Nov 2003 00:55:30 -0000
@@ -10,7 +10,8 @@
<meta name="DESCRIPTION" content="Configuration options for libstdc++-v3." />
<meta name="GENERATOR" content="vi and eight fingers" />
<title>libstdc++-v3 configure options</title>
-<link rel="StyleSheet" href="lib3styles.css" />
+<link rel="StyleSheet" href="lib3styles.css" type="text/css" />
+<link rel="Copyright" href="17_intro/license.html" type="text/html" />
</head>
<body>
Index: docs/html/debug.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/debug.html,v
retrieving revision 1.5
diff -u -p -r1.5 debug.html
--- docs/html/debug.html 11 Nov 2003 20:09:06 -0000 1.5
+++ docs/html/debug.html 13 Nov 2003 00:55:30 -0000
@@ -10,7 +10,8 @@
<meta name="DESCRIPTION" content="Debugging C++ binaries" />
<meta name="GENERATOR" content="vi and ten fingers" />
<title>Debugging schemes and strategies</title>
-<link rel="StyleSheet" href="lib3styles.css" />
+<link rel="StyleSheet" href="lib3styles.css" type="text/css" />
+<link rel="Copyright" href="17_intro/license.html" type="text/html" />
</head>
<body>
Index: docs/html/documentation.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/documentation.html,v
retrieving revision 1.37
diff -u -p -r1.37 documentation.html
--- docs/html/documentation.html 23 Oct 2003 20:35:12 -0000 1.37
+++ docs/html/documentation.html 13 Nov 2003 00:55:30 -0000
@@ -8,7 +8,9 @@
<meta name="KEYWORDS"
content="libstdc++, homepage, home, C++, library, c++, std, g++, ABI, STL" />
<title>GNU C++ Standard Library</title>
-<link rel="StyleSheet" href="lib3styles.css" />
+<link rel="StyleSheet" href="lib3styles.css" type="text/css" />
+<link rel="Copyright" href="17_intro/license.html" type="text/html" />
+<link rel="Help" href="faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
Index: docs/html/explanations.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/explanations.html,v
retrieving revision 1.11
diff -u -p -r1.11 explanations.html
--- docs/html/explanations.html 12 Jun 2003 03:24:13 -0000 1.11
+++ docs/html/explanations.html 13 Nov 2003 00:55:30 -0000
@@ -10,7 +10,8 @@
<meta name="DESCRIPTION" content="Explanatory notes about libstdc++-v3." />
<meta name="GENERATOR" content="vi and eight fingers" />
<title>Explanatory notes about libstdc++-v3 design</title>
-<link rel="StyleSheet" href="lib3styles.css" />
+<link rel="StyleSheet" href="lib3styles.css" type="text/css" />
+<link rel="Copyright" href="17_intro/license.html" type="text/html" />
</head>
<body>
Index: docs/html/install.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/install.html,v
retrieving revision 1.27
diff -u -p -r1.27 install.html
--- docs/html/install.html 5 Aug 2003 01:20:15 -0000 1.27
+++ docs/html/install.html 13 Nov 2003 00:55:31 -0000
@@ -10,7 +10,8 @@
<meta name="DESCRIPTION" content="README for the GNU libstdc++ effort." />
<meta name="GENERATOR" content="vi and eight fingers" />
<title>libstdc++-v3 Installation Instructions</title>
-<link rel="StyleSheet" href="lib3styles.css" />
+<link rel="StyleSheet" href="lib3styles.css" type="text/css" />
+<link rel="Copyright" href="17_intro/license.html" type="text/html" />
</head>
<body>
Index: docs/html/17_intro/configury.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/17_intro/configury.html,v
retrieving revision 1.1
diff -u -p -r1.1 configury.html
--- docs/html/17_intro/configury.html 5 Aug 2003 01:20:15 -0000 1.1
+++ docs/html/17_intro/configury.html 13 Nov 2003 00:55:31 -0000
@@ -10,7 +10,9 @@
<meta name="DESCRIPTION" content="configury for libstdc++" />
<meta name="GENERATOR" content="vi and eight fingers" />
<title>libstdc++-v3 configury</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+<link rel="StyleSheet" href="../lib3styles.css" type='text/css' />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
</head>
<body>
Index: docs/html/17_intro/contribute.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/17_intro/contribute.html,v
retrieving revision 1.4
diff -u -p -r1.4 contribute.html
--- docs/html/17_intro/contribute.html 24 Jun 2003 20:33:29 -0000 1.4
+++ docs/html/17_intro/contribute.html 13 Nov 2003 00:55:31 -0000
@@ -5,7 +5,11 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
-<title>How to contribute</title>
+ <title>How to contribute</title>
+<link rel="StyleSheet" href="lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<!--990301 slightly modified version of the GCC contribute.html file-->
<!-- #include virtual="/include/header-subpages.html"-->
Index: docs/html/17_intro/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/17_intro/howto.html,v
retrieving revision 1.31
diff -u -p -r1.31 howto.html
--- docs/html/17_intro/howto.html 11 Nov 2003 20:09:07 -0000 1.31
+++ docs/html/17_intro/howto.html 13 Nov 2003 00:55:31 -0000
@@ -10,8 +10,14 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, gcc, g++, libg++, STL" />
<meta name="DESCRIPTION" content="HOWTO for libstdc++ chapter 17." />
<meta name="GENERATOR" content="vi and eight fingers" />
- <title>libstdc++-v3 HOWTO: Chapter 17</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+ <title>libstdc++-v3 HOWTO: Chapter 17: Library Introduction</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Next" href="../18_support/howto.html" type="text/html"
+ title="Library Support" />
+<link rel="Copyright" href="license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
Index: docs/html/17_intro/license.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/17_intro/license.html,v
retrieving revision 1.6
diff -u -p -r1.6 license.html
--- docs/html/17_intro/license.html 7 Oct 2002 18:11:18 -0000 1.6
+++ docs/html/17_intro/license.html 13 Nov 2003 00:55:31 -0000
@@ -11,7 +11,9 @@
<meta name="DESCRIPTION" content="Copying restrictions for libstdc++." />
<meta name="GENERATOR" content="vi and eight fingers" />
<title>libstdc++-v3 copying</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" rev="Copyright" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
</head>
<body>
Index: docs/html/18_support/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/18_support/howto.html,v
retrieving revision 1.15
diff -u -p -r1.15 howto.html
--- docs/html/18_support/howto.html 24 Apr 2003 20:39:49 -0000 1.15
+++ docs/html/18_support/howto.html 13 Nov 2003 00:55:31 -0000
@@ -10,8 +10,16 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="HOWTO for the libstdc++ chapter 18." />
<meta name="GENERATOR" content="vi and eight fingers" />
- <title>libstdc++-v3 HOWTO: Chapter 18</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+ <title>libstdc++-v3 HOWTO: Chapter 18: Library Support</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Prev" href="../17_intro/howto.html" type="text/html"
+ title="Library Introduction" />
+<link rel="Next" href="../19_diagnostics/howto.html" type="text/html"
+ title="Diagnostics" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
Index: docs/html/19_diagnostics/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/19_diagnostics/howto.html,v
retrieving revision 1.20
diff -u -p -r1.20 howto.html
--- docs/html/19_diagnostics/howto.html 13 Mar 2003 18:26:23 -0000 1.20
+++ docs/html/19_diagnostics/howto.html 13 Nov 2003 00:55:31 -0000
@@ -10,8 +10,16 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="HOWTO for the libstdc++ chapter 19." />
<meta name="GENERATOR" content="vi and eight fingers" />
- <title>libstdc++-v3 HOWTO: Chapter 19</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+ <title>libstdc++-v3 HOWTO: Chapter 19: Diagnostics</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Prev" href="../18_support/howto.html" type="text/html"
+ title="Library Support" />
+<link rel="Next" href="../20_util/howto.html" type="text/html"
+ title="General Utilities" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
Index: docs/html/20_util/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/20_util/howto.html,v
retrieving revision 1.17
diff -u -p -r1.17 howto.html
--- docs/html/20_util/howto.html 10 Jun 2003 21:52:23 -0000 1.17
+++ docs/html/20_util/howto.html 13 Nov 2003 00:55:31 -0000
@@ -10,8 +10,16 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="HOWTO for the libstdc++ chapter 20." />
<meta name="GENERATOR" content="vi and eight fingers" />
- <title>libstdc++-v3 HOWTO: Chapter 20</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+ <title>libstdc++-v3 HOWTO: Chapter 20: General Utilities</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Prev" href="../19_diagnostics/howto.html" type="text/html"
+ title="Diagnostics" />
+<link rel="Next" href="../21_strings/howto.html" type="text/html"
+ title="Strings" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
Index: docs/html/21_strings/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/21_strings/howto.html,v
retrieving revision 1.17
diff -u -p -r1.17 howto.html
--- docs/html/21_strings/howto.html 9 Jul 2003 00:40:28 -0000 1.17
+++ docs/html/21_strings/howto.html 13 Nov 2003 00:55:32 -0000
@@ -10,8 +10,16 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="HOWTO for the libstdc++ chapter 21." />
<meta name="GENERATOR" content="vi and eight fingers" />
- <title>libstdc++-v3 HOWTO: Chapter 21</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+ <title>libstdc++-v3 HOWTO: Chapter 21: Strings</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Prev" href="../20_util/howto.html" type="text/html"
+ title="General Utilities" />
+<link rel="Next" href="../22_locale/howto.html" type="text/html"
+ title="Localization" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
Index: docs/html/22_locale/codecvt.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/22_locale/codecvt.html,v
retrieving revision 1.5
diff -u -p -r1.5 codecvt.html
--- docs/html/22_locale/codecvt.html 7 Oct 2002 18:11:19 -0000 1.5
+++ docs/html/22_locale/codecvt.html 13 Nov 2003 00:55:32 -0000
@@ -10,7 +10,12 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="Notes on the codecvt implementation." />
<title>Notes on the codecvt implementation.</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Bookmark" href="howto.html" type="text/html" title="Localization" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
<h1>
Index: docs/html/22_locale/ctype.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/22_locale/ctype.html,v
retrieving revision 1.5
diff -u -p -r1.5 ctype.html
--- docs/html/22_locale/ctype.html 7 Oct 2002 18:11:19 -0000 1.5
+++ docs/html/22_locale/ctype.html 13 Nov 2003 00:55:32 -0000
@@ -10,7 +10,12 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="Notes on the ctype implementation." />
<title>Notes on the ctype implementation.</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Bookmark" href="howto.html" type="text/html" title="Localization" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
<h1>
Index: docs/html/22_locale/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/22_locale/howto.html,v
retrieving revision 1.17
diff -u -p -r1.17 howto.html
--- docs/html/22_locale/howto.html 30 Jul 2003 14:43:35 -0000 1.17
+++ docs/html/22_locale/howto.html 13 Nov 2003 00:55:32 -0000
@@ -10,8 +10,22 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="HOWTO for the libstdc++ chapter 22." />
<meta name="GENERATOR" content="vi and eight fingers" />
- <title>libstdc++-v3 HOWTO: Chapter 22</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+ <title>libstdc++-v3 HOWTO: Chapter 22: Localization</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Prev" href="../21_strings/howto.html" type="text/html"
+ title="Strings" />
+<link rel="Next" href="../23_containers/howto.html" type="text/html"
+ title="Containers" />
+<link rel="Bookmark" href="locale.html" type="text/html" title="class locale" />
+<link rel="Bookmark" href="codecvt.html" type="text/html" title="class codecvt" />
+<link rel="Bookmark" href="ctype.html" type="text/html" title="class ctype" />
+<link rel="Bookmark" href="messages.html" type="text/html" title="class messages" />
+<link rel="Bookmark" href="http://www.research.att.com/~bs/3rd_loc0.html" type="text/html" title="Bjarne Stroustrup on Locales" />
+<link rel="Bookmark" href="http://www.cantrip.org/locale.html" type="text/html" title="Nathan Myers on Locales" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
@@ -83,7 +97,7 @@
</p>
<hr />
-<h2><a name="5">Stroustrup on Locales</a></h2>
+<h2><a name="5">Bjarne Stroustrup on Locales</a></h2>
<p>Dr. Bjarne Stroustrup has released a
<a href="http://www.research.att.com/~bs/3rd_loc0.html">pointer</a>
to Appendix D of his book,
Index: docs/html/22_locale/locale.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/22_locale/locale.html,v
retrieving revision 1.13
diff -u -p -r1.13 locale.html
--- docs/html/22_locale/locale.html 13 Nov 2002 01:04:03 -0000 1.13
+++ docs/html/22_locale/locale.html 13 Nov 2003 00:55:32 -0000
@@ -10,7 +10,12 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, locale name LC_ALL" />
<meta name="DESCRIPTION" content="Notes on the locale implementation." />
<title>Notes on the locale implementation.</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Bookmark" href="howto.html" type="text/html" title="Localization" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
<h1>
Index: docs/html/22_locale/messages.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/22_locale/messages.html,v
retrieving revision 1.9
diff -u -p -r1.9 messages.html
--- docs/html/22_locale/messages.html 11 Nov 2002 01:10:43 -0000 1.9
+++ docs/html/22_locale/messages.html 13 Nov 2003 00:55:32 -0000
@@ -10,7 +10,12 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="Notes on the messages implementation." />
<title>Notes on the messages implementation.</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Bookmark" href="howto.html" type="text/html" title="Localization" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
<h1>
Index: docs/html/23_containers/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/23_containers/howto.html,v
retrieving revision 1.26
diff -u -p -r1.26 howto.html
--- docs/html/23_containers/howto.html 11 Nov 2002 01:10:43 -0000 1.26
+++ docs/html/23_containers/howto.html 13 Nov 2003 00:55:32 -0000
@@ -10,8 +10,16 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="HOWTO for the libstdc++ chapter 23." />
<meta name="GENERATOR" content="vi and eight fingers" />
- <title>libstdc++-v3 HOWTO: Chapter 23</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+ <title>libstdc++-v3 HOWTO: Chapter 23: Containers</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Prev" href="../22_locale/howto.html" type="text/html"
+ title="Localization" />
+<link rel="Next" href="../24_iterators/howto.html" type="text/html"
+ title="Iterators" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
Index: docs/html/24_iterators/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/24_iterators/howto.html,v
retrieving revision 1.12
diff -u -p -r1.12 howto.html
--- docs/html/24_iterators/howto.html 11 Nov 2002 01:10:43 -0000 1.12
+++ docs/html/24_iterators/howto.html 13 Nov 2003 00:55:32 -0000
@@ -10,8 +10,16 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="HOWTO for the libstdc++ chapter 24." />
<meta name="GENERATOR" content="vi and eight fingers" />
- <title>libstdc++-v3 HOWTO: Chapter 24</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+ <title>libstdc++-v3 HOWTO: Chapter 24: Iterators</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Prev" href="../23_containers/howto.html" type="text/html"
+ title="Containers" />
+<link rel="Next" href="../25_algorithms/howto.html" type="text/html"
+ title="Algorithms" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
Index: docs/html/25_algorithms/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/25_algorithms/howto.html,v
retrieving revision 1.14
diff -u -p -r1.14 howto.html
--- docs/html/25_algorithms/howto.html 11 Nov 2002 01:10:43 -0000 1.14
+++ docs/html/25_algorithms/howto.html 13 Nov 2003 00:55:32 -0000
@@ -10,8 +10,16 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="HOWTO for the libstdc++ chapter 25." />
<meta name="GENERATOR" content="vi and eight fingers" />
- <title>libstdc++-v3 HOWTO: Chapter 25</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+ <title>libstdc++-v3 HOWTO: Chapter 25: Algorithms</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Prev" href="../24_iterators/howto.html" type="text/html"
+ title="Iterators" />
+<link rel="Next" href="../26_numerics/howto.html" type="text/html"
+ title="Numerics" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
Index: docs/html/26_numerics/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/26_numerics/howto.html,v
retrieving revision 1.13
diff -u -p -r1.13 howto.html
--- docs/html/26_numerics/howto.html 11 Nov 2002 01:10:44 -0000 1.13
+++ docs/html/26_numerics/howto.html 13 Nov 2003 00:55:32 -0000
@@ -10,8 +10,16 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="HOWTO for the libstdc++ chapter 26." />
<meta name="GENERATOR" content="vi and eight fingers" />
- <title>libstdc++-v3 HOWTO: Chapter 26</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+ <title>libstdc++-v3 HOWTO: Chapter 26: Numerics</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Prev" href="../25_algorithms/howto.html" type="text/html"
+ title="Algorithms" />
+<link rel="Next" href="../27_io/howto.html" type="text/html"
+ title="Input/Output" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
Index: docs/html/27_io/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/27_io/howto.html,v
retrieving revision 1.27
diff -u -p -r1.27 howto.html
--- docs/html/27_io/howto.html 3 Sep 2003 14:54:02 -0000 1.27
+++ docs/html/27_io/howto.html 13 Nov 2003 00:55:33 -0000
@@ -10,8 +10,16 @@
<meta name="KEYWORDS" content="HOWTO, libstdc++, GCC, g++, libg++, STL" />
<meta name="DESCRIPTION" content="HOWTO for the libstdc++ chapter 27." />
<meta name="GENERATOR" content="vi and eight fingers" />
- <title>libstdc++-v3 HOWTO: Chapter 27</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+ <title>libstdc++-v3 HOWTO: Chapter 27: Input/Output</title>
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Prev" href="../26_numerics/howto.html" type="text/html"
+ title="Numerics" />
+<link rel="Next" href="../ext/howto.html" type="text/html"
+ title="Extensions" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
+<link rel="Help" href="../faq/index.html" type="text/html" title="F.A.Q." />
</head>
<body>
@@ -145,7 +153,7 @@
<< "another line of text\n"; </pre>
<p>I have also joined the output statements into a single statement.
You could make the code prettier by moving the single newline to
- the start of the quoted text on the thing line, for example.
+ the start of the quoted text on the last line, for example.
</p>
<p>If you do need to flush the buffer above, you can send an
<code>endl</code> if you also need a newline, or just flush the buffer
Index: docs/html/ext/howto.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/ext/howto.html,v
retrieving revision 1.37
diff -u -p -r1.37 howto.html
--- docs/html/ext/howto.html 9 Nov 2003 10:47:58 -0000 1.37
+++ docs/html/ext/howto.html 13 Nov 2003 00:55:33 -0000
@@ -11,7 +11,14 @@
<meta name="DESCRIPTION" content="Notes for the libstdc++ extensions." />
<meta name="GENERATOR" content="vi and eight fingers" />
<title>libstdc++-v3 HOWTO: Extensions</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Prev" href="../27_io/howto.html" type="text/html"
+ title="Input/Output" />
+<link rel="Bookmark" href="sgiexts.html" type="text/html"
+ title="SGI extensions" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
</head>
<body>
Index: docs/html/ext/sgiexts.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/ext/sgiexts.html,v
retrieving revision 1.12
diff -u -p -r1.12 sgiexts.html
--- docs/html/ext/sgiexts.html 16 Apr 2003 17:02:47 -0000 1.12
+++ docs/html/ext/sgiexts.html 13 Nov 2003 00:55:33 -0000
@@ -10,7 +10,12 @@
<meta name="DESCRIPTION" content="SGI extensions preserved in libstdc++-v3." />
<meta name="GENERATOR" content="vi and eight fingers" />
<title>SGI extensions to the library in libstdc++-v3</title>
-<link rel="StyleSheet" href="../lib3styles.css" />
+<link rel="StyleSheet" href="../lib3styles.css" type="text/css" />
+<link rel="Start" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Subsection" href="sgiexts.html" type="text/html" title="Extensions" />
+<link rel="Bookmark" href="howto.html" type="text/html" title="Extensions" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
</head>
<body>
Index: docs/html/faq/index.html
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/docs/html/faq/index.html,v
retrieving revision 1.61
diff -u -p -r1.61 index.html
--- docs/html/faq/index.html 5 Sep 2003 08:10:41 -0000 1.61
+++ docs/html/faq/index.html 13 Nov 2003 00:55:34 -0000
@@ -10,6 +10,9 @@
<meta name="DESCRIPTION" content="FAQ for the GNU libstdc++ effort." />
<title>libstdc++-v3 FAQ</title>
<link rel="StyleSheet" href="../lib3styles.css" />
+<link rel="Start" rev="Help" href="../documentation.html" type="text/html"
+ title="GNU C++ Standard Library" />
+<link rel="Copyright" href="../17_intro/license.html" type="text/html" />
<!--
** Locations of "the most recent snapshot is the Nth" text are
** answers 1_1, .
More information about the Libstdc++
mailing list