verifyPackage( 'wiki' ); //print($GLOBALS["HTTP_REFERER"]); if (!isset($_SESSION["thedate"])) { $thedate = $gBitSystem->getUTCTime(); } else { $thedate = $_SESSION["thedate"]; } require_once ( WIKI_PKG_INCLUDE_PATH.'lookup_page_inc.php' ); // If the page doesn't exist then display an error if (!$gContent->isValid()) { $gBitSystem->fatalError( tra("Page cannot be found"), NULL, NULL, HttpStatusCodes::HTTP_NOT_FOUND ); } // Now check permissions to access this page $gContent->verifyViewPermission(); // Get page data include( WIKI_PKG_INCLUDE_PATH.'lookup_page_inc.php' ); $info = $gContent->mInfo; // If not locked and last version is user version then can undo $gBitSmarty->assign('canundo', 'n'); if ($info["flag"] != 'L' && (($gContent->hasUpdatePermission() && $info["user"] == $user) || ($gContent->hasUserPermission( 'p_wiki_remove_page' )))) { $gBitSmarty->assign('canundo', 'y'); } if( $gContent->hasAdminPermission() ) { $gBitSmarty->assign('canundo', 'y'); } //Now process the pages preg_match_all("/-=([^=]+)=-/", $info["data"], $reqs); $slides = split("-=[^=]+=-", $info["data"]); if (count($slides) < 2) { $slides = explode(defined('PAGE_SEP') ? PAGE_SEP : "...page...", $info["data"]); array_unshift($slides, ''); } if (!isset($_REQUEST["slide"])) { $_REQUEST["slide"] = 0; } $gBitSmarty->assign('prev_slide', $_REQUEST["slide"] - 1); $gBitSmarty->assign('next_slide', $_REQUEST["slide"] + 1); if (isset($reqs[1][$_REQUEST["slide"]])) { $slide_title = $reqs[1][$_REQUEST["slide"]]; } else { $slide_title = ''; } $slide_data = LibertyContent::parseDataHash( $slides[$_REQUEST["slide"] + 1] ); if (isset($reqs[1][$_REQUEST["slide"] - 1])) { $slide_prev_title = $reqs[1][$_REQUEST["slide"] - 1]; } else { $slide_prev_title = 'prev'; } if (isset($reqs[1][$_REQUEST["slide"] + 1])) { $slide_next_title = $reqs[1][$_REQUEST["slide"] + 1]; } else { $slide_next_title = 'next'; } $gBitSmarty->assign('slide_prev_title', $slide_prev_title); $gBitSmarty->assign('slide_next_title', $slide_next_title); $gBitSmarty->assign('slide_title', $slide_title); $gBitSmarty->assign('slide_data', $slide_data); $total_slides = count($slides) - 1; $current_slide = $_REQUEST["slide"] + 1; $gBitSmarty->assign('total_slides', $total_slides); $gBitSmarty->assign('current_slide', $current_slide); //$gBitSmarty->assignByRef('last_modified',date("l d of F, Y [H:i:s]",$info["last_modified"])); $gBitSmarty->assignByRef('last_modified', $info["last_modified"]); if (empty($info["user"])) { $info["user"] = 'anonymous'; } $gBitSmarty->assignByRef('lastUser', $info["user"]); $gBitSmarty->display("bitpackage:wiki/slideshow.tpl"); ?>