mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
31 lines
1004 B
PHP
31 lines
1004 B
PHP
<?php
|
|
$_SERVER['BASE_PAGE'] = 'software.php';
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
|
|
site_header("PHP Software", array("current" => "help"));
|
|
?>
|
|
|
|
<h1>PHP Software</h1>
|
|
|
|
<p>
|
|
This page contains a list of sites where you can find software distributed
|
|
under the <a href="/license/3_01.txt">PHP license</a>.
|
|
</p>
|
|
|
|
<p>
|
|
<?php echo make_image("logos/php-icon-white.gif", $alt = "php.net", "left") ?>
|
|
<a href="http://php.net/">php.net</a><br>
|
|
Main site for the PHP project.<br clear="left">
|
|
</p>
|
|
<p>
|
|
<?php echo make_image("pear-icon.png", $alt = "pear.php.net", "left") ?>
|
|
<a href="http://pear.php.net/">pear.php.net</a><br>
|
|
The PEAR project where you can find reusable components for PHP .<br clear="left">
|
|
</p>
|
|
<p>
|
|
<?php echo make_image("pecl-icon.png", $alt = "pecl.php.net", "left") ?>
|
|
<a href="http://pecl.php.net/">pecl.php.net</a><br>
|
|
The PECL project where you can find PHP extensions.<br clear="left">
|
|
</p>
|
|
|
|
<?php site_footer();
|