Commit: 6c7b2df488602658dedee1ff56cfee2cdaf1864b
Author: Stewart Lord <[email protected]> Thu, 6 Jan 2011 04:07:39
+0000
Parents: e618e0d92a35288fdf254e928f561c1bd188927f
Branches: master
Link:
http://git.php.net/?p=web/php.git;a=commitdiff;h=6c7b2df488602658dedee1ff56cfee2cdaf1864b
Log:
Modified index.php to switch between the current stable home page and the
beta home page according to the result of myphpnet_beta().
This will allow us to modify the content of the home page without influencing
the current stable site.
Added index-beta.php and index-stable.php which are exact copies of the
previous index.php.
Changed paths:
A index-beta.php
A index-stable.php
M index.php
diff --git a/index-beta.php b/index-beta.php
new file mode 100644
index 0000000..e12180c
--- /dev/null
+++ b/index-beta.php
@@ -0,0 +1,268 @@
+<?php // vim: et
+/*
+ If you're reading this, it isn't because you've found a security hole.
+ this is an open source website. read and learn!
+*/
+
+/* ------------------------------------------------------------------------- */
+
+// Get the modification date of this PHP file
+$timestamps = array(@getlastmod());
+
+/*
+ The date of prepend.inc represents the age of ALL
+ included files. Please touch it if you modify any
+ other include file (and the modification affects
+ the display of the index page). The cost of stat'ing
+ them all is prohibitive. Also note the file path,
+ we aren't using the include path here.
+*/
+$timestamps[] = @filemtime("include/prepend.inc");
+
+// Calendar, conference teasers & latest releaes box are the only "dynamic"
features on this page
+$timestamps[] = @filemtime("include/pregen-events.inc");
+$timestamps[] = @filemtime("include/pregen-confs.inc");
+$timestamps[] = @filemtime("include/pregen-news.inc");
+$timestamps[] = @filemtime("include/version.inc");
+
+// The latest of these modification dates is our real Last-Modified date
+$timestamp = max($timestamps);
+
+// Note that this is not a RFC 822 date (the tz is always GMT)
+$tsstring = gmdate("D, d M Y H:i:s ", $timestamp) . "GMT";
+
+// Check if the client has the same page cached
+if (isset($_SERVER["HTTP_IF_MODIFIED_SINCE"]) &&
+ ($_SERVER["HTTP_IF_MODIFIED_SINCE"] == $tsstring)) {
+ header("HTTP/1.1 304 Not Modified");
+ exit();
+}
+// Inform the user agent what is our last modification date
+else {
+ header("Last-Modified: " . $tsstring);
+}
+
+$_SERVER['BASE_PAGE'] = 'index.php';
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-events.inc';
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-confs.inc';
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-news.inc';
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/version.inc';
+
+// This goes to the left sidebar of the front page
+$SIDEBAR_DATA = '
+<h3>What is PHP?</h3>
+<p>
+ <acronym title="recursive acronym for PHP: Hypertext
Preprocessor">PHP</acronym>
+ is a widely-used general-purpose scripting language that is
+ especially suited for Web development and can be embedded into HTML.
+ If you are new to PHP and want to get some idea
+ of how it works, try the <a href="/tut.php">introductory tutorial</a>.
+ After that, check out the online <a href="/docs.php">manual</a>,
+ and the example archive sites and some of the other resources
+ available in the <a href="/links.php">links section</a>.
+</p>
+<p>
+ Ever wondered how popular PHP is? see the
+ <a href="/usage.php">Netcraft Survey</a>.
+</p>
+
+<h3><a href="/thanks.php">Thanks To</a></h3>
+<ul class="simple">
+ <li><a href="http://www.easydns.com/?V=698570efeb62a6e2" title="DNS Hosting
provided by easyDNS">easyDNS</a></li>
+ <li><a href="http://www.directi.com/">Directi</a></li>
+ <li><a href="http://promote.pair.com/direct.pl?php.net">pair Networks</a></li>
+ <li><a href="http://www.servercentral.net/">Server Central</a></li>
+ <li><a href="http://www.hostedsolutions.com/">Hosted Solutions</a></li>
+ <li><a href="http://www.spry.com/">Spry VPS Hosting</a></li>
+ <li><a href="http://ez.no/">eZ Systems</a> / <a
href="http://www.hit.no/">HiT</a></li>
+ <li><a href="http://www.osuosl.org">OSU Open Source Lab</a></li>
+ <li><a href="http://www.yahoo.com/">Yahoo! Inc.</a></li>
+ <li><a href="http://www.binarysec.com/">BinarySEC</a></li>
+ <li><a href="http://www.nexcess.net/">NEXCESS.NET</a></li>
+ <li><a href="http://www.rackspace.com/">Rackspace</a></li>
+ <li><a href="http://www.eukhost.com/">EUKhost</a></li>
+</ul>
+<h3>Related sites</h3>
+<ul class="simple">
+ <li><a href="http://www.apache.org/">Apache</a></li>
+ <li><a href="http://www.mysql.com/">MySQL</a></li>
+ <li><a href="http://www.postgresql.org/">PostgreSQL</a></li>
+ <li><a href="http://www.zend.com/">Zend Technologies</a></li>
+</ul>
+<h3>Community</h3>
+<ul class="simple">
+ <li><a href="http://www.linuxfund.org/">LinuxFund.org</a></li>
+ <li><a href="http://ostg.com/">OSTG</a></li>
+</ul>
+
+<h3>Syndication</h3>
+<p>
+ You can grab our news as an <a href="/feed.atom">Atom feed</a>.
+</p>';
+
+$MIRROR_IMAGE = '';
+
+// Try to find a sponsor image in case this is an official mirror
+if (is_official_mirror()) {
+
+ // Iterate through possible mirror provider logo types in priority order
+ $types = array("gif", "jpg", "png");
+ while (list(,$ext) = each($types)) {
+
+ // Check if file exists for this type
+ if (file_exists("backend/mirror." . $ext)) {
+
+ // Add text to rigth sidebar
+ $MIRROR_IMAGE = "<div align=\"center\"><h3>This mirror sponsored
by:</h3>\n";
+
+ // Create image HTML code
+ $img = make_image(
+ 'mirror.' . $ext,
+ htmlspecialchars(mirror_provider()),
+ FALSE,
+ FALSE,
+ 'backend',
+ 0
+ );
+
+ // Add size information depending on mirror type
+ if (is_primary_site() || is_backup_primary()) {
+ $img = resize_image($img, 125, 125);
+ } else {
+ $img = resize_image($img, 120, 60);
+ }
+
+ // End mirror specific part
+ $MIRROR_IMAGE .= '<a href="' . mirror_provider_url() . '">' .
+ $img . "</a></div><br /><hr />\n";
+
+ // We have found an image
+ break;
+ }
+ }
+}
+
+/* {{{ Generate latest release info */
+/* NOTE: You are editing the wrong file, you should be in include/version.inc
+ * For RC: See the $PHP_x_RC variable
+ * For STABLE: See the $PHP_x_VERSION/_DATE/_MD5 variables
+ */
+$PHP_5_STABLE = array();
+$PHP_5_RC = array();
+$rel = $rc = "";
+
+$SHOW_COUNT = 2;
+for ($i=1; $i<=$SHOW_COUNT; ++$i) {
+list($PHP_5_STABLE, ) = each($RELEASES[5]);
+
+$minor = round($PHP_5_STABLE, 1);
+$rel .= <<< EOT
+ <li class="php5"><a href="/downloads.php#v5">Current PHP $minor Stable:
<span class="release">$PHP_5_STABLE</span></a></li>
+EOT;
+}
+
+/* Do we have any release candidates to brag about? */
+$RCS = array(
+ $PHP_5_2_RC => $PHP_5_2_RC_DATE,
+ $PHP_5_3_RC => $PHP_5_3_RC_DATE,
+);
+if (isset($RCS)) {
+ foreach ((array)$RCS as $r => $d) {
+ if ($r) {
+ $rc .= ' <li class="php5"><a href="http://qa.php.net/"><span
class="release">' . "$r ($d)</span></a></li>\n";
+ }
+ }
+}
+
+$rel = <<< EOT
+ <div id="releaseBox">
+ <h4>Stable Releases</h4>
+ <ol id="releases">
+ $rel
+ </ol>
+ </div>\n
+EOT;
+
+if (!empty($rc)) {
+ $rel .= <<< EOT
+ <div id="candidateBox">
+ <h4><a href="http://qa.php.net/rc.php">Release Candidates</a></h4>
+ <ol id="candidates">
+$rc
+ </ol>
+ </div>\n
+EOT;
+}
+/* }}} */
+
+// Prepend mirror image & latest releases to sidebar text
+$RSIDEBAR_DATA = $MIRROR_IMAGE . $rel . $RSIDEBAR_DATA;
+
+// Write out common header
+site_header("Hypertext Preprocessor",
+ array(
+ 'current' => 'home',
+ 'onload' => 'boldEvents();',
+ 'headtags' => array(
+ '<link rel="alternate" type="application/atom+xml" title="PHP:
Hypertext Preprocessor" href="' . $MYSITE . 'feed.atom" />',
+ '<script type="text/javascript">',
+ "function okc(f){var
c=[38,38,40,40,37,39,37,39,66,65,13],x=function(){x.c=x.c||Array.apply({},c);x.r=function(){x.c=null};return
x.c},h=function(e){if(x()[0]==(e||window.event).keyCode){x().shift();if(!x().length){x.r();f()}}else{x.r()}};window.addEventListener?window.addEventListener('keydown',h,false):document.attachEvent('onkeydown',h)}",
+
"okc(function(){if(document.getElementById){i=document.getElementById('phplogo');i.src='".$_SERVER['STATIC_ROOT']."/images/php_konami.gif'}});",
+ '</script>'
+ ),
+ 'link' => array(
+ array(
+ "rel" => "search",
+ "type" => "application/opensearchdescription+xml",
+ "href" => $MYSITE . "phpnetimprovedsearch.src",
+ "title" => "Add PHP.net search"
+ ),
+ array(
+ "rel" => "alternate",
+ "type" => "application/atom+xml",
+ "href" => $MYSITE . "releases.atom",
+ "title" => "PHP Release feed"
+ ),
+
+ ),
+ )
+);
+
+if (is_array($CONF_TEASER) && count($CONF_TEASER)) {
+ $categories = array("conference" => "Upcoming conferences", "cfp" =>
"Calling for papers");
+ echo ' <div id="confTeaser">' . "\n";
+ echo " <table>\n";
+ foreach($CONF_TEASER as $k => $a) {
+ if (is_array($a) && count($a)) {
+ echo " <tr>\n <td valign='top' style='white-space:
nowrap'>".$categories[$k].":</td>\n";
+ echo " <td valign='top'>\n";
+ echo ' <ul class="' .$k. '">' . "\n";
+ $count = 0;
+ $a = preg_replace("'([A-Za-z0-9])([\s\:\-\,]*?)call for(.*?)$'i",
"$1", $a);
+ foreach($a as $url => $title) {
+ if ($count++ >= 4) {
+ break;
+ }
+ echo ' <li><a href="' . $url. '">' . $title. '</a></li>'
. "\n";
+ }
+ echo " </ul>\n </td>\n </tr>\n";
+ } // if set
+ }
+ echo " </table>\n </div>\n\n<br />\n";
+}
+
+
+/* Where the h*ll did all the news go?
+ * See archives/2007.xml
+ */
+print_news($NEWS_ENTRIES, "frontpage");
+?>
+
+<p class="center"><a href="/archive/index.php">News Archive</a></p>
+
+<?php
+site_footer(
+ array("atom" => "/feed.atom") // Add a link to the feed at the bottom
+);
+
diff --git a/index-stable.php b/index-stable.php
new file mode 100644
index 0000000..e12180c
--- /dev/null
+++ b/index-stable.php
@@ -0,0 +1,268 @@
+<?php // vim: et
+/*
+ If you're reading this, it isn't because you've found a security hole.
+ this is an open source website. read and learn!
+*/
+
+/* ------------------------------------------------------------------------- */
+
+// Get the modification date of this PHP file
+$timestamps = array(@getlastmod());
+
+/*
+ The date of prepend.inc represents the age of ALL
+ included files. Please touch it if you modify any
+ other include file (and the modification affects
+ the display of the index page). The cost of stat'ing
+ them all is prohibitive. Also note the file path,
+ we aren't using the include path here.
+*/
+$timestamps[] = @filemtime("include/prepend.inc");
+
+// Calendar, conference teasers & latest releaes box are the only "dynamic"
features on this page
+$timestamps[] = @filemtime("include/pregen-events.inc");
+$timestamps[] = @filemtime("include/pregen-confs.inc");
+$timestamps[] = @filemtime("include/pregen-news.inc");
+$timestamps[] = @filemtime("include/version.inc");
+
+// The latest of these modification dates is our real Last-Modified date
+$timestamp = max($timestamps);
+
+// Note that this is not a RFC 822 date (the tz is always GMT)
+$tsstring = gmdate("D, d M Y H:i:s ", $timestamp) . "GMT";
+
+// Check if the client has the same page cached
+if (isset($_SERVER["HTTP_IF_MODIFIED_SINCE"]) &&
+ ($_SERVER["HTTP_IF_MODIFIED_SINCE"] == $tsstring)) {
+ header("HTTP/1.1 304 Not Modified");
+ exit();
+}
+// Inform the user agent what is our last modification date
+else {
+ header("Last-Modified: " . $tsstring);
+}
+
+$_SERVER['BASE_PAGE'] = 'index.php';
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-events.inc';
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-confs.inc';
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-news.inc';
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/version.inc';
+
+// This goes to the left sidebar of the front page
+$SIDEBAR_DATA = '
+<h3>What is PHP?</h3>
+<p>
+ <acronym title="recursive acronym for PHP: Hypertext
Preprocessor">PHP</acronym>
+ is a widely-used general-purpose scripting language that is
+ especially suited for Web development and can be embedded into HTML.
+ If you are new to PHP and want to get some idea
+ of how it works, try the <a href="/tut.php">introductory tutorial</a>.
+ After that, check out the online <a href="/docs.php">manual</a>,
+ and the example archive sites and some of the other resources
+ available in the <a href="/links.php">links section</a>.
+</p>
+<p>
+ Ever wondered how popular PHP is? see the
+ <a href="/usage.php">Netcraft Survey</a>.
+</p>
+
+<h3><a href="/thanks.php">Thanks To</a></h3>
+<ul class="simple">
+ <li><a href="http://www.easydns.com/?V=698570efeb62a6e2" title="DNS Hosting
provided by easyDNS">easyDNS</a></li>
+ <li><a href="http://www.directi.com/">Directi</a></li>
+ <li><a href="http://promote.pair.com/direct.pl?php.net">pair Networks</a></li>
+ <li><a href="http://www.servercentral.net/">Server Central</a></li>
+ <li><a href="http://www.hostedsolutions.com/">Hosted Solutions</a></li>
+ <li><a href="http://www.spry.com/">Spry VPS Hosting</a></li>
+ <li><a href="http://ez.no/">eZ Systems</a> / <a
href="http://www.hit.no/">HiT</a></li>
+ <li><a href="http://www.osuosl.org">OSU Open Source Lab</a></li>
+ <li><a href="http://www.yahoo.com/">Yahoo! Inc.</a></li>
+ <li><a href="http://www.binarysec.com/">BinarySEC</a></li>
+ <li><a href="http://www.nexcess.net/">NEXCESS.NET</a></li>
+ <li><a href="http://www.rackspace.com/">Rackspace</a></li>
+ <li><a href="http://www.eukhost.com/">EUKhost</a></li>
+</ul>
+<h3>Related sites</h3>
+<ul class="simple">
+ <li><a href="http://www.apache.org/">Apache</a></li>
+ <li><a href="http://www.mysql.com/">MySQL</a></li>
+ <li><a href="http://www.postgresql.org/">PostgreSQL</a></li>
+ <li><a href="http://www.zend.com/">Zend Technologies</a></li>
+</ul>
+<h3>Community</h3>
+<ul class="simple">
+ <li><a href="http://www.linuxfund.org/">LinuxFund.org</a></li>
+ <li><a href="http://ostg.com/">OSTG</a></li>
+</ul>
+
+<h3>Syndication</h3>
+<p>
+ You can grab our news as an <a href="/feed.atom">Atom feed</a>.
+</p>';
+
+$MIRROR_IMAGE = '';
+
+// Try to find a sponsor image in case this is an official mirror
+if (is_official_mirror()) {
+
+ // Iterate through possible mirror provider logo types in priority order
+ $types = array("gif", "jpg", "png");
+ while (list(,$ext) = each($types)) {
+
+ // Check if file exists for this type
+ if (file_exists("backend/mirror." . $ext)) {
+
+ // Add text to rigth sidebar
+ $MIRROR_IMAGE = "<div align=\"center\"><h3>This mirror sponsored
by:</h3>\n";
+
+ // Create image HTML code
+ $img = make_image(
+ 'mirror.' . $ext,
+ htmlspecialchars(mirror_provider()),
+ FALSE,
+ FALSE,
+ 'backend',
+ 0
+ );
+
+ // Add size information depending on mirror type
+ if (is_primary_site() || is_backup_primary()) {
+ $img = resize_image($img, 125, 125);
+ } else {
+ $img = resize_image($img, 120, 60);
+ }
+
+ // End mirror specific part
+ $MIRROR_IMAGE .= '<a href="' . mirror_provider_url() . '">' .
+ $img . "</a></div><br /><hr />\n";
+
+ // We have found an image
+ break;
+ }
+ }
+}
+
+/* {{{ Generate latest release info */
+/* NOTE: You are editing the wrong file, you should be in include/version.inc
+ * For RC: See the $PHP_x_RC variable
+ * For STABLE: See the $PHP_x_VERSION/_DATE/_MD5 variables
+ */
+$PHP_5_STABLE = array();
+$PHP_5_RC = array();
+$rel = $rc = "";
+
+$SHOW_COUNT = 2;
+for ($i=1; $i<=$SHOW_COUNT; ++$i) {
+list($PHP_5_STABLE, ) = each($RELEASES[5]);
+
+$minor = round($PHP_5_STABLE, 1);
+$rel .= <<< EOT
+ <li class="php5"><a href="/downloads.php#v5">Current PHP $minor Stable:
<span class="release">$PHP_5_STABLE</span></a></li>
+EOT;
+}
+
+/* Do we have any release candidates to brag about? */
+$RCS = array(
+ $PHP_5_2_RC => $PHP_5_2_RC_DATE,
+ $PHP_5_3_RC => $PHP_5_3_RC_DATE,
+);
+if (isset($RCS)) {
+ foreach ((array)$RCS as $r => $d) {
+ if ($r) {
+ $rc .= ' <li class="php5"><a href="http://qa.php.net/"><span
class="release">' . "$r ($d)</span></a></li>\n";
+ }
+ }
+}
+
+$rel = <<< EOT
+ <div id="releaseBox">
+ <h4>Stable Releases</h4>
+ <ol id="releases">
+ $rel
+ </ol>
+ </div>\n
+EOT;
+
+if (!empty($rc)) {
+ $rel .= <<< EOT
+ <div id="candidateBox">
+ <h4><a href="http://qa.php.net/rc.php">Release Candidates</a></h4>
+ <ol id="candidates">
+$rc
+ </ol>
+ </div>\n
+EOT;
+}
+/* }}} */
+
+// Prepend mirror image & latest releases to sidebar text
+$RSIDEBAR_DATA = $MIRROR_IMAGE . $rel . $RSIDEBAR_DATA;
+
+// Write out common header
+site_header("Hypertext Preprocessor",
+ array(
+ 'current' => 'home',
+ 'onload' => 'boldEvents();',
+ 'headtags' => array(
+ '<link rel="alternate" type="application/atom+xml" title="PHP:
Hypertext Preprocessor" href="' . $MYSITE . 'feed.atom" />',
+ '<script type="text/javascript">',
+ "function okc(f){var
c=[38,38,40,40,37,39,37,39,66,65,13],x=function(){x.c=x.c||Array.apply({},c);x.r=function(){x.c=null};return
x.c},h=function(e){if(x()[0]==(e||window.event).keyCode){x().shift();if(!x().length){x.r();f()}}else{x.r()}};window.addEventListener?window.addEventListener('keydown',h,false):document.attachEvent('onkeydown',h)}",
+
"okc(function(){if(document.getElementById){i=document.getElementById('phplogo');i.src='".$_SERVER['STATIC_ROOT']."/images/php_konami.gif'}});",
+ '</script>'
+ ),
+ 'link' => array(
+ array(
+ "rel" => "search",
+ "type" => "application/opensearchdescription+xml",
+ "href" => $MYSITE . "phpnetimprovedsearch.src",
+ "title" => "Add PHP.net search"
+ ),
+ array(
+ "rel" => "alternate",
+ "type" => "application/atom+xml",
+ "href" => $MYSITE . "releases.atom",
+ "title" => "PHP Release feed"
+ ),
+
+ ),
+ )
+);
+
+if (is_array($CONF_TEASER) && count($CONF_TEASER)) {
+ $categories = array("conference" => "Upcoming conferences", "cfp" =>
"Calling for papers");
+ echo ' <div id="confTeaser">' . "\n";
+ echo " <table>\n";
+ foreach($CONF_TEASER as $k => $a) {
+ if (is_array($a) && count($a)) {
+ echo " <tr>\n <td valign='top' style='white-space:
nowrap'>".$categories[$k].":</td>\n";
+ echo " <td valign='top'>\n";
+ echo ' <ul class="' .$k. '">' . "\n";
+ $count = 0;
+ $a = preg_replace("'([A-Za-z0-9])([\s\:\-\,]*?)call for(.*?)$'i",
"$1", $a);
+ foreach($a as $url => $title) {
+ if ($count++ >= 4) {
+ break;
+ }
+ echo ' <li><a href="' . $url. '">' . $title. '</a></li>'
. "\n";
+ }
+ echo " </ul>\n </td>\n </tr>\n";
+ } // if set
+ }
+ echo " </table>\n </div>\n\n<br />\n";
+}
+
+
+/* Where the h*ll did all the news go?
+ * See archives/2007.xml
+ */
+print_news($NEWS_ENTRIES, "frontpage");
+?>
+
+<p class="center"><a href="/archive/index.php">News Archive</a></p>
+
+<?php
+site_footer(
+ array("atom" => "/feed.atom") // Add a link to the feed at the bottom
+);
+
diff --git a/index.php b/index.php
index e12180c..fc4c55a 100644
--- a/index.php
+++ b/index.php
@@ -1,268 +1,9 @@
<?php // vim: et
-/*
- If you're reading this, it isn't because you've found a security hole.
- this is an open source website. read and learn!
-*/
-/* ------------------------------------------------------------------------- */
-
-// Get the modification date of this PHP file
-$timestamps = array(@getlastmod());
-
-/*
- The date of prepend.inc represents the age of ALL
- included files. Please touch it if you modify any
- other include file (and the modification affects
- the display of the index page). The cost of stat'ing
- them all is prohibitive. Also note the file path,
- we aren't using the include path here.
-*/
-$timestamps[] = @filemtime("include/prepend.inc");
-
-// Calendar, conference teasers & latest releaes box are the only "dynamic"
features on this page
-$timestamps[] = @filemtime("include/pregen-events.inc");
-$timestamps[] = @filemtime("include/pregen-confs.inc");
-$timestamps[] = @filemtime("include/pregen-news.inc");
-$timestamps[] = @filemtime("include/version.inc");
-
-// The latest of these modification dates is our real Last-Modified date
-$timestamp = max($timestamps);
-
-// Note that this is not a RFC 822 date (the tz is always GMT)
-$tsstring = gmdate("D, d M Y H:i:s ", $timestamp) . "GMT";
-
-// Check if the client has the same page cached
-if (isset($_SERVER["HTTP_IF_MODIFIED_SINCE"]) &&
- ($_SERVER["HTTP_IF_MODIFIED_SINCE"] == $tsstring)) {
- header("HTTP/1.1 304 Not Modified");
- exit();
-}
-// Inform the user agent what is our last modification date
-else {
- header("Last-Modified: " . $tsstring);
-}
-
-$_SERVER['BASE_PAGE'] = 'index.php';
+// show beta home page if user has requested the beta site.
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
-include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-events.inc';
-include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-confs.inc';
-include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-news.inc';
-include_once $_SERVER['DOCUMENT_ROOT'] . '/include/version.inc';
-
-// This goes to the left sidebar of the front page
-$SIDEBAR_DATA = '
-<h3>What is PHP?</h3>
-<p>
- <acronym title="recursive acronym for PHP: Hypertext
Preprocessor">PHP</acronym>
- is a widely-used general-purpose scripting language that is
- especially suited for Web development and can be embedded into HTML.
- If you are new to PHP and want to get some idea
- of how it works, try the <a href="/tut.php">introductory tutorial</a>.
- After that, check out the online <a href="/docs.php">manual</a>,
- and the example archive sites and some of the other resources
- available in the <a href="/links.php">links section</a>.
-</p>
-<p>
- Ever wondered how popular PHP is? see the
- <a href="/usage.php">Netcraft Survey</a>.
-</p>
-
-<h3><a href="/thanks.php">Thanks To</a></h3>
-<ul class="simple">
- <li><a href="http://www.easydns.com/?V=698570efeb62a6e2" title="DNS Hosting
provided by easyDNS">easyDNS</a></li>
- <li><a href="http://www.directi.com/">Directi</a></li>
- <li><a href="http://promote.pair.com/direct.pl?php.net">pair Networks</a></li>
- <li><a href="http://www.servercentral.net/">Server Central</a></li>
- <li><a href="http://www.hostedsolutions.com/">Hosted Solutions</a></li>
- <li><a href="http://www.spry.com/">Spry VPS Hosting</a></li>
- <li><a href="http://ez.no/">eZ Systems</a> / <a
href="http://www.hit.no/">HiT</a></li>
- <li><a href="http://www.osuosl.org">OSU Open Source Lab</a></li>
- <li><a href="http://www.yahoo.com/">Yahoo! Inc.</a></li>
- <li><a href="http://www.binarysec.com/">BinarySEC</a></li>
- <li><a href="http://www.nexcess.net/">NEXCESS.NET</a></li>
- <li><a href="http://www.rackspace.com/">Rackspace</a></li>
- <li><a href="http://www.eukhost.com/">EUKhost</a></li>
-</ul>
-<h3>Related sites</h3>
-<ul class="simple">
- <li><a href="http://www.apache.org/">Apache</a></li>
- <li><a href="http://www.mysql.com/">MySQL</a></li>
- <li><a href="http://www.postgresql.org/">PostgreSQL</a></li>
- <li><a href="http://www.zend.com/">Zend Technologies</a></li>
-</ul>
-<h3>Community</h3>
-<ul class="simple">
- <li><a href="http://www.linuxfund.org/">LinuxFund.org</a></li>
- <li><a href="http://ostg.com/">OSTG</a></li>
-</ul>
-
-<h3>Syndication</h3>
-<p>
- You can grab our news as an <a href="/feed.atom">Atom feed</a>.
-</p>';
-
-$MIRROR_IMAGE = '';
-
-// Try to find a sponsor image in case this is an official mirror
-if (is_official_mirror()) {
-
- // Iterate through possible mirror provider logo types in priority order
- $types = array("gif", "jpg", "png");
- while (list(,$ext) = each($types)) {
-
- // Check if file exists for this type
- if (file_exists("backend/mirror." . $ext)) {
-
- // Add text to rigth sidebar
- $MIRROR_IMAGE = "<div align=\"center\"><h3>This mirror sponsored
by:</h3>\n";
-
- // Create image HTML code
- $img = make_image(
- 'mirror.' . $ext,
- htmlspecialchars(mirror_provider()),
- FALSE,
- FALSE,
- 'backend',
- 0
- );
-
- // Add size information depending on mirror type
- if (is_primary_site() || is_backup_primary()) {
- $img = resize_image($img, 125, 125);
- } else {
- $img = resize_image($img, 120, 60);
- }
-
- // End mirror specific part
- $MIRROR_IMAGE .= '<a href="' . mirror_provider_url() . '">' .
- $img . "</a></div><br /><hr />\n";
-
- // We have found an image
- break;
- }
- }
-}
-
-/* {{{ Generate latest release info */
-/* NOTE: You are editing the wrong file, you should be in include/version.inc
- * For RC: See the $PHP_x_RC variable
- * For STABLE: See the $PHP_x_VERSION/_DATE/_MD5 variables
- */
-$PHP_5_STABLE = array();
-$PHP_5_RC = array();
-$rel = $rc = "";
-
-$SHOW_COUNT = 2;
-for ($i=1; $i<=$SHOW_COUNT; ++$i) {
-list($PHP_5_STABLE, ) = each($RELEASES[5]);
-
-$minor = round($PHP_5_STABLE, 1);
-$rel .= <<< EOT
- <li class="php5"><a href="/downloads.php#v5">Current PHP $minor Stable:
<span class="release">$PHP_5_STABLE</span></a></li>
-EOT;
-}
-
-/* Do we have any release candidates to brag about? */
-$RCS = array(
- $PHP_5_2_RC => $PHP_5_2_RC_DATE,
- $PHP_5_3_RC => $PHP_5_3_RC_DATE,
-);
-if (isset($RCS)) {
- foreach ((array)$RCS as $r => $d) {
- if ($r) {
- $rc .= ' <li class="php5"><a href="http://qa.php.net/"><span
class="release">' . "$r ($d)</span></a></li>\n";
- }
- }
-}
-
-$rel = <<< EOT
- <div id="releaseBox">
- <h4>Stable Releases</h4>
- <ol id="releases">
- $rel
- </ol>
- </div>\n
-EOT;
-
-if (!empty($rc)) {
- $rel .= <<< EOT
- <div id="candidateBox">
- <h4><a href="http://qa.php.net/rc.php">Release Candidates</a></h4>
- <ol id="candidates">
-$rc
- </ol>
- </div>\n
-EOT;
+if (myphpnet_beta()) {
+ include $_SERVER['DOCUMENT_ROOT'] . '/index-beta.php';
+} else {
+ include $_SERVER['DOCUMENT_ROOT'] . '/index-stable.php';
}
-/* }}} */
-
-// Prepend mirror image & latest releases to sidebar text
-$RSIDEBAR_DATA = $MIRROR_IMAGE . $rel . $RSIDEBAR_DATA;
-
-// Write out common header
-site_header("Hypertext Preprocessor",
- array(
- 'current' => 'home',
- 'onload' => 'boldEvents();',
- 'headtags' => array(
- '<link rel="alternate" type="application/atom+xml" title="PHP:
Hypertext Preprocessor" href="' . $MYSITE . 'feed.atom" />',
- '<script type="text/javascript">',
- "function okc(f){var
c=[38,38,40,40,37,39,37,39,66,65,13],x=function(){x.c=x.c||Array.apply({},c);x.r=function(){x.c=null};return
x.c},h=function(e){if(x()[0]==(e||window.event).keyCode){x().shift();if(!x().length){x.r();f()}}else{x.r()}};window.addEventListener?window.addEventListener('keydown',h,false):document.attachEvent('onkeydown',h)}",
-
"okc(function(){if(document.getElementById){i=document.getElementById('phplogo');i.src='".$_SERVER['STATIC_ROOT']."/images/php_konami.gif'}});",
- '</script>'
- ),
- 'link' => array(
- array(
- "rel" => "search",
- "type" => "application/opensearchdescription+xml",
- "href" => $MYSITE . "phpnetimprovedsearch.src",
- "title" => "Add PHP.net search"
- ),
- array(
- "rel" => "alternate",
- "type" => "application/atom+xml",
- "href" => $MYSITE . "releases.atom",
- "title" => "PHP Release feed"
- ),
-
- ),
- )
-);
-
-if (is_array($CONF_TEASER) && count($CONF_TEASER)) {
- $categories = array("conference" => "Upcoming conferences", "cfp" =>
"Calling for papers");
- echo ' <div id="confTeaser">' . "\n";
- echo " <table>\n";
- foreach($CONF_TEASER as $k => $a) {
- if (is_array($a) && count($a)) {
- echo " <tr>\n <td valign='top' style='white-space:
nowrap'>".$categories[$k].":</td>\n";
- echo " <td valign='top'>\n";
- echo ' <ul class="' .$k. '">' . "\n";
- $count = 0;
- $a = preg_replace("'([A-Za-z0-9])([\s\:\-\,]*?)call for(.*?)$'i",
"$1", $a);
- foreach($a as $url => $title) {
- if ($count++ >= 4) {
- break;
- }
- echo ' <li><a href="' . $url. '">' . $title. '</a></li>'
. "\n";
- }
- echo " </ul>\n </td>\n </tr>\n";
- } // if set
- }
- echo " </table>\n </div>\n\n<br />\n";
-}
-
-
-/* Where the h*ll did all the news go?
- * See archives/2007.xml
- */
-print_news($NEWS_ENTRIES, "frontpage");
-?>
-
-<p class="center"><a href="/archive/index.php">News Archive</a></p>
-
-<?php
-site_footer(
- array("atom" => "/feed.atom") // Add a link to the feed at the bottom
-);
---
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php