pearweb_qa
[ class tree: pearweb_qa ] [ index: pearweb_qa ] [ all elements ]

Source for file packages_status.php

Documentation is available at packages_status.php

  1. <?php
  2. /*
  3.    +----------------------------------------------------------------------+
  4.    | PEAR Web site version 1.0                                            |
  5.    +----------------------------------------------------------------------+
  6.    | Copyright (c) 2001-2005 The PHP Group                                |
  7.    +----------------------------------------------------------------------+
  8.    | This source file is subject to version 2.02 of the PHP license,      |
  9.    | that is bundled with this package in the file LICENSE, and is        |
  10.    | available at through the world-wide-web at                           |
  11.    | http://www.php.net/license/2_02.txt.                                 |
  12.    | If you did not receive a copy of the PHP license and are unable to   |
  13.    | obtain it through the world-wide-web, please send a note to          |
  14.    | license@php.net so we can mail you a copy immediately.               |
  15.    +----------------------------------------------------------------------+
  16.    | Authors: Arnaud Limbourg <arnaud@limbourg.com>                       |
  17.    +----------------------------------------------------------------------+
  18.    $Id$
  19. */
  20.  
  21. /**
  22.  * This page will show a list of packages with latest
  23.  * release information along with bug count and any other info
  24.  * that may be used to identify unmaintained packages
  25.  */
  26. auth_require('pear.qa');
  27.  
  28. response_header('Quality Assurance Initiative - Packages status');
  29.  
  30. $states = array('snapshot''devel''alpha''beta''stable');
  31.  
  32. echo "View packages status for the following state\n";
  33.  
  34. echo "<ul>\n";
  35. foreach ($states as $state{
  36.     $link = make_link(
  37.     '/qa/packages_status_detail.php?state=' $state,
  38.         'See packages status for state ' $state'',
  39.     'title="Details for state ' $state '"');
  40.     echo '<li>' $link '</li>';
  41. }
  42. echo "</ul>\n";
  43.  
  44. response_footer();

Documentation generated on Mon, 11 Mar 2019 15:46:40 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.