Diff for /db/prgsrc/db.cgi between versions 1.39 and 1.57

version 1.39, 2001/12/03 02:28:56 version 1.57, 2002/01/08 23:15:31
Line 2 Line 2
   
 use DBI;  use DBI;
 use CGI ':all';  use CGI ':all';
 use Text::Query;  #use Text::Query;
 use strict;  use strict;
 use Time::Local;  use Time::Local;
 use POSIX qw(locale_h);  use POSIX qw(locale_h);
 use locale;  use locale;
 #open STDERR, ">errors1";  open STDERR, ">errors1";
 my $printqueries=0;  my $printqueries=0;
 my %forbidden=();  my %forbidden=();
 my $debug=0; #added by R7  my $debug=0; #added by R7
   if (param('debug')) {$debug=1; $printqueries=1}
   *STDERR=*STDOUT if $debug;
 my %fieldname= (0,'Question', 1, 'Answer', 2, 'Comments', 3, 'Authors', 4, 'Sources');  my %fieldname= (0,'Question', 1, 'Answer', 2, 'Comments', 3, 'Authors', 4, 'Sources');
   my %rusfieldname=('Question','÷ÏÐÒÏÓ', 'Answer', 'ïÔ×ÅÔ', 
                     'Comments', 'ëÏÍÍÅÎÔÁÒÉÉ', 'Authors', 'á×ÔÏÒ', 
                     'Sources', 'éÓÔÏÞÎÉË','old','óÔÁÒÙÊ','rus','îÏ×ÙÊ');
 my %searchin;  my %searchin;
   my $rl=qr/[ÊÃÕËÅÎÇÛÝÚÈßÆÙ×ÁÐÒÏÌÄÖÜÑÞÓÍÉÔØÂÀ£]/;
   my $RL=qr/[êãõëåîçûýúèÿüöäìïòðá÷ùæñþóíéôøâà³]/;
   my $RLrl=qr/(?:(?:${rl})|(?:${RL}))+/;
   my $l=qr/(?:(?:${RLrl})|(?:[\w\-]))+/;
   my $Ll=qr/(?:[A-Z])|(?:${RL})/;
   my %metodchar=('rus',1,'old',2);
   
   
   
 my $thislocale;  my $thislocale;
   
   $searchin{$_}=1 foreach param('searchin');
   my %TypeName=('children'=>'ä', 'game'=>'é',
                 'chgk'=>'þ', 'brain'=>'â', 'beskrylka'=>'ì','ehruditka'=>'ü');
   
   
   
 $searchin{'question'}=param('Question');  
 $searchin{'answer'}=param('Answer');  
 $searchin{'comments'}=param('Comments');  
 $searchin{'authors'}=param('Authors');  
 $searchin{'sources'}=param('Sources');  
 my $all=param('all');  my $all=param('all');
 $all=0 if lc $all eq 'no';  $all=0 if lc $all eq 'no';
 my ($PWD) = `pwd`;  my ($PWD) = `pwd`;
Line 64  sub GetTournament { Line 75  sub GetTournament {
         foreach $name (@{$sth->{NAME}}) {          foreach $name (@{$sth->{NAME}}) {
                 $Tournament{$name} = $arr[$i++];                  $Tournament{$name} = $arr[$i++];
         }          }
           $sth->finish;
         return %Tournament;          return %Tournament;
 }  }
   
Line 85  sub GetQuestion { Line 96  sub GetQuestion {
                 $Question{$name} = $arr[$i++];                  $Question{$name} = $arr[$i++];
         }          }
   
           $sth->finish;
         return %Question;          return %Question;
 }  }
   
Line 94  sub GetTourQuestions { Line 106  sub GetTourQuestions {
         my (@arr, @Questions);          my (@arr, @Questions);
   
         my ($sth) = $dbh->prepare("SELECT QuestionId FROM Questions          my ($sth) = $dbh->prepare("SELECT QuestionId FROM Questions
                 WHERE ParentId=$ParentId ORDER BY QuestionId");                  WHERE ParentId=$ParentId");
   
         $sth->execute;          $sth->execute;
   
Line 102  sub GetTourQuestions { Line 114  sub GetTourQuestions {
                 push @Questions, $arr[0];                  push @Questions, $arr[0];
         }          }
   
           $sth->finish;
         return @Questions;          return @Questions;
 }  }
   
