Initial Commit
diff --git a/_projectCommon.php b/_projectCommon.php
new file mode 100644
index 0000000..4d8b5d9
--- /dev/null
+++ b/_projectCommon.php
@@ -0,0 +1,18 @@
+<?php
+
+ # Set the theme for your project's web pages.
+ # See the Committer Tools "How Do I" for list of themes
+ # https://dev.eclipse.org/committers/
+ # Optional: defaults to system theme
+ $theme = "Nova";
+ $App->Promotion = TRUE;
+ //$App->ExtraHtmlHeaders = '<link rel="stylesheet" type="text/css" href="/equinox/equinox.css">';
+ # Define your project-wide Nav bars here.
+ # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
+ # these are optional
+ $Nav->setLinkList( array() );
+ $Nav->addNavSeparator("Support Eclipse", "/membership/support_eclipse/");
+ $Nav->addCustomNav("Home", "/membership/support_eclipse/", "_self", 1);
+ $Nav->addCustomNav("How to Support", "/support_eclipse/support.php", "_self", 1);
+
+?>
\ No newline at end of file
diff --git a/cisco120.gif b/cisco120.gif
new file mode 100644
index 0000000..9693798
--- /dev/null
+++ b/cisco120.gif
Binary files differ
diff --git a/eads120.png b/eads120.png
new file mode 100644
index 0000000..7f7a41a
--- /dev/null
+++ b/eads120.png
Binary files differ
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..13e41b9
--- /dev/null
+++ b/index.php
@@ -0,0 +1,117 @@
+<?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(); $theme = "Phoenix"; include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
+
+ #*****************************************************************************
+ #
+ # index.php
+ #
+ # Author: Nathan Gervais
+ # Date: 2008-04-21
+ #
+ # Description: Ganymede Landing Page
+ #
+ #****************************************************************************
+ #
+ # Begin: page-specific settings. Change these.
+ $pageTitle = "Eclipse Corporate Sponsors";
+ $pageKeywords = "corporate sponsorship, sponsor, eclipse";
+ $pageAuthor = "Eclipse Foundation, Inc.";
+
+ # Add page-specific Nav bars here
+ # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank)
+ # $Nav->addCustomNav("My Link", "mypage.php", "_self");
+ # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank");
+
+ # End: page-specific settings
+ #
+ # Place your html content in a file called content/en_pagename.php
+ ob_start();
+
+
+ ?>
+ <div id="fullcolumn" class="galileo">
+ <div id="midcolumn">
+ <div id="banner">
+ <img src='logo.png'/>
+ </div>
+ <h3>Platinum Sponsors</h3>
+ <div class="imageBlock">
+ <img src="http://www.eclipse.org/membership/scripts/get_image.php?id=827&size=small"/>
+ </div>
+ <h3>Gold Sponsors</h3>
+ <div class="imageBlock">
+ <img src="amazon.jpg"/>
+ <img src="http://www.eclipse.org/membership/scripts/get_image.php?id=656&size=small"/>
+ <img src="http://www.eclipse.org/membership/scripts/get_image.php?id=657&size=small"/>
+ </div>
+ <h3>Silver Sponsors</h3>
+ <div class="imageBlock">
+ <img src="http://www.eclipse.org/membership/scripts/get_image.php?id=901&size=small"/>
+ </div>
+ <br/>
+ </div>
+ <div id="rightcolumn">
+ <div class="block">
+ <div class="image">
+ <a href="http://wiki.eclipse.org/images/c/ca/Eclipse_foundation_about_us.pdf"><img src="http://dev.eclipse.org/huge_icons/apps/preferences-system-network-proxy.png"/></a>
+ </div>
+ <div class="text">
+ <h4><a href="http://wiki.eclipse.org/images/c/ca/Eclipse_foundation_about_us.pdf">About the Eclipse Foundation</a></h4>
+ <p>About the Eclipse Foundation. (PDF)</p>
+ </div>
+ </div>
+
+ <div class="block">
+ <div class="image">
+ <a href="http://wiki.eclipse.org/images/f/f5/Eclipse_membership.pdf"><img src="http://dev.eclipse.org/huge_icons/categories/applications-internet.png"/></a>
+ </div>
+ <div class="text">
+ <h4><a href="http://wiki.eclipse.org/images/f/f5/Eclipse_membership.pdf">Joining the Eclipse Foundation</a></h4>
+ <p>More about joining the Eclipse Foundation. (PDF)</p>
+ </div>
+ </div>
+
+ <div class="block">
+ <div class="image">
+ <a href="./support.php"><img src="http://dev.eclipse.org/huge_icons/emblems/emblem-favorite.png"/></a>
+ </div>
+ <div class="text">
+ <h4><a href="./support.php">Call to Action! Support Eclipse!</a></h4>
+ <p>Details on how your Organization can support Eclipse today.</p>
+ </div>
+ </div>
+
+ <div class="block">
+ <div class="image">
+ <a href="./support.php"><img src="http://dev.eclipse.org/huge_icons/status/software-update-urgent.png"/></a>
+ </div>
+ <div class="text">
+ <h4><a href="./support.php">4th Item</a></h4>
+ <p>Ian to provide details</p>
+ </div>
+ </div>
+
+ <div class="sideitem" style="text-align:left;">
+ <h6>More About Our Supporters:</h6>
+ <div class="modal noBG">
+ <ul>
+ <li class="">
+ <a href="http://www.eclipse.org/membership/showAllMembers.php" class="link">Organization Supporters</a><br/>
+ </li>
+ <li class="">
+ <a href="http://eclipse.org/donate/donorlist.php" class="link">Individual Supporters</a><br/>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </div>
+
+
+
+ <?
+ $html = ob_get_clean();
+ # Generate the web page
+ $App->Promotion = TRUE;
+ $App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>');
+ $App->generatePage("Nova", $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>
\ No newline at end of file
diff --git a/pdf-logo.gif b/pdf-logo.gif
new file mode 100644
index 0000000..1ba5cea
--- /dev/null
+++ b/pdf-logo.gif
Binary files differ
diff --git a/rightcolumn.php b/rightcolumn.php
new file mode 100644
index 0000000..2236027
--- /dev/null
+++ b/rightcolumn.php
@@ -0,0 +1,41 @@
+<?php
+
+
+ $supporters = array (
+ '<img src="cisco120.gif"/>',
+ '<img src="eads120.png"/>',
+ '<img src="rim120.png"/>',
+ '<img src="siemens.gif"/>'
+
+ );
+ shuffle($supporters);
+
+?>
+
+ <div id="rightcolumn">
+ <p class="description">Some of our supporters...</p>
+
+<?
+ foreach ($supporters as $p) {
+ echo '<div class="sideitem">';
+ echo $p;
+ echo '</div>';
+ }
+
+?>
+
+ <div class="sideitem" style="text-align:left;">
+ More About Our Supporters:
+ <div class="modal noBG">
+ <ul>
+ <li class="">
+ <a href="http://www.eclipse.org/membership/showAllMembers.php" class="link">Organization Supporters</a><br/>
+ </li>
+ <li class="">
+ <a href="http://eclipse.org/donate/donorlist.php" class="link">Individual Supporters</a><br/>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+<? ?>
diff --git a/rim120.png b/rim120.png
new file mode 100644
index 0000000..ed135ff
--- /dev/null
+++ b/rim120.png
Binary files differ
diff --git a/siemens.gif b/siemens.gif
new file mode 100644
index 0000000..cc86a73
--- /dev/null
+++ b/siemens.gif
Binary files differ
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..374667e
--- /dev/null
+++ b/style.css
@@ -0,0 +1,47 @@
+@CHARSET "ISO-8859-1";
+
+#banner {
+ text-align:center;
+ width:100%;
+ margin-bottom:20px;
+}
+
+.homeitem { padding-top:10px; }
+
+.sideitem { text-align:center; }
+
+.block {
+ float:left;
+ width:100%;
+
+}
+
+.block .image {
+ width:75px;
+ float:left;
+ margin-bottom:15px;
+}
+
+.block .text {
+ float:left;
+ width:190px;
+}
+
+.description {
+ padding:0 75px;
+ text-align:center;
+ font-weight:bold;
+ font-size:14px;
+}
+
+.description:first-letter {
+ font-size:24px;
+}
+
+.imageBlock{
+ margin-left:20px;
+}
+
+#rightcolumn {
+ margin-top:150px;
+}
diff --git a/support.php b/support.php
new file mode 100644
index 0000000..7a6d87a
--- /dev/null
+++ b/support.php
@@ -0,0 +1,97 @@
+<?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(); $theme = "Phoenix"; include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
+
+ #*****************************************************************************
+ #
+ # index.php
+ #
+ # Author: Ian Skerrett
+ # Date: 2008-06-18
+ #
+ # Description: Pulsar Support Page
+ #
+ #****************************************************************************
+ #
+ # Begin: page-specific settings. Change these.
+ $pageTitle = "Support Eclipse";
+ $pageKeywords = "eclipse membership";
+ $pageAuthor = "Eclipse Foundation, Inc.";
+
+ # Add page-specific Nav bars here
+ # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank)
+ # $Nav->addCustomNav("My Link", "mypage.php", "_self");
+ # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank");
+
+ # End: page-specific settings
+ #
+
+ # Place your html content in a file called content/en_pagename.php
+ ob_start();
+ ?>
+ <div id="midcolumn">
+
+
+
+ <h1>Support Eclipse</h1>
+ <p>There are three simple ways you can financially support the Eclipse Foundation. Choose whichever
+ way is best for you, and please do not hesitate to <a href="mailto:membership@eclipse.org">contact us.</a></p>
+
+
+ <h2>1 - Become an Associate Member</h2>
+ <ul>
+ <li>What are the benefits of becoming an Associate Member?</li>
+ <p>The key benefit is supporting the infrastructure that brings you
+ <a href="http://wiki.eclipse.org/images/c/ca/Eclipse_foundation_about_us.pdf">great open source software</a>!
+ In addition to that, we'll put you on the inside track of information about the Eclipse Ecosystem,
+ invite you to members' meetings, and give you discounts to Foundation events — and your
+ staff will appreciate knowing you support free software too. If you would like more
+ benefits, such as help promoting your products and
+ services to the Eclipse Ecosystem, voting rights, and board representation, consider
+ <a href="http://www.eclipse.org/membership/become_a_member/" target="_blank">other membership options</a>.
+ </p>
+ <li>How do I become an Associate Member?</li>
+ <p>It's easy — just complete and fax these three documents listed on our
+ <a href="http://www.eclipse.org/membership/become_a_member/membershipProcess.php">Membership Page</a>.
+ It really is quite simple. One
+ doc is simply for your contact information. Another doc says it's ok for us to post your logo
+ (and vice versa). The third doc has a lot of stuff relevant to other membership
+ classes; for Associate Membership, it basically says that you agree to support the Foundation and
+ we agree to invite you to the members' meetings and events.</p>
+ <li>How much is Associate Membership?</li>
+ <p>The minimum contribution is $5,000 USD per year. If it's more convenient for you, we can break that
+ into quarterly payments.</p>
+
+ </ul>
+
+ <h2>2 - Be a Corporate Sponsor</h2>
+ <p>
+ If Associate Membership isn't your style, there are other ways to financially support the
+ Eclipse Foundation. Please <a href="mailto:membership@eclipse.org">contact us</a> to discuss some
+ of the options including:
+ <ul>
+ <li>Being a logo sponsor of Eclipse Foundation events</li>
+ <li>Being a corporate sponsor for some of our <a href="http://www.eclipse.org/org/foundation/thankyou.php">infrastructure</a></li>
+ <li>Simply making a cash contribution</li>
+ </ul>
+ </p>
+
+ <h2>3 - Become a Friend of Eclipse</h2>
+ <p>
+ If having your organization become a member or sponsor isn't in the cards, and you still want to show
+ support for the Eclipse Foundation, consider personally becoming a
+ <a href="http://eclipse.org/donate/index.php">Friend of Eclipse</a>.
+
+ <br><br><br>
+
+ </p>
+ </div>
+
+ <? include("./rightcolumn.php"); ?>
+
+
+ <?
+ $html = ob_get_clean();
+ # Generate the web page
+ $App->Promotion = TRUE;
+ $App->AddExtraHtmlHeader('<link type="text/css" href="style.css" rel="stylesheet"/>');
+ $App->generatePage("Nova", $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>
diff --git a/support.png b/support.png
new file mode 100644
index 0000000..3827afc
--- /dev/null
+++ b/support.png
Binary files differ
diff --git a/supporters.gif b/supporters.gif
new file mode 100644
index 0000000..b4a2799
--- /dev/null
+++ b/supporters.gif
Binary files differ