blob: 58cc947d827bbcf1f2e87d05ef36049108ac5adc [file] [log] [blame]
<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
#*****************************************************************************
#
# template.php
#
# Author: Denis Roy
# Date: 2005-06-16
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Test Inline Video";
$pageKeywords = "";
$pageAuthor = "Lynn Gayowski";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 1);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 1);
# End: page-specific settings
#
// This file is linked to from lots of different places.
// Use absolute paths to make sure that we can actually test
// that the file renders properly (i.e. testing using) "/index.php",
// and "/home/index.php" both work.
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
<object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/533233&#038;feedurl=http%3A//redmonk.blip.tv/rss/&#038;autostart=false&#038"
width="400" height="255" allowfullscreen="true" id="showplayer">
<param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/533233&#038;feedurl=http%3A//redmonk.blip.tv/rss/&#038;autostart=false&#038;" />
<param name="quality" value="best" />
</object>
<br><br>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="245">
<param name="movie" value="http://content.screencast.com/bootstrap.swf"></param>
<param name="quality" value="high"></param>
<param name="bgcolor" value="#FFFFFF"></param>
<param name="flashVars" value="thumb=http://content.screencast.com/media/7a123445-4d68-4fbe-b498-a55f58a30a46_8d94a3b4-5418-414a-a7b7-147d5c42f69e_static_0_0_Thumbnail.jpg&content=http://content.screencast.com/media/4a3365cf-72be-4d45-8f8a-7482b2992202_8d94a3b4-5418-414a-a7b7-147d5c42f69e_static_0_0_2008-01-10_1021.swf&width=400&height=245"></param>
<param name="allowFullScreen" value="true"></param>
<param name="scale" value="showall"></param>
<embed src="http://content.screencast.com/bootstrap.swf" quality="high" bgcolor="#FFFFFF" width="1280" height="784"
type="application/x-shockwave-flash" flashVars="thumb=http://content.screencast.com/media/7a123445-4d68-4fbe-b498-a55f58a30a46_8d94a3b4-5418-414a-a7b7-147d5c42f69e_static_0_0_Thumbnail.jpg&content=http://content.screencast.com/media/4a3365cf-72be-4d45-8f8a-7482b2992202_8d94a3b4-5418-414a-a7b7-147d5c42f69e_static_0_0_2008-01-10_1021.swf&width=1280&height=784"
allowFullScreen="true" scale="showall"></embed>
</object>
<br><br>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>