Line 118  sub GetTours { Line 131  sub GetTours {
         while (@arr = $sth->fetchrow) {          while (@arr = $sth->fetchrow) {
                 push @Tours, $arr[0];                  push @Tours, $arr[0];
         }          }
           $sth->finish;
         return @Tours;          return @Tours;
 }  }
   
   sub count
   {
     my ($dbh,$word)=@_; 
   print "timeb=".time.br if $debug;
     $word=$dbh->quote(uc $word);
     my $query="SELECT number from nests,nf where $word=w1 AND w2=nf.id";
     my $sth=$dbh->prepare($query);
     $sth->execute;
     my @a=$sth->fetchrow;
   print "timee0=".time.br if $debug;
     $sth->finish;
     $a[0]||0;
   }
   
   
   sub printform
   {
   
     my $submit=submit(-value=>'ðÏÉÓË');
     my $inputstring=textfield(-name=>'sstr',
                            -default=>param('sstr')||'',
                            -size=>30,
                            -maxlength=>30);
     my $qnumber="÷Ù×ÏÄÉÔØ ÐÏ".br. textfield(-name=>'kvo',
                            -default=>param('kvo')||'150',
                            -size=>3,
                            -maxlength=>5). br."×ÏÐÒÏÓÏ×";
   
     my @df=keys %searchin;
     @df=('Question', 'Answer') unless @df;
     my $fields=checkbox_group('searchin',['Question','Answer','Comments','Authors','Sources'], [@df],
                'false',\%rusfieldname);
   
     my $metod=radio_group(-name=>'metod',-values=>['old','rus'],
                          -default=>(param('metod')||'rus'),
                          -labels=>\%rusfieldname);
     my $all=radio_group(-name=>'all',-values=>['yes','no'],
                          -default=>(param('all')||'no'),
                          -labels=>{'yes'=>'÷ÓÅ','no'=>'ìÀÂÏÅ'});
   
   #################################################
   return   start_form(-method=>'get',
                          -action=>url,
                          -enctype=>
                   "application/x-www-form-urlencoded"
   ).br.
   table(Tr
   (
     td({-valign=>'TOP'},$inputstring.$submit.p."íÅÔÏÄ: $metod".p."óÌÏ×Á: $all"),
     td({-valign=>'TOP'},(' 'x 8).'ðÏÌÑ:'),
     td({-valign=>'TOP'},$fields), td(" "x5),
     td({-valign=>'TOP'},$qnumber)
   ) 
   )
    
   #$fields.
   #$inputstring.$submit.br.$metod.$all
   .endform
   .hr
   
   }
   
   sub proxy
   {
   #print "time0=".time.br if $debug;
         my ($dbh,$ptext,$allnf)=@_;
         my $text=$$ptext;
         $text=~tr/£³/Åå/;
         $text=~s/(${RLrl})p(${RLrl})/$1p$2/gom;
         $text=~s/p(${RLrl})/Ò$1/gom;
         $text=~s/(${RLrl})p/$1Ò/gom;
         $text=~s/\s+/ /gmo;
         $text=~s/[^ÊÃÕËÅÎÇÛÝÚÈßÆÙ×ÁÐÒÏÌÄÖÜÑÞÓÍÉÔØÂÀêãõëåîçûýúèÿæù÷áðòïìäöüñþóíéôøâàQWERTYUIOPASDFGHJKLZXCVBNM0-9]/ /g;
         $text=uc $text;
         my @list= $text=~m/(?:(?:${RLrl})+)|(?:[A-Za-z0-9]+)/gom;
         my (%c, %good,$sstr);
         foreach (@list)
         {
              $c{$_}=count($dbh,$_)||10000;
         }
         my @words=sort {$c{$a}<=> $c{$b}} @list;
   
   #      $good{$words[$_]}=1 foreach 0..4;
   
         foreach (@words)
         {
            $good{$_}=1 if $c{$_}<200;
         }
   
         $good{$words[$_]}=0 foreach 16..$#words;
   
   #      foreach (@list)
   #      {
   #        if ($good{$_})
   #        {
   #           $good{$_}=0;
   #           $sstr.=" $_";
   #        }
   #      }
         $sstr.=" $_" foreach grep {$good{$_}} @list;
   print "time05=".time.br if $debug;
         $$ptext=$sstr;
         return russearch($dbh,$sstr,0,$allnf);
   }
   
   
 sub russearch {  sub russearch {
             my ($dbh, $sstr, $all,$allnf)=@_;              my ($dbh, $sstr, $all,$allnf)=@_;
             my (@qw,@w,@tasks,$qw,@arr,$nf,$sth,@nf,$w,$where,$e,@where,%good,$i,%where,$from);              my (@qw,@w,@tasks,$qw,@arr,$nf,$sth,@nf,$w,$where,$e,@where,%good,$i,%where,$from);
Line 158  print "$query",br if $printqueries; Line 277  print "$query",br if $printqueries;
                 {                  {
                    push (@{$nf[$i]},$arr[0])                     push (@{$nf[$i]},$arr[0])
                 }                  }
                   $sth->finish;
             }              }
   
   
Line 204  print STDERR "!$query\n",br if $printque Line 324  print STDERR "!$query\n",br if $printque
               {                {
                 @blob=(@blob,unpack 'C*',$arr[0]);                  @blob=(@blob,unpack 'C*',$arr[0]);
               }                }
                 $sth->finish;
               $query="select number from nf where ".(join ' OR ', @arr1);                $query="select number from nf where ".(join ' OR ', @arr1);
 print "$query\n",br if $printqueries;  print "$query\n",br if $printqueries;
               $sth=$dbh -> prepare($query);                $sth=$dbh -> prepare($query);
Line 213  print "$query\n",br if $printqueries; Line 334  print "$query\n",br if $printqueries;
               {                {
                 $frequence[$i]+=$arr[0];                  $frequence[$i]+=$arr[0];
               }                }
                 $sth->finish;
   
   
               if (@blob < 4)                if (@blob < 4)
