blob: 3eac17d894d33f88393b0df6414f51bbd6ba80c7 [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'
#*****************************************************************************
#
# sample_3col.php
#
# Author: Mike Milinkovich
# Date: 2013-03-01
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Foundation Contributor License Agreement";
$pageKeywords = "certificate, CLA, contributor, legal, eclipse";
$pageAuthor = "Mike Milinkovich";
# 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
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
EOHTML;
$html .= file_get_contents('CLA.html');
$html .= <<<EOHTML
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Related Links</h6>
<ul>
<li><a href="CLA.html">Contributor License Agreement<br/>in plain HTML</a></li>
<li><a href="clafaq.php">CLA FAQ</a></li>
<li><a href="CoO.php">Certificate of Origin</a></li>
<li><a href="index.php">Legal resources</a></li>
<li><a href="guidetolegaldoc.php">Guide to legal documents</a></li>
<li><a href="index.php#Committers" class=jump>Committer Resources</a></li>
<li><a href="http://wiki.eclipse.org/Development_Resources/Contributing_via_Git">Contributing via Git</a></li>
</ul>
<p>To complete and submit a CLA, log into the <a
href="https://projects.eclipse.org/user/login/sso">Eclipse projects forge</a>
(you will need to create an account with the Eclipse Foundation if you have not
already done so); click on "Contributor License Agreement"; and Complete the form.
Be sure to use the same email address when you register for the
account that you intend to use when you commit to Git.</p>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>