You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-cvs@tcl.apache.org by mx...@apache.org on 2014/06/04 00:20:10 UTC

svn commit: r1599813 - in /tcl/rivet/trunk: ChangeLog doc/images/home.png doc/images/next.png doc/images/prev.png doc/images/up.png doc/rivet.css doc/rivet.xsl doc/xml/install.xml doc/xml/intro.xml

Author: mxmanghi
Date: Tue Jun  3 22:20:10 2014
New Revision: 1599813

URL: http://svn.apache.org/r1599813
Log:
    * doc/xml/intro.xml: Acknowledgements reworded into a list
    * doc/images/: logo has now a transparent background, navigation icons colors turned into a greenish tint
    * rivet.xsl,rivet.css: new style based on a green gamut to make pages visually different from Rivet 2.1


Modified:
    tcl/rivet/trunk/ChangeLog
    tcl/rivet/trunk/doc/images/home.png
    tcl/rivet/trunk/doc/images/next.png
    tcl/rivet/trunk/doc/images/prev.png
    tcl/rivet/trunk/doc/images/up.png
    tcl/rivet/trunk/doc/rivet.css
    tcl/rivet/trunk/doc/rivet.xsl
    tcl/rivet/trunk/doc/xml/install.xml
    tcl/rivet/trunk/doc/xml/intro.xml

Modified: tcl/rivet/trunk/ChangeLog
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/ChangeLog?rev=1599813&r1=1599812&r2=1599813&view=diff
==============================================================================
--- tcl/rivet/trunk/ChangeLog (original)
+++ tcl/rivet/trunk/ChangeLog Tue Jun  3 22:20:10 2014
@@ -1,5 +1,7 @@
 2014-06-03 Massimo Manghi <mx...@apache.org>
-    * doc/xml/intro.xml: Acknowledgements reworded
+    * doc/xml/intro.xml: Acknowledgements reworded into a list
+    * doc/images/: logo has now a transparent background, navigation icons colors turned into a greenish tint
+    * rivet.xsl,rivet.css: new style based on a green gamut to make pages visually different from Rivet 2.1
 
 2014-06-02 Massimo Manghi <mx...@apache.org>
     * VERSION,configure.ac: tagging this code as 2.2.0

Modified: tcl/rivet/trunk/doc/images/home.png
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/doc/images/home.png?rev=1599813&r1=1599812&r2=1599813&view=diff
==============================================================================
Binary files - no diff available.

Modified: tcl/rivet/trunk/doc/images/next.png
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/doc/images/next.png?rev=1599813&r1=1599812&r2=1599813&view=diff
==============================================================================
Binary files - no diff available.

Modified: tcl/rivet/trunk/doc/images/prev.png
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/doc/images/prev.png?rev=1599813&r1=1599812&r2=1599813&view=diff
==============================================================================
Binary files - no diff available.

Modified: tcl/rivet/trunk/doc/images/up.png
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/doc/images/up.png?rev=1599813&r1=1599812&r2=1599813&view=diff
==============================================================================
Binary files - no diff available.

Modified: tcl/rivet/trunk/doc/rivet.css
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/doc/rivet.css?rev=1599813&r1=1599812&r2=1599813&view=diff
==============================================================================
--- tcl/rivet/trunk/doc/rivet.css (original)
+++ tcl/rivet/trunk/doc/rivet.css Tue Jun  3 22:20:10 2014
@@ -22,25 +22,26 @@ PRE.SCREEN
         border-right: solid #009999 2px;
         border-top: solid #009999 2px;
         border-bottom: solid #009999 2px;
-
         padding-left: 15pt;
 }
 
 PRE.PROGRAMLISTING
 {
-        font-family:monospace;
+        font-family: monospace;
         white-space: pre;
-        width: 95%;
-        background-color: #ffffcc;
-        border:solid;
-        color: #000000;
+        width:  95%;
+        background-color: #eeffee;
+        border: solid;
+        color:  #000000;
         border-color: #009999;
-        border-left: solid #009999 2px;
-        border-right: solid #009999 2px;
-        border-top: solid #009999 2px;
-        border-bottom: solid #009999 2px;
+        border-left: solid #009999 1px;
+        border-right: solid #009999 1px;
+        border-top: solid #009999 1px;
+        border-bottom: solid #009999 1px;
         font-size:  normal;
-        padding-left: 15pt;
+        padding-top:    1em;
+        padding-left:   1em;
+        padding-bottom: 1em;
 }
 
 H1
@@ -80,9 +81,9 @@ H2
 {       
         COLOR: #ffffff ;
         font-style: italic;
-        BACKGROUND-color: #a0a0d0;
-        BORDER: solid 3px #606090;
-        PADDING: 1px
+        BACKGROUND-color: #a0d0a0;
+        BORDER: solid 3px #609060;
+        PADDING: 5px
 }
 
 TABLE.IMPORTANT
