blob: e50502b330fe19ec6a7ddaed44b7536f61fefa21 [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: 2009--5-21
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Approved Licenses for Non-Code, Example, and Other Content";
$pageKeywords = "license, content";
$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">
<h1>$pageTitle</h1>
<p>February 17, 2016</p>
<p>The following licenses have been approved by the Board of Directors for use with Non-Code
Content, as that term is defined in the <a href="termsofuse.php">Eclipse.org Terms of Use</a>.</p>
<ol>
<li>the <a href="../org/documents/epl-v10.php">Eclipse Public License</a>,</li>
<li>the <a href="http://creativecommons.org/licenses/by-sa/3.0/" target="_blank">Creative Commons Attribution-Share Alike 3.0 (Unported) License</a>,</li>
<li>the <a href="http://creativecommons.org/licenses/by/3.0/" target="_blank">Creative Commons Attribution 3.0 (Unported) License</a>,</li>
<li>the <a href="http://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Creative Commons Attribution-Share Alike 4.0 (International) License</a>, or</li>
<li>the <a href="http://creativecommons.org/licenses/by/4.0/" target="_blank">Creative Commons Attribution 4.0 (International) License</a>.</li>
</ol>
<br/>
<p>In addition, the following licenses have been approved by the Board of Directors for use
with example code or build scipts and artifacts within Eclipse projects.</p>
<ol>
<li>the <a href="../org/documents/epl-v10.php">Eclipse Public License</a>, or</li>
<li>the <a href="../org/documents/edl-v10.php">Eclipse Distribution License</a> (EDL).</li>
</ol>
<br/>
<p>For additional details on the definition of example code or build scipts and artifacts and how to seek PMC approval for using
the EDL, please refer to the <a href="../org/documents/Licensing_Example_Code.pdf">policy document</a>.</p>
<br/>
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Related Links</h6>
<ul>
<li><a href="index.php">Legal resources</a></li>
<li><a href="guidetolegaldoc.php">Guide to legal documents</a></li>
</ul>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>