Просмотр исходного кода

Merge doc from trunk.

[SVN r63460]
Daniel James 16 лет назад
Родитель
Сommit
4db9e6c71b
4 измененных файлов с 74 добавлено и 34 удалено
  1. 19 16
      doc/html/boostbook.css
  2. 7 2
      doc/pdf/Jamfile.v2
  3. 19 16
      doc/src/boostbook.css
  4. 29 0
      doc/src/minimal.css

+ 19 - 16
doc/html/boostbook.css

@@ -39,7 +39,7 @@
 
     pre.synopsis
     {
-        font-size: 90%;
+        font-size: 9pt;
         margin: 1pc 4% 0pc 4%;
         padding: 0.5pc 0.5pc 0.5pc 0.5pc;
     }
@@ -385,14 +385,29 @@
             background-color: #FFFFFF;
             color: #000000;
         }
-        
+
+    /* Syntax Highlighting */
+        .keyword        { color: #0000AA; }
+        .identifier     { color: #000000; }
+        .special        { color: #707070; }
+        .preprocessor   { color: #402080; }
+        .char           { color: teal; }
+        .comment        { color: #800000; }
+        .string         { color: teal; }
+        .number         { color: teal; }
+        .white_bkd      { background-color: #FFFFFF; }
+        .dk_grey_bkd    { background-color: #999999; }
+
     /* Links */
-        a
+        a, a .keyword, a .identifier, a .special, a .preprocessor
+        a .char, a .comment, a .string, a .number
         {
             color: #005a9c;
         }
 
-        a:visited
+        a:visited, a:visited .keyword, a:visited .identifier,
+        a:visited .special, a:visited .preprocessor a:visited .char,
+        a:visited .comment, a:visited .string, a:visited .number
         {
             color: #9c5a9c;
         }
@@ -405,18 +420,6 @@
             color: #000000;
         }
 
-    /* Syntax Highlighting */
-        .keyword        { color: #0000AA; }
-        .identifier     { color: #000000; }
-        .special        { color: #707070; }
-        .preprocessor   { color: #402080; }
-        .char           { color: teal; }
-        .comment        { color: #800000; }
-        .string         { color: teal; }
-        .number         { color: teal; }
-        .white_bkd      { background-color: #FFFFFF; }
-        .dk_grey_bkd    { background-color: #999999; }
-
     /* Copyright, Legal Notice */
         .copyright
         {

+ 7 - 2
doc/pdf/Jamfile.v2

@@ -39,6 +39,8 @@ install pdf-install
     ../../libs/date_time/xmldoc//date_time 
     ../../libs/foreach/doc//standalone 
     ../../libs/function/doc//function-doc 
+    ../../libs/functional/factory/doc//standalone
+    ../../libs/functional/forward/doc//standalone
     ../../libs/functional/hash/doc//standalone
     ../../libs/fusion/doc//quickbook
     ../../libs/interprocess/doc//standalone
@@ -53,15 +55,18 @@ install pdf-install
     ../../libs/math/doc/gcd//standalone
     ../../libs/math/doc/sf_and_dist//standalone
     ../../libs/mpi/doc//standalone
-    ../../libs/program_options/doc//program_option
-    ../../libs/property_tree/doc//standalone
     ../../libs/numeric/conversion/doc//standalone
     ../../libs/optional/doc//standalone
+    ../../libs/program_options/doc//program_option
+    ../../libs/property_tree/doc//standalone
     ../../libs/proto/doc//standalone
+    # Invalid Jamfile, doesn't use Boostbook anyway??
+    #../../libs/ptr_container/doc//standalone
     ../../libs/regex/doc//standalone
     ../../libs/scope_exit/doc//standalone
     ../../libs/signals/doc//doc
     ../../libs/spirit/doc//spirit2
+    ../../libs/spirit/repository//doc/spirit2_repository
     ../../libs/static_assert/doc//standalone
     ../../libs/thread/doc//standalone
     ../../libs/tr1/doc//standalone

+ 19 - 16
doc/src/boostbook.css

@@ -39,7 +39,7 @@
 
     pre.synopsis
     {
-        font-size: 90%;
+        font-size: 9pt;
         margin: 1pc 4% 0pc 4%;
         padding: 0.5pc 0.5pc 0.5pc 0.5pc;
     }
@@ -385,14 +385,29 @@
             background-color: #FFFFFF;
             color: #000000;
         }
-        
+
+    /* Syntax Highlighting */
+        .keyword        { color: #0000AA; }
+        .identifier     { color: #000000; }
+        .special        { color: #707070; }
+        .preprocessor   { color: #402080; }
+        .char           { color: teal; }
+        .comment        { color: #800000; }
+        .string         { color: teal; }
+        .number         { color: teal; }
+        .white_bkd      { background-color: #FFFFFF; }
+        .dk_grey_bkd    { background-color: #999999; }
+
     /* Links */
-        a
+        a, a .keyword, a .identifier, a .special, a .preprocessor
+        a .char, a .comment, a .string, a .number
         {
             color: #005a9c;
         }
 
-        a:visited
+        a:visited, a:visited .keyword, a:visited .identifier,
+        a:visited .special, a:visited .preprocessor a:visited .char,
+        a:visited .comment, a:visited .string, a:visited .number
         {
             color: #9c5a9c;
         }
@@ -405,18 +420,6 @@
             color: #000000;
         }
 
-    /* Syntax Highlighting */
-        .keyword        { color: #0000AA; }
-        .identifier     { color: #000000; }
-        .special        { color: #707070; }
-        .preprocessor   { color: #402080; }
-        .char           { color: teal; }
-        .comment        { color: #800000; }
-        .string         { color: teal; }
-        .number         { color: teal; }
-        .white_bkd      { background-color: #FFFFFF; }
-        .dk_grey_bkd    { background-color: #999999; }
-
     /* Copyright, Legal Notice */
         .copyright
         {

+ 29 - 0
doc/src/minimal.css

@@ -0,0 +1,29 @@
+/*
+
+  © Copyright Beman Dawes, 2007
+
+  Distributed under the Boost Software License, Version 1.0.
+  See www.boost.org/LICENSE_1_0.txt
+  
+*/
+
+/*******************************************************************************
+      Body
+*******************************************************************************/
+
+body    { font-family: sans-serif; margin: 1em; }
+
+/*******************************************************************************
+      Table
+*******************************************************************************/
+
+table   { margin: 0.5em; }
+
+/*******************************************************************************
+      Font sizes
+*******************************************************************************/
+
+p, td, li, blockquote { font-size: 10pt; }
+pre     { font-size: 9pt; }
+
+/*** end ***/

粤ICP备19079148号