1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
Files
archived-web-php/sitemap.php
Adam Harvey f1f5e30ca3 Initial rewrite of the references to Subversion on the site to Git. Rewrites
welcome! A couple of important notes:

- I've largely dropped references to Subversion altogether, even knowing that
  php-doc hasn't migrated yet. We may need to put a few more "Git/SVN account"
  references in there if php-doc isn't going to be migrated in the near future.

- I've removed the quick start hints from git-php.php after an account request
  has been sent in. The documentation there was pretty skimpy anyway and
  probably wouldn't have been enough to get a developer going, plus it's harder
  to distill the Git workflow into three or four snappy commands and I'm not
  really convinced that a form confirmation page is the right place to have
  learning materials, since it's a one-time page for most users. Instead I've
  replaced them with links to the relevant Wiki pages, which seem more likely
  to be the right place for new developers to learn.

News post to come, but I wanted to separate this out for easier review.
2012-03-20 10:13:32 +08:00

117 lines
3.1 KiB
PHP

<?php
// $Id$
$_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>
</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>
<li><a href="/reST">Internal documentations for developers</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>
<li><a href="/links.php">Links</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="/search.php">Search</a></li>
<li><a href="/sidebars.php">Search Bars</a></li>
<li><a href="/urlhowto.php">URL Shortcuts</a></li>
<li><a href="/quickref.php">Quick Function Reference</a></li>
<li><a href="/tips.php">Quick Reference Tips</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>
<li><a href="/usage.php">Usage</a></li>
</ul>
<?php site_footer();