blob: 58ab05f9b1e6f927fb2c785aef0066d4412ddca9 [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'
#
# Begin: page-specific settings. Change these.
$pageTitle = "Community Code of Conduct";
$pageKeywords = "code of conduct, community, documents, board, resolution, foundation";
$pageAuthor = "M. Milinkovich June 25, 2015";
# 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="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
<p><b>Version 1.0<br/>June 23, 2015</b></p>
<div class="homeitem3col">
<p>As members of the Eclipse community, we pledge to respect all people who contribute through reporting issues,
posting feature requests, updating documentation, submitting code reviews, pull requests, patches, and other activities.</p>
<p>We are committed to making participation in the Eclipse community a harassment-free experience for everyone,
regardless of level of experience, gender, gender identity and expression, sexual orientation, disability,
personal appearance, body size, race, ethnicity, age, religion or analogous grounds.</p>
<p>Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory
comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.</p>
<p>Eclipse Foundation staff have the right and responsibility to remove, edit, or reject comments, commits, code,
wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project leaders, committers
and contributors who do not follow the Code of Conduct may be removed from the project.</p>
<p>This code of conduct applies within Eclipse project spaces, or in public spaces when an individual is
representing the project or the Eclipse community.</p>
<p>Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by emailing the
Eclipse Management Organization: <a href="mailto:codeofconduct@eclipse.org">codeofconduct@eclipse.org</a>.</p>
<p>This Code of Conduct is adapted from the Contributor Covenant
(<a href="http://contributor-covenant.org" target="_blank">http://contributor-covenant.org</a>), version 1.1.0,
available at <a href="http://contributor-covenant.org/version/1/1/0/" target="_blank">http://contributor-covenant.org/version/1/1/0/</a></p>
</div>
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Related Links</h6>
<ul>
<li><a href="../foundation/directors.php">Board of Directors</a></li>
<li><a href="../../membership/">Membership</a></li>
<li><a href="../../membership/become_a_member/">Become a member</a></li>
</ul>
</div>
<img align="center" src="../../images/Eclipse_Code_of_Conduct.png" height="206" width="220" border="0"/>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>