Boost logo

Boost-Commit :

From: andreas.pokorny_at_[hidden]
Date: 2007-08-08 03:12:01


Author: mumiee
Date: 2007-08-08 03:11:50 EDT (Wed, 08 Aug 2007)
New Revision: 38503
URL: http://svn.boost.org/trac/boost/changeset/38503

Log:
three new highlighting color schemes

Added:
   sandbox/boost_docs/trunk/doc/style/html/images/syntax/evening.png (contents, props changed)
   sandbox/boost_docs/trunk/doc/style/html/images/syntax/morning.png (contents, props changed)
   sandbox/boost_docs/trunk/doc/style/html/images/syntax/solid/evening.png (contents, props changed)
   sandbox/boost_docs/trunk/doc/style/html/images/syntax/solid/morning.png (contents, props changed)
   sandbox/boost_docs/trunk/doc/style/html/images/syntax/solid/vim.png (contents, props changed)
   sandbox/boost_docs/trunk/doc/style/html/images/syntax/vim.png (contents, props changed)
   sandbox/boost_docs/trunk/doc/style/html/syntax/evening.css (contents, props changed)
   sandbox/boost_docs/trunk/doc/style/html/syntax/morning.css (contents, props changed)
   sandbox/boost_docs/trunk/doc/style/html/syntax/vim.css (contents, props changed)
Text files modified:
   sandbox/boost_docs/trunk/doc/style/html/programlisting.css | 37 +++++++++++++++++++++++++++++++++++++
   sandbox/boost_docs/trunk/doc/style/html/syntax.xml | 5 ++++-
   2 files changed, 41 insertions(+), 1 deletions(-)

Added: sandbox/boost_docs/trunk/doc/style/html/images/syntax/evening.png
==============================================================================
Binary file. No diff available.

Added: sandbox/boost_docs/trunk/doc/style/html/images/syntax/morning.png
==============================================================================
Binary file. No diff available.

Added: sandbox/boost_docs/trunk/doc/style/html/images/syntax/solid/evening.png
==============================================================================
Binary file. No diff available.

Added: sandbox/boost_docs/trunk/doc/style/html/images/syntax/solid/morning.png
==============================================================================
Binary file. No diff available.

Added: sandbox/boost_docs/trunk/doc/style/html/images/syntax/solid/vim.png
==============================================================================
Binary file. No diff available.

Added: sandbox/boost_docs/trunk/doc/style/html/images/syntax/vim.png
==============================================================================
Binary file. No diff available.

Modified: sandbox/boost_docs/trunk/doc/style/html/programlisting.css
==============================================================================
--- sandbox/boost_docs/trunk/doc/style/html/programlisting.css (original)
+++ sandbox/boost_docs/trunk/doc/style/html/programlisting.css 2007-08-08 03:11:50 EDT (Wed, 08 Aug 2007)
@@ -110,6 +110,28 @@
         height: 30px; width: 30px;
     }
 
+ .ss-option-vim
+ {
+ float: left;
+ background: url(images/syntax/vim.png) no-repeat center;
+ height: 30px; width: 30px;
+ }
+
+ .ss-option-evening
+ {
+ float: left;
+ background: url(images/syntax/evening.png) no-repeat center;
+ height: 30px; width: 30px;
+ }
+
+ .ss-option-morning
+ {
+ float: left;
+ background: url(images/syntax/morning.png) no-repeat center;
+ height: 30px; width: 30px;
+ }
+
+
     * html body .ss-options
     {
         padding-top: 0px;
@@ -145,5 +167,20 @@
         background: url(images/syntax/solid/bc.png) no-repeat center;
     }
 
+ * html body .ss-option-vim
+ {
+ background: url(images/syntax/solid/vim.png) no-repeat center;
+ }
+
+ * html body .ss-option-evening
+ {
+ background: url(images/syntax/solid/evening.png) no-repeat center;
+ }
+ * html body .ss-option-morning
+ {
+ background: url(images/syntax/solid/morning.png) no-repeat center;
+ }
+
+
 
 

Modified: sandbox/boost_docs/trunk/doc/style/html/syntax.xml
==============================================================================
--- sandbox/boost_docs/trunk/doc/style/html/syntax.xml (original)
+++ sandbox/boost_docs/trunk/doc/style/html/syntax.xml 2007-08-08 03:11:50 EDT (Wed, 08 Aug 2007)
@@ -9,5 +9,8 @@
     <style title="cw" href="cw.css" />
     <style title="bc" href="bc.css" />
     <style title="sc" href="sc.css" />
+ <style title="vim" href="vim.css" />
+ <style title="morning" href="morning.css" />
+ <style title="evening" href="evening.css" />
 
-</styleList>
\ No newline at end of file
+</styleList>

