diff --git a/downloads.php b/downloads.php index a60e8df3c..f10bc781d 100644 --- a/downloads.php +++ b/downloads.php @@ -7,61 +7,66 @@ include_once $_SERVER['DOCUMENT_ROOT'] . '/include/version.inc'; // Try to make this page non-cached header_nocache(); +$gpg = array( + "5.5" => <<< GPG +pub 2048R/90D90EC1 2013-07-18 [expire : 2016-07-17] + Key fingerprint = 0BD7 8B5F 9750 0D45 0838 F95D FE85 7D9A 90D9 0EC1 +uid Julien Pauli <jpauli@php.net> + +pub 4096R/7267B52D 2012-03-20 [expires: 2016-03-19] + Key fingerprint = 0B96 609E 270F 565C 1329 2B24 C13C 70B8 7267 B52D +uid David Soria Parra <dsp@php.net> + +GPG +, + "5.4" => <<< GPG +pub 2048D/5DA04B5D 2012-03-19 + Key fingerprint = F382 5282 6ACD 957E F380 D39F 2F79 56BC 5DA0 4B5D +uid Stanislav Malyshev (PHP key) <smalyshev@gmail.com> +uid Stanislav Malyshev (PHP key) <stas@php.net> +uid Stanislav Malyshev (PHP key) <smalyshev@sugarcrm.com> +GPG +, + "5.3" => <<< GPG +pub 4096R/7267B52D 2012-03-20 [expires: 2016-03-19] + Key fingerprint = 0B96 609E 270F 565C 1329 2B24 C13C 70B8 7267 B52D +uid David Soria Parra <dsp@php.net> +pub 2048R/FC9C83D7 2012-03-18 [expires: 2017-03-17] + Key fingerprint = 0A95 E9A0 2654 2D53 835E 3F3A 7DEC 4E69 FC9C 83D7 +uid Johannes Schlüter <johannes@schlueters.de> +uid Johannes Schlüter <johannes@php.net> +GPG +); + $SIDEBAR_DATA = ' -

Binaries for other systems

-

+

Documentation download

+

PHP logos

+ +

Development Snapshots +

Development sources (git) +

Old archives

+ +
+

We do not distribute UNIX/Linux binaries. Most Linux distributions come with PHP these days, so if you do not want to compile your own, go to your distribution\'s download site. Binaries available on external servers:

+

Windows Binaries

- -

Development and archive versions

-

- Regular source and binary snapshots are available - from snaps.php.net. - These are not intended for production use! -

-

- To download the very latest development version, - see the instructions on using Git. -

-
-

- Information about older releases and their downloads - are available on our releases page. -

-
-

Other Downloads

-

- PEAR - packages, PECL hosted - PHP extensions and PHP-GTK - source and binaries are available on their own pages. -

-

- For downloadable PHP manual packages, go to the - documentation download - page. -

- -

- Get some - PHP logos - for your site, and some PHP icons to use on - your computer. -

'; site_header("Downloads", @@ -90,34 +95,32 @@ $i = 0; foreach ($rows as $row) { echo "
\n"; foreach ($row as $v => $a) { - $stable = $i++ === 0 ? "(Current Stable)" : "(Old Stable)"; + $stable = $i++ === 0 ? "" : "(Old Stable)"; + $mver = substr($v, 0, strrpos($v, ".")); ?> -
-

PHP

+
+

PHP

-

Complete Source Code:

    \n "; - if (!empty($rel['link'])) { - $link = $rel['link']; - $name = $rel['name']; - echo "$name"; - } else { - download_link($rel["filename"], $rel["name"]); echo " - {$rel["date"]}
    \n"; - echo " md5: {$rel["md5"]}\n"; + download_link($rel["filename"], $rel["name"]); + echo " md5: {$rel["md5"]}\n"; + echo " ({$rel["date"]})
    \n"; (isset($rel["note"]) && $rel["note"] ? "

    Note:{$rel["note"]}

    ": ""); - } echo " \n"; } ?> -
  • - Changelog for PHP -
+ Changelog for PHP +GPG Keys +
+
+
+ \n"; @@ -125,43 +128,11 @@ foreach($a["source"] as $rel) { ?>
- -

GPG Keys

+

GPG Keys & Signatures

-The releases are tagged and signed in the PHP Git Repository. -The following official GnuPG keys of the current PHP Release Manager can be used -to verify the tags: +Each release is tagged and signed in the PHP Git Repository, +and the signatures for individual archive is also available as .asc file.

-

PHP 5.5

-
-pub   2048R/90D90EC1 2013-07-18 [expire : 2016-07-17]
-      Key fingerprint = 0BD7 8B5F 9750 0D45 0838  F95D FE85 7D9A 90D9 0EC1
-uid                  Julien Pauli <jpauli@php.net>
-
-pub   4096R/7267B52D 2012-03-20 [expires: 2016-03-19]
-      Key fingerprint = 0B96 609E 270F 565C 1329  2B24 C13C 70B8 7267 B52D
-uid                  David Soria Parra <dsp@php.net>
-
-

