1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Hopefully prettify

This commit is contained in:
Hannes Magnusson
2013-12-10 15:14:18 -08:00
parent eb6caa671a
commit 2523e3c0a3
3 changed files with 48 additions and 34 deletions

View File

@@ -3,20 +3,11 @@
$_SERVER['BASE_PAGE'] = 'get-involved.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
$SIDEBAR_DATA ='
<p>
Ever wondered how the PHP.net project actually works and what it has to offer?
Who is in charge and how decisions are made? The PHP.net project has a lot of
things in the works and is always looking for new talent to join the project,
share new ideas, discuss improvements, fix broken features, look after the
websites, documentation, and so on....
</p>
';
site_header("Get Involved", array("current" => "community"));
?>
<h2>Contributing to PHP</h2>
<h2 class="content-title">Contributing to PHP</h2>
<div class="content-box">
<p>
Anybody who programs in PHP can be a contributing member of the community
@@ -31,11 +22,11 @@ site_header("Get Involved", array("current" => "community"));
but help is still needed: testing release candidates, finding and squashing
bugs in tests, documentation, and sources.
</p>
</div>
<h3>Four Best Ways to Contribute</h3>
<h3 class="content-title">Four Best Ways to Contribute</h3>
<p>
<ol>
<ol class="content-box listed">
<li>Running test suites in <a href="http://qa.php.net/">RC</a>
and <a href="http://php.net/releases">release</a> distributions of PHP</li>
<li>Help finding and diagnosing failed tests, see
@@ -45,10 +36,10 @@ site_header("Get Involved", array("current" => "community"));
<li>Help maintain and or translate documentation files
at <a href="http://edit.php.net">edit.php.net</a></li>
</ol>
</p>
<h3>Development of the PHP source</h3>
<h3 class="content-header">Development of the PHP source</h3>
<div class="content-box">
<p>
Someone hoping to become involved in the maintenance and development of
the source should be experienced in all of the areas mentioned above, as
@@ -59,20 +50,23 @@ site_header("Get Involved", array("current" => "community"));
<p>
You will also need experience in C programming as PHP is written entirely in C.
</p>
</div>
<p>
Below are some useful links for developers:
<ul>
<?php
$SIDEBAR_DATA ='
<p class="panel"><a href="build-setup.php">Developer Setup Help</a></p>
<h3 class="announcements">Useful links for developers:</h3>
<ul class="content-box">
<li><a href="http://lxr.php.net">lxr</a> - an online interface to the
PHP source, providing search facilities useful for programmers and researchers</li>
<li><a href="https://wiki.php.net/rfc/howto">The RFC process</a> - the process
by which developers can suggest and discuss new ideas with the community</li>
<li><a href="/build-setup">Developer Setup Help</a> - some helpful information
<li><a href="/build-setup.php">Developer Setup Help</a> - some helpful information
regarding setting up a development environment for PHP</li>
</ul>
</p>
';
<?php
site_footer(array('sidebar'=>$SIDEBAR_DATA));
/* vim: set et ts=4 sw=4 ft=php: : */