/[qa]/trunk/wml/developer.wml
ViewVC logotype

Diff of /trunk/wml/developer.wml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1371 by myon, Tue Jul 18 23:13:25 2006 UTC revision 1372 by myon, Thu Jul 20 18:32:44 2006 UTC
# Line 1778  if($comaint == "") Line 1778  if($comaint == "")
1778    $comaint = "yes";    $comaint = "yes";
1779  }  }
1780    
1781  if (preg_match($filter_re, @$excuse)) {  if ($excuse = $_REQUEST['excuse'] and preg_match($filter_re, $excuse)) {
1782      print_excuse($excuse);      print_excuse($excuse);
1783      printBackLink("?package=$excuse");      printBackLink("?package=$excuse");
1784    
1785  } elseif (preg_match($filter_re, @$popcon)) {  } elseif ($popcon = $_REQUEST['popcon'] and preg_match($filter_re, $popcon)) {
1786      print_popcon($popcon);      print_popcon($popcon);
1787      printBackLink("?package=$popcon");      printBackLink("?package=$popcon");
1788    
1789  } elseif (preg_match($filter_re, @$wnpp)) {  } elseif ($wnpp = $_REQUEST['wnpp'] and preg_match($filter_re, $wnpp)) {
1790      if (!strstr($wnpp, "@")) $wnpp .= "@debian.org";      if (!strstr($wnpp, "@")) $wnpp .= "@debian.org";
1791      print html_h("WNPP bugs submitted by $wnpp", 2);      print html_h("WNPP bugs submitted by $wnpp", 2);
1792      print_wnpp_entry("s:$wnpp");      print_wnpp_entry("s:$wnpp");
# Line 1794  if (preg_match($filter_re, @$excuse)) { Line 1794  if (preg_match($filter_re, @$excuse)) {
1794      print_wnpp_entry("o:$wnpp");      print_wnpp_entry("o:$wnpp");
1795      printBackLink("?login=$wnpp");      printBackLink("?login=$wnpp");
1796    
1797  } elseif (preg_match($filter_re, @$gpg_key)) {  } elseif ($gpg_key = $_REQUEST['gpg_key'] and preg_match($filter_re, $gpg_key)) {
1798      $contents = file("$prefix/ddpo_maintainers");      $contents = file("$prefix/ddpo_maintainers");
1799    
1800      $match = 0;      $match = 0;
# Line 1816  if (preg_match($filter_re, @$excuse)) { Line 1816  if (preg_match($filter_re, @$excuse)) {
1816      }      }
1817      printBackLink();      printBackLink();
1818    
1819  } elseif (preg_match($filter_re, @$login)) {  } elseif ($login = $_REQUEST['login'] and preg_match($filter_re, $login)) {
1820      if (preg_match("/[A-Z]/", $login)) { # search by name      if (preg_match("/[A-Z]/", $login)) { # search by name
1821          $pattern = strtolower($login);          $pattern = strtolower($login);
1822          $maintainers = file("$prefix/maintainers.txt");          $maintainers = file("$prefix/maintainers.txt");
# Line 1853  if (preg_match($filter_re, @$excuse)) { Line 1853  if (preg_match($filter_re, @$excuse)) {
1853    
1854      printBackLink();      printBackLink();
1855    
1856  } elseif(preg_match($filter_re, @$package)) {  } elseif($package = $_REQUEST['package'] and preg_match($filter_re, $package)) {
1857      $maint = dba_fetch("m:$package", $pack_db);      $maint = dba_fetch("m:$package", $pack_db);
1858      if ($maint) {      if ($maint) {
1859          $name = dba_fetch("name:$maint", $pack_db);          $name = dba_fetch("name:$maint", $pack_db);
# Line 1864  if (preg_match($filter_re, @$excuse)) { Line 1864  if (preg_match($filter_re, @$excuse)) {
1864      }      }
1865      printBackLink();      printBackLink();
1866    
1867  } elseif(preg_match($filter_re, @$packages)) {  } elseif($packages = $_REQUEST['packages'] and preg_match($filter_re, $packages)) {
1868      print_package_entries("Packages", $packages, $comaint);      print_package_entries("Packages", $packages, $comaint);
1869      printBackLink();      printBackLink();
1870    
1871  } elseif(preg_match($filter_re, @$task)) {  } elseif($task = $_REQUEST['task'] and preg_match($filter_re, $task)) {
1872      $task_db = dba_open("$prefix/tasks.db", 'r-', 'db4');      $task_db = dba_open("$prefix/tasks.db", 'r-', 'db4');
1873      $packages = dba_fetch("t:$task", $task_db);      $packages = dba_fetch("t:$task", $task_db);
1874      if ($packages) {      if ($packages) {
# Line 1880  if (preg_match($filter_re, @$excuse)) { Line 1880  if (preg_match($filter_re, @$excuse)) {
1880      }      }
1881      printBackLink();      printBackLink();
1882    
1883  } elseif (@$all) {  } elseif ($_REQUEST['all']) {
1884      print_all();      print_all();
1885    
1886  } else {  } else {

Legend:
Removed from v.1371  
changed lines
  Added in v.1372

  ViewVC Help
Powered by ViewVC 1.1.5