PHP 5.4

-
-pub   2048D/5DA04B5D 2012-03-19
-      Key fingerprint = F382 5282 6ACD 957E F380  D39F 2F79 56BC 5DA0 4B5D
-uid                  Stanislav Malyshev (PHP key) <smalyshev@gmail.com>
-uid                  Stanislav Malyshev (PHP key) <stas@php.net>
-uid                  Stanislav Malyshev (PHP key) <smalyshev@sugarcrm.com>
-
-
-pub   4096R/7267B52D 2012-03-20 [expires: 2016-03-19]
-      Key fingerprint = 0B96 609E 270F 565C 1329  2B24 C13C 70B8 7267 B52D
-uid                  David Soria Parra <dsp@php.net>
-
-

PHP 5.3

-
-pub   2048R/FC9C83D7 2012-03-18 [expires: 2017-03-17]
-      Key fingerprint = 0A95 E9A0 2654 2D53 835E  3F3A 7DEC 4E69 FC9C 83D7
-uid                  Johannes Schlüter <johannes@schlueters.de>
-uid                  Johannes Schlüter <johannes@php.net>
-
$SIDEBAR_DATA)); diff --git a/include/version.inc b/include/version.inc index f02e3a0a3..217331e58 100644 --- a/include/version.inc +++ b/include/version.inc @@ -71,10 +71,6 @@ $RELEASES = array( "md5" => $PHP_5_5_MD5["tar.xz"], "date" => $PHP_5_5_DATE, ), - array( - "link" => 'http://windows.php.net/download/#php-5.5', - "name" => "Windows $PHP_5_5_VERSION binaries and source", - ), ), ), $PHP_5_4_VERSION => array( @@ -92,10 +88,6 @@ $RELEASES = array( "md5" => $PHP_5_4_MD5["tar.gz"], "date" => $PHP_5_4_DATE, ), - array( - "link" => 'http://windows.php.net/download/#php-5.4', - "name" => "Windows $PHP_5_4_VERSION binaries and source", - ), ), ), $PHP_5_3_VERSION => array( @@ -113,10 +105,6 @@ $RELEASES = array( "md5" => $PHP_5_3_MD5["tar.gz"], "date" => $PHP_5_3_DATE, ), - array( - "link" => 'http://windows.php.net/download/#php-5.3', - "name" => "Windows $PHP_5_3_VERSION binaries and source", - ), ), ), ), diff --git a/index.php b/index.php index b2ba3c49b..301297270 100644 --- a/index.php +++ b/index.php @@ -162,8 +162,8 @@ if (is_array($CONF_TEASER)) { $announcements = ""; foreach($CONF_TEASER as $category => $entries) { if ($entries) { - $announcements .= '
'; - $announcements .= '' . $conftype[$category] .'
    '; + $announcements .= '
    '; + $announcements .= '' . $conftype[$category] .'
      '; foreach (array_slice($entries, 0, 4) as $url => $title) { $title = preg_replace("'([A-Za-z0-9])([\s\:\-\,]*?)call for(.*?)$'i", "$1", $title); $announcements .= "
    • $title
    • "; diff --git a/styles/home.css b/styles/home.css index 74f2ff729..a507637da 100644 --- a/styles/home.css +++ b/styles/home.css @@ -61,97 +61,6 @@ complimentary greens: 9FB553 7B8851 61761B C6DA82 CCDA99 content: "\21AF \2003"; } -/* Announcement Area */ - -.home aside.tips { - background:transparent; - padding:0; - border:0; -} -.home aside.tips div.inner { - padding:0; - clear:none; - border:0; - background:inherit; -} -.home .announcements { - display: block; - background-color: #ebebf4; - border:1px solid #dbdbeb; - border-bottom-color:#cacae2; - border-radius: 0 0 2px 2px; - padding: 1em; - margin: 0; - list-style: none; -} -.home .announcements li + li { - margin-top:.75em; -} -.home .announcements ul, .home .announcements ul li { - list-style: none; - margin: 0; - padding: 0; -} - - -/* {{{ Right-hand sidebar */ -.home aside.tips .panel { - margin:0.66666666666667em 0; - background:#f0f0f0; - border:1px solid #e3e3e3; - border-bottom-color:#d6d6d6; - border-radius:2px; -} - -.home aside.tips .panel a { - color:#333; - display: block; - padding: .75em 1em; -} -.home aside.tips .panel span { - display: block; - padding: .75em 1em; -} -.home aside.tips .panel .announcements a { - padding: 0; - border: 0; - margin: 0; - line-height: 1; -} -.home aside.tips .panel a::after { - float:right; - content:"»"; - color:#666; -} -.home aside.tips .panel a:hover, -.home aside.tips .panel a:focus { - background:#ebebf4; - border-color:#dbdbeb; - border-bottom-color:#cacae2; - color:#000; -} -.home aside.tips .panel a:hover::after, -.home aside.tips .panel a:focus::after { - color:#333; -} -.home aside.tips .conferences a.conf, -.home aside.tips .conferences a.conf:hover { - background-color: #f0f0f0; - line-height: 1; - border: 0px; -} - -.home aside.tips a:link, -.home aside.tips a:visited { - color:#369; - border-bottom-color: transparent; -} -.home aside.tips a:hover, -.home aside.tips a:focus { - color:#f25050; - border-bottom-color: #f25050; -} -/* }}} */ .newsentry { diff --git a/styles/theme-base.css b/styles/theme-base.css index 419ba5d06..17a30818d 100755 --- a/styles/theme-base.css +++ b/styles/theme-base.css @@ -2322,17 +2322,6 @@ pre.info { float: right; } -aside.tips { - border-top: .25em solid; -} - -aside.tips div.inner { - padding: .75em; - border-left:1px solid; - border-right:1px solid; - border-bottom:1px solid; -} - #layout { margin: .75em auto 1.5em; @@ -2859,10 +2848,43 @@ fieldset { } /* }}} */ -body.downloads #layout .span6 { - word-wrap: break-word; - margin-bottom:.75em; +section.downloads { } +.gpg { + background: #f7f7f7; + border-top: 2px solid #e3e3e3; + margin: 0px; + padding: 0px; +} +.download-box { + margin: 0.66666666666667em 25px 55px; + position: relative; + background-color: #fff; + display: block; + float: none; + + box-shadow: 3px 3px 10px rgba(0,0,0,.1); + border-radius: 4px; +} +.download-box .md5sum { + font-size: 0.9em; + position: absolute; + left: 230px; + font: normal 14px / 1.46 "Source Code Pro", monospace; +} +.download-box .releasedate { + float: right; + font-size: 0.9em; +} +.download-box .changelog { + float: right; + margin-right: 10px; +} + +.download-box pre { + font: normal 14px / 1.46 "Source Code Pro", monospace; +} + .refsect1 > *:last-child { margin-bottom:0; @@ -3375,3 +3397,98 @@ div.soft-deprecation-notice blockquote.sidebar { padding-right:0; } } + +/* {{{ Right-hand sidebar */ +aside.tips ul { + list-style:none; + margin: 0; +} +aside.tips .panel { + margin:0.66666666666667em 0; + background:#f0f0f0; + border:1px solid #e3e3e3; + border-bottom-color:#d6d6d6; + border-radius:2px; +} + +aside.tips .panel a { + color:#333; + display: block; + padding: .75em 1em; +} +aside.tips .panel span { + display: block; + padding: .75em 1em; +} +aside.tips .panel .announcements a { + padding: 0; + border: 0; + margin: 0; + line-height: 1; +} +aside.tips .panel a::after { + float:right; + content:"»"; + color:#666; +} +aside.tips .panel a:hover, +aside.tips .panel a:focus { + background:#ebebf4; + border-color:#dbdbeb; + border-bottom-color:#cacae2; + color:#000; +} +aside.tips .panel a:hover::after, +aside.tips .panel a:focus::after { + color:#333; +} +aside.tips div.headline a.headline, +aside.tips div.headline a.headline:hover { + background-color: #f0f0f0; + line-height: 1; + border: 0px; +} + +aside.tips a:link, +aside.tips a:visited { + color:#369; + border-bottom-color: transparent; +} +aside.tips a:hover, +aside.tips a:focus { + color:#f25050; + border-bottom-color: #f25050; +} +/* Announcement Area */ + +aside.tips { + background:transparent; + padding:0; + border:0; +} +aside.tips div.inner { + padding:0; + clear:none; + border:0; + background:inherit; +} +.announcements { + display: block; + background-color: #ebebf4; + border:1px solid #dbdbeb; + border-bottom-color:#cacae2; + border-radius: 0 0 2px 2px; + padding: 1em; + margin: 0; + list-style: none; +} +.announcements li + li { + margin-top:.75em; +} +.announcements ul, .announcements ul li { + list-style: none; + margin: 0; + padding: 0; +} + +/* }}} */ diff --git a/styles/theme-medium.css b/styles/theme-medium.css index d93f6c412..46b952db2 100755 --- a/styles/theme-medium.css +++ b/styles/theme-medium.css @@ -327,13 +327,6 @@ aside.tips { aside.tips div.border { display:none; } -aside.tips div.inner { - background:#eeeef6; - border-left-color:1px solid #e0e0e0; - border-right-color:1px solid #e0e0e0; - border-bottom-color:1px solid #d6d6dd; - border-radius: 0 0 2px 2px; -} .soft-deprecation-notice { color: #262626;