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

Source for file index.php

Documentation is available at index.php

  1. <?php
  2. /*
  3.    +----------------------------------------------------------------------+
  4.    | PEAR Web site version 1.0                                            |
  5.    +----------------------------------------------------------------------+
  6.    | Copyright (c) 2004-2005 The PEAR 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: Martin Jansen <mj@php.net>                                  |
  17.    +----------------------------------------------------------------------+
  18.    $Id$
  19. */
  20. require_once 'Damblan/Karma.php';
  21.  
  22. response_header("Quality Assurance Initiative");
  23. ?>
  24.  
  25. <h1>The PEAR Quality Assurance Initiative</h1>
  26.  
  27. <p>The PEAR Quality Assurance Initiative is designed to promote quality within PEAR.
  28. You can find out more about how the <abbr title="Quality Assurance">QA</abbr>
  29. team works in the <a href="/pepr/pepr-proposal-show.php?id=60">appendant RFC</a>, and the <a href="http://wiki.php.net/pear/qa">wiki</a>.
  30. </p>
  31.  
  32. <p>The current members of the
  33.  <abbr title="Quality Assurance">QA</abbr> Team are:
  34. </p>
  35.  
  36. <ul>
  37. <?php
  38.     $karma = new Damblan_Karma($dbh);
  39.     foreach ($karma->getUsers('pear.qa'as $user{
  40.         echo ' <li>' . user_link(htmlspecialchars($user['user'])true"</li>\n";
  41.     }
  42. ?>
  43. </ul>
  44.  
  45. <p>If you are interested in helping out, or if you have questions
  46. concerning the <abbr title="Quality Assurance">QA</abbr>
  47. initiative, you can contact the team using the mailing list
  48. <a href="mailto:<?php echo PEAR_QA_EMAIL; ?>"><?php echo PEAR_QA_EMAIL; ?></a>
  49.  (<a href="/support/lists.php">subscription information</a>).</p>
  50.  
  51. <?php
  52. if ($auth_user{
  53.     if (auth_check('pear.dev')) {
  54.         $str = <<<EOD
  55. <h2>Related Tools: </h2>
  56. <ul>
  57.  <li><a href="/qa/packages_closed_reports_no_release.php">List of packages that have closed reports but no release within certain amount of time</a></li>
  58.  <li><a href="/qa/patches_on_open_reports.php">List of packages with patches attached to them</a></li>
  59.  <li><a href="/qa/packages_orphan.php">List of orphan packages</a></li>
  60.  <li><a href="/qa/packages_orphan_patches.php">Orphan packages with patches</a></li>
  61.  
  62. </ul>
  63. EOD;
  64.         echo $str;
  65.     }
  66. }
  67.  
  68. response_footer();

Documentation generated on Mon, 11 Mar 2019 16:01:20 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.