@@ -261,7 +262,7 @@ P.C2 {
 
 DIV.NAVFOOTER {
         color: #000000;
-        background-color: #EFEFF8;
+        background-color: #DFFFDF;
         padding: 5px;
         margin-top: 10px;
         width: 100%;
@@ -279,7 +280,7 @@ DIV.NUKEFOOTER {
 
 DIV.NAVHEADER {
         color: #000000;
-        background-color: #EFEFF8;
+        background-color: #DFFFDF;
         padding: 5px;
         margin-bottom: 10px;
         width: 100%;
@@ -295,7 +296,11 @@ DIV.EXAMPLE,DIV.TOC {
         padding-left: 10px;
         padding-right: 10px;
         color: #000000;
-        background-color: #EFF8F8;
+        background-color: #E8FFE8;
+}
+DIV.EXAMPLE {
+        border: thin dotted #22AA22;
+        background-color: #EEE;
 }
 
 DIV.TOC {

Modified: tcl/rivet/trunk/doc/rivet.xsl
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/doc/rivet.xsl?rev=1599813&r1=1599812&r2=1599813&view=diff
==============================================================================
--- tcl/rivet/trunk/doc/rivet.xsl (original)
+++ tcl/rivet/trunk/doc/rivet.xsl Tue Jun  3 22:20:10 2014
@@ -122,7 +122,7 @@
 
   <xsl:template match="cmdsynopsis">
     <div class="{name(.)}" style="width:80%">
-      <div style="background:#ccccff ; margin:1ex ; padding:.4ex; padding-left: 0.8ex; 
+      <div style="border: 1px solid #282; margin:1ex ; padding:.4ex; padding-left: 0.8ex; 
 	word-spacing:1ex ">
 	<xsl:call-template name="anchor"/>
 	<xsl:apply-templates/>
@@ -331,9 +331,10 @@
 	  </pre>
 	</xsl:when>
 	<xsl:otherwise>
-	  <pre style="background:#ccc; margin: 2ex; margin-right: 10%; 
+	  <!-- pre style="background:#ccc; margin: 2ex; margin-right: 10%; 
 	    padding: 1ex; border: dashed black 1px ; white-space: pre;
-	    font-family: monospace; font-size: 90%;" class="{name(.)}">
+	    font-family: monospace; font-size: 90%;" class="{name(.)}" -->
+	  <pre class="{name(.)}">
 	    <xsl:apply-templates/>
 	  </pre>
 	</xsl:otherwise>

Modified: tcl/rivet/trunk/doc/xml/install.xml
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/doc/xml/install.xml?rev=1599813&r1=1599812&r2=1599813&view=diff
==============================================================================
--- tcl/rivet/trunk/doc/xml/install.xml (original)
+++ tcl/rivet/trunk/doc/xml/install.xml Tue Jun  3 22:20:10 2014
@@ -2,7 +2,7 @@
     <title>Apache Rivet Installation</title>
     <procedure>
         <para> 
-            Rivet 2.1 runs with the Apache 2.2.x and 2.4.x HTTP web server. 
+            Rivet 2.2 runs with the Apache 2.2.x and 2.4.x HTTP web server. 
             It is known to build and run on various Linux distributions 
             (Debian &amp; Ubuntu, Redhat, SuSE and CentOS), FreeBSD and OpenBSD. For some
             of these Unix-like operative systems 
@@ -10,7 +10,7 @@
             are already available for download.
         </para>
         <para>
-            Currently there is no way to run Apache Rivet 2.1 on Windows&copy; because            
+            Currently there is no way to run Apache Rivet 2.2 on Windows&copy; because            
             Rivet currently requires the 
             <ulink url="http://httpd.apache.org/docs/2.2/mod/prefork.html">prefork</ulink>, which
             is supported only on Unix/Linux systems. Efforts are under way to extend the support to the 

Modified: tcl/rivet/trunk/doc/xml/intro.xml
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/doc/xml/intro.xml?rev=1599813&r1=1599812&r2=1599813&view=diff
==============================================================================
--- tcl/rivet/trunk/doc/xml/intro.xml (original)
+++ tcl/rivet/trunk/doc/xml/intro.xml Tue Jun  3 22:20:10 2014
@@ -1,5 +1,4 @@
 <section id="introduction">
-
     <title>Introduction to Apache Rivet</title>
     <para>
       Apache Rivet is a system for creating dynamic web content via a
@@ -12,7 +11,6 @@
       meet these goals, we have chosen the Tcl programming language to
       combine with the Apache Web Server.
     </para>
-
     <para>
       In this manual, we aim to help get you started, and then
       writing productive code as quickly as possible, as well as



---------------------------------------------------------------------
To unsubscribe, e-mail: site-cvs-unsubscribe@tcl.apache.org
For additional commands, e-mail: site-cvs-help@tcl.apache.org