blob: e5d3e16cadea7d32ced9fef99db25be1fec2025d [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Hello World</title>
<link rel="stylesheet" href="../templates/wondrous/styles.css" type="text/css" />
</head>
<body>
<div id="container">
<div id="header">
<h1><a href="../index.html">Rivet</a></h1>
<h2 id="slogan">Webscripting for Tcl'ers</h2>
<div class="clear"></div>
</div>
<div id="body">
<div id="content">
<h2>Hello World</h2>
<div class="example">
<!-- p class="title"><b>Example 1. Hello World</b></p-->
<div class="example-contents">
<p>
As with any tool, it's always nice to see something work, so
let's create a small "Hello World" page.
</p>
<p>
Assuming you have Apache configured correctly, create a file
called <code class="filename">hello.rvt</code>
where Apache can find
it, with the following content:
</p>
<pre class="programlisting">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Hello World&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;pre&gt;
&lt;b&gt;&lt;? puts "Hello world" ?&gt;&lt;/b&gt;
&lt;/pre&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>
The example can be elaborated, for example using the <tt>
<a href="http://tcl.apache.org/rivet/manual2.1/html.html">html</a>
</tt>
command
<pre class="programlisting">&lt;? set hello_message "Hello world" ?&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;&lt;? puts $hello_message ?&gt;&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;&lt;?
puts [::rivet::html $hello_message pre b]
?&gt;&lt;/body&gt;
&lt;/html&gt;</pre>
</p>
<p>
Starting with version 2.0.5 Rivet also supports a shorthand notation
to output simple strings.
</p>
<p>
<pre class="programlisting">&lt;? set hello_message "Hello world" ?&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;&lt;?= $hello_message ?&gt;&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;&lt;?= [::rivet::html $hello_message pre b] ?&gt;&lt;/body&gt;
&lt;/html&gt;</pre>
</p>
</div>
</div>
<div class="contentbottom">
</div>
</div>
<div class="sidebar">
<ul>
</ul>
<ul>
<li id="home">
<h4>Rivet</h4>
<ul class="blocklist">
<li class="navitem">
<a title="A home for Rivet" href="../index.html">Rivet Homepage</a>
</li>
<li class="navitem">
<a title="Home of Apache Tcl related stuff" target="asf" href="http://tcl.apache.org/">Apache Tcl Home</a>
</li>
<li class="navitem">
<a title="Getting Rivet" href="download.html">Getting Rivet</a>
</li>
<li class="navitem">
<a title="Hello World!" href="hello%5fworld.html">Examples</a>
</li>
<li class="navitem">
<a title="The Rivet development team" href="about.html">About Us - Contact</a>
</li>
</ul>
</li>
<li id="manual">
<h4>Documentation</h4>
<ul class="blocklist">
<li class="navitem">
<a title="Rivet 2.1 Manual" target="rivetman2.1" href="http://tcl.apache.org/rivet/manual2.1/">Rivet 2.1</a>
</li>
<li class="navitem">
<a title="Rivet 2.2 Manual" target="rivetman2.2" href="http://tcl.apache.org/rivet/manual2.2/">Rivet 2.2</a>
</li>
<li class="navitem">
<a title="Rivet 2.3 Manual" target="rivetman2.3" href="http://tcl.apache.org/rivet/manual2.3/">Rivet 2.3</a>
</li>
<li class="navitem">
<a title="Rivet 3.0 Manual" target="rivetman3.0" href="http://tcl.apache.org/rivet/manual3.0/">Rivet 3.0</a>
</li>
</ul>
</li>
<li id="rivetexamples">
<h4>Examples</h4>
<ul class="blocklist">
<li class="navitem">
<a href="hello%5fworld.html">Hello world!</a>
</li>
<li class="navitem">
<a href="colorful%5ftable.html">A colorful table</a>
</li>
<li class="navitem">
<a href="var%5faccess.html">Variable Access</a>
</li>
<li class="navitem">
<a href="file%5fupload.html">File Upload</a>
</li>
<li class="navitem">
<a href="file%5fdownload.html">File Download</a>
</li>
<li class="navitem">
<a href="ajax.html">XML and Ajax</a>
</li>
<li class="navitem">
<a href="calendar.html">Calendar</a>
</li>
</ul>
</li>
</ul>
<ul>
</ul>
</div>
<div class="clear"></div>
</div>
</div>
<div id="footer">
<div class="footer-content">
<p><a href="http://www.apache.org/">Apache Software Foundation</a> | Design by <a href="http://www.spyka.net">Free CSS Templates</a> | <a href="http://www.justfreetemplates.com">Free Web Templates</a></p>
</div>
</div>
<div style="text-align: center; font-size: 0.75em;">Design downloaded from <a href="http://www.freewebtemplates.com/">free website templates</a>.</div></body>
</html>
is_homepage: 0