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 2010/11/10 09:52:03 UTC

svn commit: r1033397 - in /tcl/site/rivet: css/rivet.css static/download.html static/hello_world.html

Author: mxmanghi
Date: Wed Nov 10 08:52:03 2010
New Revision: 1033397

URL: http://svn.apache.org/viewvc?rev=1033397&view=rev
Log:
Rivet on Debian announcement, hello_world example revised

Modified:
    tcl/site/rivet/css/rivet.css
    tcl/site/rivet/static/download.html
    tcl/site/rivet/static/hello_world.html

Modified: tcl/site/rivet/css/rivet.css
URL: http://svn.apache.org/viewvc/tcl/site/rivet/css/rivet.css?rev=1033397&r1=1033396&r2=1033397&view=diff
==============================================================================
--- tcl/site/rivet/css/rivet.css (original)
+++ tcl/site/rivet/css/rivet.css Wed Nov 10 08:52:03 2010
@@ -210,10 +210,10 @@ ul {
 }
 
 code {
-    margin:		1em 2em;
-    border:		1px dashed black;
+    border-bottom:	1px dashed black;
     background-color:	#f0f0f0;
-    padding:		0.2em 2em;
+    padding:		2px;
+    font-style:		fixed;
 }
 
 pre.code {

Modified: tcl/site/rivet/static/download.html
URL: http://svn.apache.org/viewvc/tcl/site/rivet/static/download.html?rev=1033397&r1=1033396&r2=1033397&view=diff
==============================================================================
--- tcl/site/rivet/static/download.html (original)
+++ tcl/site/rivet/static/download.html Wed Nov 10 08:52:03 2010
@@ -114,26 +114,21 @@
  <div class="sez">
   <h4>RPM</h4>
   <p>
-			Jeff Lawson prepared a 
-			<a href="http://svn.rpmforge.net/viewvc/rpmforge/trunk/rpms/mod_rivet/">.spec file</a>
+		    Jeff Lawson prepared a 
+		    <a href="http://svn.rpmforge.net/viewvc/rpmforge/trunk/rpms/mod_rivet/">.spec file</a>
 
-			for RPMforge that can be used to build an .rpm out of the source code.
-		      </p>
+		    for RPMforge that can be used to build an .rpm out of the source code.
+		    </p>
  </div>
  <div class="sez">
   <h4>Debian</h4>
   <p>
-			Rivet (named as <strong>libapache2-mod-rivet</strong>
- and <strong>libapache2-mod-rivet-doc</strong>
-) is not 
-			in Debian yet. While Sven Hoexter, a Debian Developer who kindly sponsored the packages, gets them 
-			into Debian you can roll your own unofficial packages starting from the source and control files 
-			available from 
-			<a href="http://mentors.debian.net/debian/pool/main/l/libapache2-mod-rivet/">mentors.debian.net</a>
-. 
-			Once these files are downloaded you can build the binary packages using one of the Debian 
-			packaging tools (e.g. <a href="http://pbuilder.alioth.debian.org/">pbuilder</a>
-) (25-Oct-2010).
+			Rivet was kindly sponsored by Sven Hoexter, Debian Developer. You
+			can download it from from Debian as 
+			<a href="http://packages.debian.org/sid/libapache2-mod-rivet">libapache2-mod-rivet</a>
+ (binary module and configuration) and 
+			<a href="http://packages.debian.org/sid/libapache2-mod-rivet-doc">libapache2-mod-rivet-doc</a>
+ (HTML manual)
 		    </p>
  </div>
  <div class="sez">
@@ -155,11 +150,11 @@
 
 
 		    </div>
-		    <div id="last_modified">Last Modified: 26-10-2010 21:02:59 UTC</div>
+		    <div id="last_modified">Last Modified: 10-11-2010 08:42:33 UTC</div>
 		</div>
 		<div class="clearfloats"></div>
 		<!--div class="leftaligned">:Massimo Manghi</div>
-		<div class="rightaligned">:26-10-2010 21:02:59</div-->
+		<div class="rightaligned">:10-11-2010 08:42:33</div-->
 		<div>
 		    <table align="center" width="100%">
 			<tr>

Modified: tcl/site/rivet/static/hello_world.html
URL: http://svn.apache.org/viewvc/tcl/site/rivet/static/hello_world.html?rev=1033397&r1=1033396&r2=1033397&view=diff
==============================================================================
--- tcl/site/rivet/static/hello_world.html (original)
+++ tcl/site/rivet/static/hello_world.html Wed Nov 10 08:52:03 2010
@@ -160,17 +160,19 @@
 &lt;/html&gt;
 </pre>
   <p>
-				You can obtain the same output using the <tt>
+				The example can be elaborated, for example using the <tt>
     <a href="http://tcl.apache.org/rivet/manual/html.html">html</a>
    </tt>
- command of Rivet			
+ command			
 			  </p>
-  <pre class="programlisting">&lt;html&gt;
+  <pre class="programlisting">
+&lt;? set hello_message "Hello world" ?&gt;
+&lt;html&gt;
   &lt;head&gt;
-    &lt;title&gt;Hello World&lt;/title&gt;
+    &lt;title&gt;&lt;? puts $hello_message ?&gt;&lt;/title&gt;
   &lt;/head&gt;
   &lt;body&gt;&lt;?
-    puts [html "Hello world" pre b]
+    puts [html $hello_message pre b]
 ?&gt;&lt;/body&gt;
 &lt;/html&gt;
 </pre>
@@ -180,11 +182,11 @@
 
 
 		    </div>
-		    <div id="last_modified">Last Modified: 20-07-2010 13:11:09 UTC</div>
+		    <div id="last_modified">Last Modified: 08-11-2010 13:51:27 UTC</div>
 		</div>
 		<div class="clearfloats"></div>
 		<!--div class="leftaligned">:$Author: massimo.manghi $</div>
-		<div class="rightaligned">:20-07-2010 13:11:09</div-->
+		<div class="rightaligned">:08-11-2010 13:51:27</div-->
 		<div>
 		    <table align="center" width="100%">
 			<tr>



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