|
"Introduction",
"Thumbnails" => "DisplayThumb",
"Large" => "DisplayLarge" );
function Introduction() {
?>
On May 30, 31 and June 1 of 2003 I attended
a workshop on "Wood Fired Oven Building". This
workshop was taught by Alan
Scott, co-author of the book "The Bread Builders:
Hearth Loaves and Masonry Ovens". The work shop was
held in Grand Marias, Minnesota at the North
House Folk School. North House is on the north shore
of Lake Superior about 100 miles northeast of Duluth.
During the class we built an oven as it is
described in the Bread Builders book. Our oven was
approximately 32 inches wide by 36 inches deep.
Click
here to see the pictures of the class and a description
of what is happening..
|
|
{COMMENTS}
|
|
EOT;
$currentPage = $page ? $page : 0;
$myGallery = new Gallery();
// $myGallery->debug = true;
$myGallery->set_var("folio", "WFOB_2003");
$myGallery->set_var("thumbnail_imageFMT", $imageFMT);
$myGallery->set_var("thumbnail_pageLink",
"
");
$myGallery->set_var("thumbnail_upLINK",
"");
$myGallery->set_var("thumbnail_prevIMG", "/images/previous.gif");
$myGallery->set_var("thumbnail_nextIMG", "/images/next.gif");
echo $myGallery->ShowThumbnails($sql, $currentPage);
}
function DisplayLarge(&$sql, $slide) {
$self = $_SERVER['PHP_SELF'];
$imageFMT = <<< EOT
{COMMENTS}
|
|
EOT;
$myGallery = new Gallery();
// $myGallery->debug = true;
$myGallery->set_var("folio", "WFOB_2003");
$myGallery->set_var("fullimage_imageFMT", $imageFMT);
$myGallery->set_var("fullimage_pageLink",
"
");
$myGallery->set_var("fullimage_upLINK",
"" .
"");
$myGallery->set_var("fullimage_prevIMG", "/images/previous.gif");
$myGallery->set_var("fullimage_nextIMG", "/images/next.gif");
echo $myGallery->ShowFullImage($sql, $slide);
}
$currentScreen = isset($_REQUEST['_State']) ? $_REQUEST['_State'] : "Default";
if (! $validScreens[$currentScreen]) {
$currentScreen = "Default";
}
$page = isset($_REQUEST['page']) ? $_REQUEST['page'] : 0;
$slide = isset($_REQUEST['slide']) ? $_REQUEST['slide'] : 0;
if ($currentScreen == "Thumbnails") {
DisplayThumb($sql, $page, $_SERVER['PHP_SELF']);
} else if ($currentScreen == "Large") {
DisplayLarge($sql, $slide);
} else {
$validScreens[$currentScreen]();
}
?>