Added: sandbox/boost_docs/trunk/doc/style/html/syntax/evening.css
==============================================================================
--- (empty file)
+++ sandbox/boost_docs/trunk/doc/style/html/syntax/evening.css 2007-08-08 03:11:50 EDT (Wed, 08 Aug 2007)
@@ -0,0 +1,45 @@
+/*=============================================================================
+
+ Boostbook Green Style
+
+ Copyright (c) 2006-2007 Matias Capeletto
+
+ Use, modification and distribution is subject to the Boost Software
+ License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt)
+
+ Acknowledgments:
+ This css is based on ideas from stylesheets from Joel De Guzman and
+ Rene Rivera.
+
+=============================================================================*/
+
+
+
+/*----------------------------------------------------------------------------
+ Vim Evening Syntax Highlighting
+-----------------------------------------------------------------------------*/
+
+ .keyword { color: #60ff60; font-weight: bold; }
+ .identifier { color: #FFFFFF; font-weight: bold; }
+ .special-keyword{ color: #FFFF60; font-weight: bold; }
+ .special { color: #FFFFFF; }
+ .preprocessor { color: #FF80FF; }
+ .comment { color: #80A0FF; }
+ .string { color: #FFA0A0; background-color: #000000;}
+ .char { color: #FFA0A0; background-color: #000000;}
+ .number { color: #FFA0A0; background-color: #000000;}
+ .white_bkd { background-color: #333333; }
+ .dk_grey_bkd { background-color: #333333; }
+
+ .box-inner-wrapper { background-color: #333333;}
+ .box-outer-wrapper { background-color: #333333;}
+ .box-bottom-left { background-color: #333333;}
+ .box-bottom { background-color: #333333;}
+ .box-bottom-right { background-color: #333333;}
+ .box-top-right { background-color: #333333;}
+ .box-top-left { background-color: #333333;}
+ .box-top { background-color: #333333;}
+ .style-switcher-box { background-color: #333333;}
+
+

Added: sandbox/boost_docs/trunk/doc/style/html/syntax/morning.css
==============================================================================
--- (empty file)
+++ sandbox/boost_docs/trunk/doc/style/html/syntax/morning.css 2007-08-08 03:11:50 EDT (Wed, 08 Aug 2007)
@@ -0,0 +1,44 @@
+/*=============================================================================
+
+ Boostbook Green Style
+
+ Copyright (c) 2006-2007 Matias Capeletto
+
+ Use, modification and distribution is subject to the Boost Software
+ License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt)
+
+ Acknowledgments:
+ This css is based on ideas from stylesheets from Joel De Guzman and
+ Rene Rivera.
+
+=============================================================================*/
+
+
+/*----------------------------------------------------------------------------
+ Vim Morning Syntax Highlighting
+-----------------------------------------------------------------------------*/
+
+ .keyword { color: #2e8b57; font-weight: bold }
+ .special-keyword{ color: #A52A2A; font-weight: bold }
+ .special { color: #000000; }
+ .identifier { color: #000000; }
+ .preprocessor { color: #A020F0; }
+ .comment { color: #0000FF; }
+ .char { color: #FF00FF; background-color: #f2f2f2;}
+ .string { color: #FF00FF; background-color: #f2f2f2; }
+ .number { color: #FF00FF; background-color: #f2f2f2;}
+ .white_bkd { background-color: #E5E5E5; }
+ .dk_grey_bkd { background-color: #A0DAAC; }
+
+ .box-inner-wrapper { background-color: #E5E5E5;}
+ .box-outer-wrapper { background-color: #E5E5E5;}
+ .box-bottom-left { background-color: #E5E5E5;}
+ .box-bottom { background-color: #E5E5E5;}
+ .box-bottom-right { background-color: #E5E5E5;}
+ .box-top-right { background-color: #E5E5E5;}
+ .box-top-left { background-color: #E5E5E5;}
+ .box-top { background-color: #E5E5E5;}
+ .style-switcher-box { background-color: #E5E5E5;}
+
+

Added: sandbox/boost_docs/trunk/doc/style/html/syntax/vim.css
==============================================================================
--- (empty file)
+++ sandbox/boost_docs/trunk/doc/style/html/syntax/vim.css 2007-08-08 03:11:50 EDT (Wed, 08 Aug 2007)
@@ -0,0 +1,35 @@
+/*=============================================================================
+
+ Boostbook Green Style
+
+ Copyright (c) 2006-2007 Matias Capeletto
+
+ Use, modification and distribution is subject to the Boost Software
+ License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt)
+
+ Acknowledgments:
+ This css is based on ideas from stylesheets from Joel De Guzman and
+ Rene Rivera.
+
+=============================================================================*/
+
+
+
+/*----------------------------------------------------------------------------
+ Vim Default Syntax Highlighting
+-----------------------------------------------------------------------------*/
+
+ .keyword { color: #2E8B57; font-weight: bold }
+ .special-keyword{ color: #A52A2A; font-weight: bold }
+ .special { color: #000000; }
+ .identifier { color: #000000; }
+ .preprocessor { color: #A020F0; }
+ .comment { color: #0000FF; }
+ .char { color: #FF00FF; background-color: #fFffff;}
+ .string { color: #FF00FF; background-color: #fFffff; }
+ .number { color: #FF00FF; background-color: #fFffff;}
+ .white_bkd { background-color: #FFFFFF; }
+ .dk_grey_bkd { background-color: #999999; }
+
+


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