Line 235  print "$query\n",br if $printqueries; Line 356  print "$query\n",br if $printqueries;
                     $ii+=4;                      $ii+=4;
                     $number=$lo+$hi*256;                      $number=$lo+$hi*256;
                     $field=$fieldname{$field};                      $field=$fieldname{$field};
                     if ($searchin{lc $field})                      if ($searchin{$field})
                     {                      {
                       push @{$tasksof{$i}{$number}}, $wordnumber;                        push @{$tasksof{$i}{$number}}, $wordnumber;
                                       # ÄÏÐÏÌÎÉÌÉ × ÈÜÛÅ, ×ÉÓÑÝÅÍ ÎÁ                                        # ÄÏÐÏÌÎÉÌÉ × ÈÜÛÅ, ×ÉÓÑÝÅÍ ÎÁ
Line 330  if $$words{$first}; Line 451  if $$words{$first};
   
 # Returns list of QuestionId's, that have the search string in them.  # Returns list of QuestionId's, that have the search string in them.
 sub Search {  sub Search {
         my ($dbh, $sstr,$metod,$all,$allnf) = @_;          my ($dbh, $s,$metod,$all,$allnf) = @_;
           my $sstr=$$s;
         my (@arr, @Questions, @fields);          my (@arr, @Questions, @fields);
         my (@sar, $i, $sth,$where,$query);          my (@sar, $i, $sth,$where,$query);
         my $ip=$ENV{'REMOTE_ADDR'};  #       my $ip=$ENV{'REMOTE_ADDR'};
   
         $ip=$dbh->quote($ip);  
         $query=  
           "INSERT into queries (query,metod,searchin,ip)  
                     values (". $dbh->quote($sstr).', '.  
                     $dbh->quote($metod) . ', ' .  
                     $dbh->quote(join ' ', grep $searchin{$_}, keys %searchin)  .   
               ", $ip)";  
 print $query if $printqueries;  
         $dbh -> do ($query);  
   
   #        $ip=$dbh->quote($ip);
   #       $query=
   #          "INSERT into queries (query,metod,searchin,ip)
   #                    values (". $dbh->quote($sstr).', '.
   #                    $dbh->quote($metod) . ', ' .
   #                    $dbh->quote(join ' ', grep $searchin{$_}, keys %searchin)  . 
   #              ", $ip)";
   #print $query if $printqueries;
   #        $dbh -> do ($query);
         if ($metod eq 'rus')          if ($metod eq 'rus')
         {          {
              my @tasks=russearch($dbh,$sstr,$all,$allnf);               my @tasks=russearch($dbh,$sstr,$all,$allnf);
              return @tasks               return @tasks
         }          }
           elsif ($metod eq 'proxy')
           {
   #         $searchin{'question'}=1;
   #         $searchin{'answer'}=1;
             my @task=proxy($dbh,$s,$allnf);
   #         $$s=$sstr;
             return @task
           }
   
   
   
 ###Simple and advanced query processing. Added by R7  ###Simple and advanced query processing. Added by R7
Line 380  print $query if $printqueries; Line 510  print $query if $printqueries;
 ######  ######
          {           {
   
           foreach (qw/Question Answer Sources Authors Comments/) {  #         foreach (qw/Question Answer Sources Authors Comments/) {
                 if (param($_)) {            foreach (param('searchin')) {
   #               if (param($_)) {
                         push @fields, "IFNULL($_, '')";                          push @fields, "IFNULL($_, '')";
                 }  #               }
           }            }
           @sar = split " ", $sstr;            @sar = split " ", $sstr;
           for $i (0 .. $#sar) {            for $i (0 .. $#sar) {
Line 404  print $query if $printqueries; Line 535  print $query if $printqueries;
   
 print $query if $printqueries;  print $query if $printqueries;
           $sth = $dbh->prepare($query)            $sth = $dbh->prepare($query)
   
         } #else -- processing old-style query (R7)          } #else -- processing old-style query (R7)
   
         $sth->execute;          $sth->execute;
         while (@arr = $sth->fetchrow) {          while (@arr = $sth->fetchrow) {
                 push @Questions, $arr[0] unless $forbidden{$arr[0]};                  push @Questions, $arr[0] unless $forbidden{$arr[0]};
         }          }
           $sth->finish;
   print "@Questions" if $printqueries;
         return @Questions;          return @Questions;
 }  }
   
Line 420  print $query if $printqueries; Line 551  print $query if $printqueries;
  Ðð Òò Óó Ôô Õõ Ææ Èè Ãã Þþ Ûû Ýý Øø Ùù Üü Àà Ññ/;   Ðð Òò Óó Ôô Õõ Ææ Èè Ãã Þþ Ûû Ýý Øø Ùù Üü Àà Ññ/;
   
 sub NoCase {  sub NoCase {
         my ($sstr) = shift;          my ($sstr) = shift;                     
         my ($res);          my ($res);
   
         if (($res) = grep(/$sstr/, @letters)) {          if (($res) = grep(/$sstr/, @letters)) {
Line 430  sub NoCase { Line 561  sub NoCase {
         }          }
 }  }
   
   sub PrintList {
      my ($dbh,$Questions,$shablon,$was)=@_;
   
           my $first=param('first') ||1;
           my $kvo=param('kvo') ||150;
   
           $first=$first-($first-1)%$kvo;
           my $last=$first+$kvo-1;
           $last=scalar @$Questions if scalar @$Questions <$last;
           my($f,$l);
           my $nav='';
           my $qs=query_string;
           $qs=~s/\;/\&/g;
           $qs=~s/\&first\=[^\&]+//g;
           my $sstr=param('sstr');
           $qs=~s/sstr=[^\&]+/sstr=$sstr/;
           $qs=~s/\&was=[^\&]+//;
           $qs.="&was=$was";
           if ($first>$kvo*3+1)
           {
              $nav.=
               ("&nbsp;"x4).
               a({href=>url."?".$qs."\&first=1"},"<<").("&nbsp;"x4).
               a({href=>(url."?".$qs."\&first=".($first-$kvo))},"<").("&nbsp;"x4)
                   }
   
           else {$nav.='&nbsp;'x15;}
   
        my ($fprint,$lprint);
        my $llprint=$#$Questions- ($#$Questions+1)%$kvo+2;
        if ($#$Questions+1<=$kvo*7)
        {         $fprint=1;
                  $lprint=$llprint;
        }
        elsif ($first>$kvo*3 && $#$Questions+1-$first>$kvo*3)
        {
          $fprint=$first-$kvo*3;
          $lprint=$first+$kvo*3;
        } 
        elsif  ($first<=$kvo*3)
        {
           $fprint=1; $lprint=6*$kvo+1;
        }
        else
        { 
              $lprint=$llprint;
              $fprint=$lprint-$kvo*6
        }
            
   #        my $fprint=($first>$kvo*3) ? $first-$kvo*3 : 1;
   #        my $lprint=$#$Questions+1-$fprint>$kvo*7 ? $kvo*7 :$#$Questions+1;
   #        if ($lprint-$fprint<$kvo*6 && $fprint>1)
   #        {
   #            $fprint=$lprint-$kvo*6;
   #            $fprint=1 if ($fprint<=0) 
   #        }
   
   
   
           for($f=$fprint; $f<=$lprint; $f+=$kvo)
           {
   #         next if $first-$f>$kvo*3;
             $l=$f+$kvo-1;
             $l=$#$Questions+1 if $l>$#$Questions+1;
             if ($f==$first) {$nav.="[$f-$l] ";}
             else {
                     $nav.= "[".a({href=>(url."?".$qs."\&first=$f")},"$f-$l")."] ";}
           }
           if ($lprint+$kvo<$#$Questions)
           {
              $nav.=
               ("&nbsp;"x4).
               a({href=>(url."?".$qs."\&first=".($first+$kvo))},">").("&nbsp;"x4).
               a({href=>url."?".$qs."\&first=$llprint"},">>").("&nbsp;"x4)
           }
   
   
           print "$nav".br."\n";
           for (my $i = $first; $i <= $last; $i++) {
                   my $output = &PrintQuestion($dbh, $$Questions[$i-1], 1, $i, 1);
                   if (param('metod') eq 'rus' || param('metod') eq 'proxy')
                   {
                        $output=~s/\b($shablon)\b/\<strong\>$1\<\/strong\>/gi;
                   } else {
                        $output=~s/($shablon)/\<strong\>$1\<\/strong\>/gi;
                   }
                   print $output;
           }
   
   
           print "$nav".br."\n";
   
   }
   
 sub PrintSearch {  sub PrintSearch {
         my ($dbh, $sstr, $metod) = @_;          my ($dbh, $sstr, $metod,$was) = @_;
           my $t=time;
           print h2("ðÏÉÓË × ÂÁÚÅ ×ÏÐÒÏÓÏ×");
           print printform;
         my @allnf;          my @allnf;
         my (@Questions) = &Search($dbh, $sstr,$metod,$all,\@allnf);          my @Questions;
           if ($was)
           {
             my $sth=$dbh->prepare ("select sstr,questions,allnf from lastqueries where id=".param('was'));
             $sth->execute;
             my ($q,$nf);
             ($sstr, $q,$nf)=($sth->fetchrow);
             @Questions=unpack 'S*',$q; 
             @allnf=unpack 'S*',$nf;        
             $sth->finish;
           } else 
           {
                @Questions=&Search($dbh, \$sstr,$metod,$all,\@allnf);
                my $tmp=$dbh->quote(pack("S*",@Questions));
                my $qsstr=$dbh->quote($sstr);
                my $nf=$dbh->quote(pack("S*", @allnf));
                my $ss=200;
                do 
                {
                  $was=int rand(32000);
                }
                while (--$ss && (!$dbh->do ("insert into lastqueries (id,sstr,questions,allnf) 
                            values ($was, $qsstr,$tmp,$nf)")));
                print "Something is wrong...".br unless $ss;
           }
   
   
   
           print p. "÷ÒÅÍÑ ÐÏÉÓËÁ: " . (time-$t) ." ÓÅË.".p;
         my ($output, $i, $suffix, $hits) = ('', 0, '', $#Questions + 1);          my ($output, $i, $suffix, $hits) = ('', 0, '', $#Questions + 1);
   
         my $shablon;          my $shablon;
           $metod='rus' if $metod eq 'proxy';
         if ($metod eq 'rus')          if ($metod eq 'rus')
         {          {
            my $where='0';             my $where='0';
Line 452  print "$query" if $printqueries; Line 708  print "$query" if $printqueries;
            {             {
              push @shablon,"(?:$arr[0])";               push @shablon,"(?:$arr[0])";
            }             }
              $sth->finish;
            $shablon= join "|", @shablon;             $shablon= join "|", @shablon;
            $shablon=~s/[Å£]/\[å³\]/gi;             $shablon=~s/[Å£]/\[å³\]/gi;
 #           $shablon=~s/([ÊÃÕËÅÎÇÛÝÚÈßÆÙ×ÁÐÒÏÌÄÖÜÑÞÓÍÉÔØÂÀêãõëåîçûýúèÿæù÷áðòïìäöüñþóíéôøâà])/&NoCase($1)/ge;  #           $shablon=~s/([ÊÃÕËÅÎÇÛÝÚÈßÆÙ×ÁÐÒÏÌÄÖÜÑÞÓÍÉÔØÂÀêãõëåîçûýúèÿæù÷áðòïìäöüñþóíéôøâà])/&NoCase($1)/ge;
            $shablon=qr/$shablon/i;             $shablon=qr/$shablon/i;
            print "!$shablon!",br if $printqueries;             print "!$shablon!",br if $printqueries;
   
         }          }
   
   
Line 478  print "$query" if $printqueries; Line 736  print "$query" if $printqueries;
   
         $sstr =~ s/(.)/&NoCase($1)/ge;          $sstr =~ s/(.)/&NoCase($1)/ge;
   
         my(@sar) = split(' ', $sstr);          my @sar;
         for ($i = 0; $i <= $#Questions; $i++) {          if ($metod ne 'rus') 
                 $output = &PrintQuestion($dbh, $Questions[$i], 1, $i + 1, 1);          {
                 if (param('metod') eq 'rus')            (@sar) = split(' ', $sstr);
                 {            $shablon=join "|",@sar;
                      $output=~s/\b($shablon)\b/\<strong\>$1\<\/strong\>/gi;  
                 } else {  
                 foreach  (@sar) {  
                         $output =~ s/$_/<strong>$&<\/strong>/gs;  
                 }}  
                 print $output;  
         }          }
           PrintList($dbh,\@Questions,$shablon,$was);
 }  }
   
 sub PrintRandom {  sub PrintRandom {
Line 513  sub PrintRandom { Line 766  sub PrintRandom {
         return $output;          return $output;
 }  }
   
   sub PrintEditor {
          my $t=shift; #ÓÓÙÌËÁ ÎÁ èÜÛ Ó ÐÏÌÑÍÉ
          my $ed=$$t{'Editors'};
          my $edname=($ed=~/\,/ ) ? "òÅÄÁËÔÏÒÙ"  : "òÅÄÁËÔÏÒ" ;
          return $ed? h4({align=>"center"},"$edname: $ed" ): '';
   }
   
 sub PrintTournament {  sub PrintTournament {
    my ($dbh, $Id, $answer) = @_;     my ($dbh, $Id, $answer) = @_;
         my (%Tournament, @Tours, $i, $list, $qnum, $imgsrc, $alt,          my (%Tournament, @Tours, $i, $list, $qnum, $imgsrc, $alt,
Line 524  sub PrintTournament { Line 784  sub PrintTournament {
         my ($URL) = $Tournament{'URL'};          my ($URL) = $Tournament{'URL'};
         my ($Info) = $Tournament{'Info'};          my ($Info) = $Tournament{'Info'};
         my ($Copyright) = $Tournament{'Copyright'};          my ($Copyright) = $Tournament{'Copyright'};
           my $fname=$Tournament{'FileName'};
         @Tours = &GetTours($dbh, $Id);          @Tours = &GetTours($dbh, $Id);
           $list='';
           my $textid;
         if ($Id) {          if ($Id) {
                 for ($Tournament{'Type'}) {                  for ($Tournament{'Type'}) {
                         /ç/ && do {                          /ç/ && do {
Line 546  sub PrintTournament { Line 807  sub PrintTournament {
   
                                 $output .= h2({align=>"center"},                                  $output .= h2({align=>"center"},
                                         "$title") . p . "\n";                                          "$title") . p . "\n";
                                  $output.=&PrintEditor(\%Tournament);
                                 last;                                  last;
                         };                          };
                         /ô/ && do {                          /ô/ && do {
Line 580  sub PrintTournament { Line 842  sub PrintTournament {
                         $alt = "[-]";                          $alt = "[-]";
                 }                  }
   
                   my $textid;
                   if ($textid=$Tournament{'FileName'})
                   {
                      $textid=~s/\.txt//;
                   }
                   elsif ($textid=$Tournament{'Number'})
                     {
                         $fname=~s/\.txt//;
                         $textid="$fname.$textid";
                     }
                  else {$textid=$Tournament{'Id'}};
                   
   
                 if ($SingleTour or $Tournament{'Type'} =~ /ô/) {                  if ($SingleTour or $Tournament{'Type'} =~ /ô/) {
                         $list .= dd(img({src=>$imgsrc, alt=>$alt})                          $list .= dd(img({src=>$imgsrc, alt=>$alt})
                                 . " " . $Tournament{'Title'} . " " .                                  . " " . $Tournament{'Title'} . " " .
                                     $Tournament{'PlayedAt'} . $qnum) .                                      $Tournament{'PlayedAt'} . $qnum) .
                                 dl(                                  dl(
                                         dd("["                                          dd("["
                                                 . a({href=>url .  "?tour=$Tournament{'Id'}&answer=0"},                                                  . a({href=>url .  "?tour=$textid&answer=0"},
                                                 "×ÏÐÒÏÓÙ") . "] ["                                                  "×ÏÐÒÏÓÙ") . "] ["
                   . a({href=>url .  "?tour=$Tournament{'Id'}&answer=1"},                    . a({href=>url .  "?tour=$textid&answer=1"},
                   "×ÏÐÒÏÓÙ + ÏÔ×ÅÔÙ") . "]")                    "×ÏÐÒÏÓÙ + ÏÔ×ÅÔÙ") . "]")
                                 );                                  );
                 } else {                  } else {
                         $list .= dd(a({href=>url . "?tour=$Tournament{'Id'}&comp=1"},                          $list .= dd(a({href=>url . "?tour=$textid&comp=1"},
                                 img({src=>'/icons/compressed.gif', alt=>'[ZIP]', border=>1}))                                  img({src=>'/icons/compressed.gif', alt=>'[ZIP]', border=>1}))
                                 . " " . img({src=>$imgsrc, alt=>$alt})                                  . " " . img({src=>$imgsrc, alt=>$alt})
                                 . " " . a({href=>url . "?tour=$Tournament{'Id'}&answer=0"},                                  . " " . a({href=>url . "?tour=$textid&answer=0"},
                                 $Tournament{'Title'}. " ".                                  $Tournament{'Title'}. " ".
                                           $Tournament{'PlayedAt'}) . $qnum);                                            $Tournament{'PlayedAt'}) . $qnum);
                 }                  }
Line 612  sub PrintTournament { Line 887  sub PrintTournament {
                 $output .= p("ëÏÐÉÒÁÊÔ: " .   $Copyright);                  $output .= p("ëÏÐÉÒÁÊÔ: " .   $Copyright);
         }          }
   
   
   
         if ($Info) {          if ($Info) {
                 $output .= p($Info);                  $output .= p($Info);
         }          }
   
         return $output;          return $output;
 }  }
   
Line 628  sub Suffix { Line 904  sub Suffix {
 }  }
   
 sub IsTour {  sub IsTour {
         my ($dbh, $Id) = @_;          my ($dbh, $Id,$n) = @_;
         my ($sth) = $dbh->prepare("SELECT Type FROM Tournaments  
           my ($sth) ;
           
           if (defined $n) 
           { $sth=$dbh->prepare ("select Id FROM Tournaments
                              WHERE ParentId=$Id AND Number=$n");
           }
           else
           {
             $sth=$dbh->prepare("SELECT Id FROM Tournaments
                 WHERE Id=$Id");                  WHERE Id=$Id");
           }
         $sth->execute;          $sth->execute;
         return ($sth->fetchrow)[0] =~ /ô/;          my $a=($sth->fetchrow)[0];
           $sth->finish;
           return $a;
 }  }
   
 # Gets a DB handler (ofcourse) and a tour Id. Prints all the  # Gets a DB handler (ofcourse) and a tour Id. Prints all the
Line 648  sub PrintTour { Line 936  sub PrintTour {
         return 0          return 0
                 if ($Tour{'Type'} !~ /ô/);                  if ($Tour{'Type'} !~ /ô/);
   
           my ($fname)=$Tournament{'FileName'};
           $fname=~s/\.txt//;
         my ($qnum) = $Tour{'QuestionsNum'};          my ($qnum) = $Tour{'QuestionsNum'};
         my ($suffix) = &Suffix($qnum);          my ($suffix) = &Suffix($qnum);
   
Line 655  sub PrintTour { Line 945  sub PrintTour {
                       $Tournament{'PlayedAt'},                        $Tournament{'PlayedAt'},
                       "<br>", $Tour{"Title"} .                        "<br>", $Tour{"Title"} .
                 " ($qnum ×ÏÐÒÏÓ$suffix)\n") . p;                  " ($qnum ×ÏÐÒÏÓ$suffix)\n") . p;
           $output .=&PrintEditor(\%Tour);
   
         my (@Questions) = &GetTourQuestions($dbh, $Id);          my (@Questions) = &GetTourQuestions($dbh, $Id);
         for ($q = 0; $q <= $#Questions; $q++) {          for ($q = 0; $q <= $#Questions; $q++) {
Line 677  sub PrintTour { Line 968  sub PrintTour {
                 $output .= p($Tournament{'Info'});                  $output .= p($Tournament{'Info'});
         }          }
   
           my $n=$Tour{'Number'};
         if ($answer == 0) {          if ($answer == 0) {
                 $bottom .=                  $bottom .=
                         "[" . a({href=>url . "?tour=$Id&answer=1"}, "ÏÔ×ÅÔÙ") .  "] " . br;                          "[" . a({href=>url . "?tour=$fname.$n&answer=1"}, "ÏÔ×ÅÔÙ") .  "] " . br;
         }          }
         if (&IsTour($dbh, $Id - 1)) {          if ($n>1) {
                 $bottom .=                  $bottom .=
                         "[" . a({href=>url . "?tour=" . ($Id - 1) . "&answer=0"},                          "[" . a({href=>url . "?tour=$fname." . ($n - 1) . "&answer=0"},
                         "ÐÒÅÄÙÄÕÝÉÊ ÔÕÒ") . "] ";                          "ÐÒÅÄÙÄÕÝÉÊ ÔÕÒ") . "] ";
                 $bottom .=                  $bottom .=
                         "[" . a({href=>url . "?tour=" . ($Id - 1) . "&answer=1"},                          "[" . a({href=>url . "?tour=$fname." . ($n - 1) . "&answer=1"},
                         "ÐÒÅÄÙÄÕÝÉÊ ÔÕÒ Ó ÏÔ×ÅÔÁÍÉ") . "] " . br;                          "ÐÒÅÄÙÄÕÝÉÊ ÔÕÒ Ó ÏÔ×ÅÔÁÍÉ") . "] " . br;
         }          }
         if (&IsTour($dbh, $Id + 1)) {          if (&IsTour($dbh, $Tour{'ParentId'}, $n + 1)) {
                 $bottom .=                  $bottom .=
                         "[" . a({href=>url . "?tour=" . ($Id + 1) . "&answer=0"},                          "[" . a({href=>url . "?tour=$fname." . ($n + 1) . "&answer=0"},
                         "ÓÌÅÄÕÀÝÉÊ ÔÕÒ") . "] ";                          "ÓÌÅÄÕÀÝÉÊ ÔÕÒ") . "] ";
                 $bottom .=                  $bottom .=
                         "[" . a({href=>url . "?tour=" . ($Id + 1) . "&answer=1"},                          "[" . a({href=>url . "?tour=$fname." . ($n + 1) . "&answer=1"},
                         "ÓÌÅÄÕÀÝÉÊ ÔÕÒ Ó ÏÔ×ÅÔÁÍÉ") . "] ";                          "ÓÌÅÄÕÀÝÉÊ ÔÕÒ Ó ÏÔ×ÅÔÁÍÉ") . "] ";
         }          }
   
Line 723  sub PrintField { Line 1014  sub PrintField {
 sub PrintQuestion {  sub PrintQuestion {
         my ($dbh, $Id, $answer, $qnum, $title, $text) = @_;          my ($dbh, $Id, $answer, $qnum, $title, $text) = @_;
         my ($output, $titles) = ('', '');          my ($output, $titles) = ('', '');
   
         my (%Question) = &GetQuestion($dbh, $Id);          my (%Question) = &GetQuestion($dbh, $Id);
         if (!$text) {          if (!$text) {
                 $output .= hr({width=>"50%"});                  $output .= hr({width=>"50%"});
                 if ($title) {                  if ($title) {
                         my (%Tour) = GetTournament($dbh, $Question{'ParentId'});                          my (%Tour) = GetTournament($dbh, $Question{'ParentId'});
                         my (%Tournament) = GetTournament($dbh, $Tour{'ParentId'});                          my (%Tournament) = GetTournament($dbh, $Tour{'ParentId'});
                           my $fname=$Tournament{'FileName'};
                           $fname=~s/\.txt//;
                         $titles .=                          $titles .=
                                 dd(img({src=>"/icons/folder.open.gif"}) . " " .                                  dd(img({src=>"/icons/folder.open.gif"}) . " " .
                                          a({href=>url . "?tour=$Tournament{'Id'}"}, $Tournament{'Title'}, $Tournament{'PlayedAt'}));                                           a({href=>url . "?tour=$fname"}, $Tournament{'Title'}, $Tournament{'PlayedAt'}));
                         $titles .=                          $titles .=
                                 dl(dd(img({src=>"/icons/folder.open.gif"}) . " " .                                  dl(dd(img({src=>"/icons/folder.open.gif"}) . " " .
                                         a({href=>url . "?tour=$Tour{'Id'}"}, $Tour{'Title'})));                                          a({href=>url . "?tour=$fname.$Tour{Number}"}, $Tour{'Title'})));
                 }                  }
                 $output .= dl(strong($titles));                  $output .= dl(strong($titles));
         }          }
Line 753  sub PrintQuestion { Line 1045  sub PrintQuestion {
                 if ($Question{'Authors'}) {                  if ($Question{'Authors'}) {
                       my $q=$Question{'Authors'};                        my $q=$Question{'Authors'};
   
                       my $sth=$dbh->prepare("select Authors.Id,Name, Surname, Nicks from Authors, A2Q  #                     my $sth=$dbh->prepare("select Authors.Id,Name, Surname, Nicks from Authors, A2Q
                                  where Authors.Id=Author And Question=$Id");  #                                 where Authors.Id=Author And Question=$Id");
                       $sth->execute;  #                      $sth->execute;
                       my ($AuthorId,$Name, $Surname,$other,$Nicks);  #                      my ($AuthorId,$Name, $Surname,$other,$Nicks);
   
                       while ((($AuthorId,$Name, $Surname,$Nicks)=$sth->fetchrow),$AuthorId)  #                      while ((($AuthorId,$Name, $Surname,$Nicks)=$sth->fetchrow),$AuthorId)
                       {  #                      {
                         my ($firstletter)=$Name=~m/^./g;  #                        my ($firstletter)=$Name=~m/^./g;
 #                       $other.=a({href=>url."?qofauthor=$AuthorId"},"$Name $Surname").". ";  #                         $Name=~s/\./\\\./g;
                          $Name=~s/\./\\\./g;  #                          my $sha="(?:$Name\\s+$Surname)|(?:$Surname\\s+$Name)|(?:$firstletter\\.\\s*$Surname)|(?:$Surname\\s+$firstletter\\.)|(?:$Surname)|(?:$Name)";
                           my $sha="(?:$Name\\s+$Surname)|(?:$Surname\\s+$Name)|(?:$firstletter\\.\\s*$Surname)|(?:$Surname\\s+$firstletter\\.)|(?:$Surname)|(?:$Name)";  #                          if ($Nicks)
                           if ($Nicks)  #                          {
                           {  #                            $Nicks=~s/^\|//;
                             $Nicks=~s/^\|//;  #                            foreach (split /\|/, $Nicks)
                             foreach (split /\|/, $Nicks)  #                            {
                             {  #                              s/\s+/ /g;
                               s/\s+/ /g;  #                              s/\s+$//;
                               s/\s+$//;  #                              s/ /\\s+/g;
                               s/ /\\s+/g;  #                              s/\./\\\./g;
                               s/\./\\\./g;  #                              if (s/>$//) {$sha="$sha|(?:$_)"}
                               if (s/>$//) {$sha="$sha|(?:$_)"}  #                              else        {$sha="(?:$_)|$sha"}
                               else        {$sha="(?:$_)|$sha"}  #                            }
                             }  #                          }
                           }  #                          $q=~s/($sha)/a({href=>url."?qofauthor=$AuthorId"},$1)/ei;
                           $q=~s/($sha)/a({href=>url."?qofauthor=$AuthorId"},$1)/ei;  #                      }
                       }  
   
                         $output .= &PrintField("á×ÔÏÒ(Ù)", $q, $text);                          $output .= &PrintField("á×ÔÏÒ(Ù)", $q, $text);
   
Line 793  sub PrintQuestion { Line 1084  sub PrintQuestion {
                         $output .= &PrintField("ëÏÍÍÅÎÔÁÒÉÉ", $Question{'Comments'}, $text);                          $output .= &PrintField("ëÏÍÍÅÎÔÁÒÉÉ", $Question{'Comments'}, $text);
                 }                  }
         }          }
   #       $output.=br.a({href=> url."?metod=proxy&qid=$Id"}, 'âÌÉÚËÉÅ ×ÏÐÒÏÓÙ').p
   #             if $answer;
         return $output;          return $output;
 }  }
   
Line 801  sub GetQNum { Line 1094  sub GetQNum {
         my ($dbh) = @_;          my ($dbh) = @_;
         my ($sth) = $dbh->prepare("SELECT COUNT(*) FROM Questions");          my ($sth) = $dbh->prepare("SELECT COUNT(*) FROM Questions");
         $sth->execute;          $sth->execute;
         return ($sth->fetchrow)[0];          my $tmp=($sth->fetchrow)[0];
           $sth->finish;
           return $tmp;
 }  }
 sub GetMaxQId {  sub GetMaxQId {
         my ($dbh) = @_;          my ($dbh) = @_;
         my ($sth) = $dbh->prepare("SELECT MAX(QuestionId) FROM Questions");          my ($sth) = $dbh->prepare("SELECT MAX(QuestionId) FROM Questions");
         $sth->execute;          $sth->execute;
         return ($sth->fetchrow)[0];          my $tmp=($sth->fetchrow)[0];
           $sth->finish;
           return $tmp;
   
 }  }
   
 # Returns Id's of 12 random questions  # Returns Id's of 12 random questions
Line 818  sub Get12Random { Line 1116  sub Get12Random {
         my (%chosen);          my (%chosen);
         srand;          srand;
   
    for ($i = 0; $i < $num; $i++) {          my $where=0;
        do {          my $r=int (rand(10000));
            $q = int(rand($qnum));  
            $sth = $dbh->prepare("SELECT Type FROM Questions          foreach (split '', $type)
                                 WHERE QuestionId=$q");          {
            $sth->execute;             $where.= " OR (Type ='$_') OR (Type ='$_ä') ";
            $t = ($sth->fetchrow)[0];          }
        } until !$chosen{$q} && $t && $type =~ /[$t]/;          $where.= "OR (Type='þâ')" if ($type=~/þ|â/);
        $chosen{$q} = 'y';  
        push @questions, $q;     $q="select QuestionId, QuestionId/$r-floor(QuestionId/$r) as val 
          from Questions where $where order by val limit $num";
   
   # ëÏÇÄÁ ÎÁ ËÕÌÉÞËÁÈ ÐÏÑ×ÉÔÓÑ mysql >=3.23 ÎÁÄÏ ÚÁÍÅÎÉÔØ ÎÁ order by rand();
   
      $sth=$dbh->prepare($q);
      $sth->execute;
      while (($i)=$sth->fetchrow)
      {
         push @questions,$i;
    }     }
      $sth->finish;
       for ($i=@questions; --$i;){ 
          my $j=rand ($i+1); 
          @questions[$i,$j]=@questions[$j,$i] unless $i==$j;
       }
    return @questions;     return @questions;
 }  }
   
Line 867  sub PrintArchive { Line 1179  sub PrintArchive {
 }  }
   
 sub PrintAll {  sub PrintAll {
         my ($dbh, $Id) = @_;          my ($dbh, $Id,$fname) = @_;
         my ($output, $list, $i);          my ($output, $list, $i);
   
         my (%Tournament) = &GetTournament($dbh, $Id);          my (%Tournament) = &GetTournament($dbh, $Id);
Line 879  sub PrintAll { Line 1191  sub PrintAll {
         if ($Id == 0) {          if ($Id == 0) {
                 $output = h3("÷ÓÅ ÔÕÒÎÉÒÙ");                  $output = h3("÷ÓÅ ÔÕÒÎÉÒÙ");
         } else {          } else {
                    my $textid;
                    if ($textid=$Tournament{'FileName'})
                    {
                      $textid=~s/\.txt//;
                    }
                    elsif ($textid=$Tournament{'Number'})
                    {
                         $fname=~s/\.txt//;
                         $textid="$fname.$textid";
                    }
                    else {$textid=$Tournament{'Id'}};
   
   
                 $output .= dd(img({src=>"/icons/folder.gif", alt=>"[*]"}) .                  $output .= dd(img({src=>"/icons/folder.gif", alt=>"[*]"}) .
       " " . a({href=>url . "?tour=$Tournament{'Id'}&answer=0"},        " " . a({href=>url . "?tour=$textid&answer=0"},
       $Tournament{'Title'}) ." " . $Tournament{'PlayedAt'} . " $New");        $Tournament{'Title'}) ." " . $Tournament{'PlayedAt'} . " $New");
         }          }
         if ($Id == 0 or $Tournament{'Type'} =~ /ç/) {          if ($Id == 0 or $Tournament{'Type'} =~ /ç/ or $Tournament{'Type'} eq '') {
                 for ($i = 0; $i <= $#Tours; $i++) {                  for ($i = 0; $i <= $#Tours; $i++) {
                         $list .= &PrintAll($dbh, $Tours[$i]);                          $list .= &PrintAll($dbh, $Tours[$i],$Tournament{'FileName'});
                 }                  }
                 $output .= dl($list);                  $output .= dl($list);
         }          }
Line 917  sub PrintDates { Line 1242  sub PrintDates {
       " " . a({href=>url . "?tour=$Tournament{'Id'}&answer=0"},        " " . a({href=>url . "?tour=$Tournament{'Id'}&answer=0"},
       $Tournament{'Title'}, $Tournament{'PlayedAt'}));        $Tournament{'Title'}, $Tournament{'PlayedAt'}));
         }          }
           $sth->finish;
         $output .= dl($list);          $output .= dl($list);
         return $output;          return $output;
 }  }
   
 sub PrintQOfAuthor  sub PrintQOfAuthor
 {  {
   
     my ($dbh, $id) = @_;      my ($dbh, $id) = @_;
    $id=$dbh->quote($id);     $id=$dbh->quote($id);
     my $sth =  $dbh->prepare("SELECT  Name, Surname FROM Authors WHERE Id=$id");      my $sth =  $dbh->prepare("SELECT  Name, Surname FROM Authors WHERE Id=$id");
Line 935  sub PrintQOfAuthor Line 1262  sub PrintQOfAuthor
     my @Questions;      my @Questions;
     while (($q)=$sth->fetchrow,$q)      while (($q)=$sth->fetchrow,$q)
      {push @Questions,$q unless $forbidden{$q}}       {push @Questions,$q unless $forbidden{$q}}
       $sth->finish;
   
     my ($output, $i, $suffix, $hits) = ('', 0, '', $#Questions + 1);      my ($output, $i, $suffix, $hits) = ('', 0, '', $#Questions + 1);
   
Line 945  sub PrintQOfAuthor Line 1273  sub PrintQOfAuthor
         } else {          } else {
                 $suffix = 'Ñ';                  $suffix = 'Ñ';
         }          }
           print h2("ðÏÉÓË × ÂÁÚÅ ×ÏÐÒÏÓÏ×");
           print printform;
         print p({align=>"center"}, "á×ÔÏÒ ".strong("$name $surname. ")          print p({align=>"center"}, "á×ÔÏÒ ".strong("$name $surname. ")
         . " : $hits ÐÏÐÁÄÁÎÉ$suffix.");          . " : $hits ÐÏÐÁÄÁÎÉ$suffix.");
   
   
         for ($i = 0; $i <= $#Questions; $i++) {  #       for ($i = 0; $i <= $#Questions; $i++) {
                 $output = &PrintQuestion($dbh, $Questions[$i], 1, $i + 1, 1);  #               $output = &PrintQuestion($dbh, $Questions[$i], 1, $i + 1, 1);
                 print $output;  #               print $output;
         }  #       }
           PrintList($dbh,\@Questions,'gdfgdfgdfgdfg');
 }  }
   
   
Line 991  a({href=>url."?authors=surname"},"ÆÁÍÉÌÉ Line 1321  a({href=>url."?authors=surname"},"ÆÁÍÉÌÉ
   
      my $ar=$sth->fetchall_arrayref;       my $ar=$sth->fetchall_arrayref;
   
        $sth->finish;
   
   
     foreach my $arr(@$ar)      foreach my $arr(@$ar)
Line 1006  a({href=>url."?authors=surname"},"ÆÁÍÉÌÉ Line 1337  a({href=>url."?authors=surname"},"ÆÁÍÉÌÉ
            }             }
      }       }
      $output.="</TABLE>";       $output.="</TABLE>";
        $sth->finish;
      return $output;       return $output;
 }  }
   
Line 1034  MAIN: Line 1366  MAIN:
                 print &Include_virtual("../dimrub/db/reklama.html");                  print &Include_virtual("../dimrub/db/reklama.html");
         }          }
   
   
 if ($^O =~ /win/i) {  if ($^O =~ /win/i) {
         $thislocale = "Russian_Russia.20866";          $thislocale = "Russian_Russia.20866";
 } else {  } else {
Line 1061  if ((uc 'Á') ne 'á') {print "Koi8-r loca Line 1394  if ((uc 'Á') ne 'á') {print "Koi8-r loca
   
         if (param('rand')) {          if (param('rand')) {
                 my ($type, $qnum) = ('', 12);                  my ($type, $qnum) = ('', 12);
                 $type .= 'â' if (param('brain'));                  $type.=$TypeName{$_} foreach param('type');
                 $type .= 'þ' if (param('chgk'));  #               $type .= 'â' if (param('brain'));
   #               $type .= 'þ' if (param('chgk'));
                 $qnum = param('qnum') if (param('qnum') =~ /^\d+$/);                  $qnum = param('qnum') if (param('qnum') =~ /^\d+$/);
                 $qnum = 0 if (!$type);                  $qnum = 0 if (!$type);
                 if (param('email') && -x $SENDMAIL &&                  my $Email;
                 open(F, "| $SENDMAIL -t -n")) {                  if (($Email=param('email')) && -x $SENDMAIL &&
                         my ($Email) = param('email');                  open(F, "| $SENDMAIL $Email")) {
                         my ($mime_type) = $text ? "plain" : "html";                          my ($mime_type) = $text ? "plain" : "html";
                         print F <<EOT;                          print F <<EOT;
 To: $Email  To: $Email
 From: olegstemanov\@mail.ru  From: olegstepanov\@mail.ru
 Subject: Sluchajnij Paket Voprosov "Chto? Gde? Kogda?"  Subject: Sluchajnij Paket Voprosov "Chto? Gde? Kogda?"
 MIME-Version: 1.0  MIME-Version: 1.0
 Content-type: text/$mime_type; charset="koi8-r"  Content-type: text/$mime_type; charset="koi8-r"
Line 1079  Content-type: text/$mime_type; charset=" Line 1413  Content-type: text/$mime_type; charset="
 EOT  EOT
                         print F &PrintRandom($dbh, $type, $qnum, $text);                          print F &PrintRandom($dbh, $type, $qnum, $text);
                         close F;                          close F;
                         print "ðÁËÅÔ ÓÌÕÞÁÊÎÏ ×ÙÂÒÁÎÎÙÈ ×ÏÐÒÏÓÏ× ÐÏÓÌÁÎ. îÁÖÍÉÔÅ                          print "ðÁËÅÔ ÓÌÕÞÁÊÎÏ ×ÙÂÒÁÎÎÙÈ ×ÏÐÒÏÓÏ× ÐÏÓÌÁÎ ÐÏ ÁÄÒÅÓÕ $Email. îÁÖÍÉÔÅ
                         ÎÁ <B>Reload</B> ÄÌÑ ÐÏÌÕÞÅÎÉÑ ÅÝÅ ÏÄÎÏÇÏ ÐÁËÅÔÁ";                          ÎÁ <B>Reload</B> ÄÌÑ ÐÏÌÕÞÅÎÉÑ ÅÝÅ ÏÄÎÏÇÏ ÐÁËÅÔÁ";
                 } else {                  } else {
                         print &PrintRandom($dbh, $type, $qnum, $text);                          print &PrintRandom($dbh, $type, $qnum, $text);
Line 1091  EOT Line 1425  EOT
           elsif (param('qofauthor')){            elsif (param('qofauthor')){
                 &PrintQOfAuthor($dbh,param('qofauthor'));                  &PrintQOfAuthor($dbh,param('qofauthor'));
         }          }
           elsif (param('sstr')) {            elsif (param('sstr')||param('was')) {
                 &PrintSearch($dbh, param('sstr'), param('metod'));                  &PrintSearch($dbh, param('sstr'), param('metod'),param('was'));
         } elsif (param('all')) {                  $dbh->do("delete from lastqueries where
                         (TO_DAYS(NOW()) - TO_DAYS(t) >= 2) OR
                              (time_to_sec(now())-time_to_sec(t) >3600)")
           } 
             elsif (param('qid')) {
                 my $qid=param('qid');
                 my $query="SELECT Question, Answer from Questions where QuestionId=$qid";
   print $query if $printqueries;
                 my $sth=$dbh->prepare($query);
                 $sth->execute;
                 my $sstr= join ' ',$sth->fetchrow;
                 $sth->finish;
                 $searchin{'Question'}=1;
                 $searchin{'Answer'}=1;
         $sstr=~tr/£³/Åå/;
   $sstr=~s/[^ÊÃÕËÅÎÇÛÝÚÈßÆÙ×ÁÐÒÏÌÄÖÜÑÞÓÍÉÔØÂÀêãõëåîçûýúèÿæù÷áðòïìäöüñþóíéôøâàa-zA-Z0-9]/ /gi;
   #              print &PrintQuestion($dbh,$qid, 1, '!');
                 &PrintSearch($dbh, $sstr, 'proxy');
           }
   
             elsif (param('all')) {
                 print &PrintAll($dbh, 0);                  print &PrintAll($dbh, 0);
         } elsif (param('from_year') && param('to_year')) {          } elsif (param('from_year') && param('to_year')) {
                 print &PrintDates($dbh);                  print &PrintDates($dbh);
Line 1122  EOT Line 1476  EOT
   
         } else {          } else {
                 $tour = (param('tour')) ? param('tour') : 0;                  $tour = (param('tour')) ? param('tour') : 0;
                   my $sth;
                 if ($tour !~ /^[0-9]*$/) {                  if ($tour !~ /^[0-9]*$/) {
                         my ($sth) = $dbh->prepare("SELECT Id FROM Tournaments                      if ($tour=~/\./)
                         WHERE FileName = '$tour.txt'");                      {
                         $sth->execute;                          my ($fname,$n)= split /\./ , $tour;
                         $tour = ($sth->fetchrow)[0];  
                           $sth = $dbh->prepare(
                          "SELECT t2.Id FROM Tournaments as t1, 
                           Tournaments as t2 
                           WHERE t1.FileName = '$fname.txt'
                           AND t1.Id=t2.ParentId AND t2.Number=$n");
                       }   
                       else 
                           {
                             $sth = $dbh->prepare("SELECT Id FROM Tournaments
                                        WHERE FileName = '$tour.txt'");
                           }
                       $sth->execute;
                       $tour = ($sth->fetchrow)[0];
                       $sth->finish;
                 }                  }
                 print &PrintTournament($dbh, $tour, param('answer'));                  print &PrintTournament($dbh, $tour, param('answer'));
         }          }

Removed from v.1.39  
changed lines
  Added in v.1.57


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>