<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=“www.w3.org/1999/xhtml” xml:lang=“en” lang=“en”> <head>
<title>File: 01_introduction</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
<script type="text/javascript">
// <![CDATA[
function popupCode( url ) {
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
}
function toggleCode( id ) {
if ( document.getElementById )
elem = document.getElementById( id );
else if ( document.all )
elem = eval( "document.all." + id );
else
return false;
elemStyle = elem.style;
if ( elemStyle.display != "block" ) {
elemStyle.display = "block"
} else {
elemStyle.display = "none"
}
return true;
}
// Make codeblocks hidden by default
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
// ]]>
</script>
</head> <body>
<div id="fileHeader">
<h1>01_introduction</h1>
<table class="header-table">
<tr class="top-aligned-row">
<td><strong>Path:</strong></td>
<td>01_introduction
</td>
</tr>
<tr class="top-aligned-row">
<td><strong>Last Update:</strong></td>
<td>Sun May 16 18:52:07 +0200 2010</td>
</tr>
</table>
</div>
<!-- banner header -->
<div id="bodyContent">
<div id="contextContent">
<div id="description">
<h1>Introduction</h1>
<p> Camping is a small web framework, less than 4k, a little white blood cell in the vein of Rails. This little book will start with a tutorial which takes about fifteen minutes - by the end you should have a little Camping site up. The following chapters will eventually go deeper into how both Camping, HTTP and Rack works. </p> <p> ("Eventually", because these chapters are not written yet. This book is currently a very much work in progress, and we‘ll be very grateful if you want to help out.) </p> <p> If you at any moment need some help or have any questions or comments, we highly recommend <a href=“the”>rubyforge.org/mailman/listinfo/camping-list“>the mailing list</a> which got plenty of nice people willing to help. We also have an IRC-channel at <a href=”#camping“>java.freenode.net/?channel=camping”>#camping @ irc.freenode.net</a> if you‘re into that sort of things. </p> <p> Enough talk. Ready? Let‘s <a href=“../book/02_getting_started.html”>“get started”</a>. </p>
</div> </div> </div> <!-- if includes --> <div id="section"> <!-- if method_list --> </div>
<div id=“validator-badges”>
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
</div>
</body> </html>