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.
111 lines
2.8 KiB
PHP
111 lines
2.8 KiB
PHP
<?php
|
|
$_SERVER['BASE_PAGE'] = 'sitemap.php';
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
|
|
site_header("Sitemap", array("current" => "help"));
|
|
?>
|
|
|
|
<h1>PHP.net Sitemap</h1>
|
|
|
|
<h2>News</h2>
|
|
|
|
<ul>
|
|
<li><a href="/index.php">Home Page</a></li>
|
|
<li><a href="/archive/index.php">News Archives</a></li>
|
|
<li><a href="/feed.atom">Atom newsfeed</a></li>
|
|
<li><a href="/conferences/">Conferences</a></li>
|
|
<li><a href="/ChangeLog-4.php">PHP 4 ChangeLog</a></li>
|
|
<li><a href="/ChangeLog-5.php">PHP 5 ChangeLog</a></li>
|
|
<li><a href="/ChangeLog-7.php">PHP 7 ChangeLog</a></li>
|
|
</ul>
|
|
|
|
<h2>Getting PHP</h2>
|
|
|
|
<ul>
|
|
<li><a href="/downloads.php">Downloads</a></li>
|
|
<li><a href="/releases/">Older releases</a></li>
|
|
<li><a href="/software.php">Software</a></li>
|
|
</ul>
|
|
|
|
<h2>PHP Bugs</h2>
|
|
|
|
<ul>
|
|
<li><a href="http://bugs.php.net/">Submit a bug or a feature request</a></li>
|
|
<li><a href="http://bugs.php.net/search.php">Search for bugs</a></li>
|
|
</ul>
|
|
|
|
<h2>PHP Support</h2>
|
|
|
|
<ul>
|
|
<li><a href="/support.php">Getting Help</a>
|
|
<ul>
|
|
<li>Documentation
|
|
<ul>
|
|
<li><a href="/docs.php">Online Documentation</a></li>
|
|
<li><a href="/faq.php">Frequently Asked Questions</a></li>
|
|
<li><a href="/download-docs.php">Download documentation</a></li>
|
|
</ul>
|
|
</li>
|
|
<li>Other support pages
|
|
<ul>
|
|
<li><a href="/mailing-lists.php">Mailing Lists</a>, <a href="/unsub.php">Unsubscribe</a></li>
|
|
<li><a href="/cal.php">Events</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
|
|
<h2>Security</h2>
|
|
|
|
<ul>
|
|
<li><a href="/manual/security">In the Manual</a></li>
|
|
<li><a href="/security-note.php">A Note</a></li>
|
|
</ul>
|
|
|
|
<h2>Navigation</h2>
|
|
|
|
<ul>
|
|
<li><a href="/my.php">My PHP.net</a></li>
|
|
<li><a href="/urlhowto.php">URL Shortcuts</a></li>
|
|
<li><a href="/quickref.php">Quick Function Reference</a></li>
|
|
<li><a href="/sites.php">PHP.net Sites List</a></li>
|
|
</ul>
|
|
|
|
<h2>Git instructions</h2>
|
|
|
|
<ul>
|
|
<li><a href="/git.php">Getting PHP from Git</a></li>
|
|
<li><a href="/git-php.php">Using Git for PHP Development</a></li>
|
|
<!-- <li><a href="/svnsync.php">Maintaining a Local SVN Repository</a></li> -->
|
|
</ul>
|
|
|
|
<h2>Mirror sites</h2>
|
|
|
|
<ul>
|
|
<li>Mirror site information
|
|
<ul>
|
|
<li><a href="/mirrors.php">List of Mirror Sites</a></li>
|
|
<li><a href="/mirror.php">Information About this Mirror Site</a></li>
|
|
</ul>
|
|
</li>
|
|
<li>Mirroring
|
|
<ul>
|
|
<li><a href="/mirroring.php">Mirroring PHP.net</a></li>
|
|
<li><a href="/mirroring-stats.php">Mirroring - stats service</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
|
|
<h2>Other pages</h2>
|
|
|
|
<ul>
|
|
<li><a href="/download-logos.php">Download Logos</a></li>
|
|
<li><a href="/contact.php">Contact</a></li>
|
|
<li><a href="/copyright.php">Copyright</a></li>
|
|
<li><a href="/credits.php">Credits</a></li>
|
|
<li><a href="/contact.php#ads">Advertising at PHP.net</a></li>
|
|
<li><a href="/license/">License Information</a></li>
|
|
</ul>
|
|
|
|
<?php site_footer();
|