/[wopi]/make_poll.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /make_poll.pl

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

revision 1.1 by dpavlin, Tue Apr 8 17:53:46 2003 UTC revision 1.9 by dpavlin, Wed Sep 24 20:35:48 2003 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2  #  #
3    # Dobrica Pavlinusic <dpavlin@rot13.org>
4  use XML::Parser;  #
5    # Originally made for proof. during April 2001; later released under GPL v2
6    #
7    # 2003-04-dd general cleanup in preparation of release
8    
9  use strict;  use strict;
10    
11    use XML::Parser;
12    use common;
13    
14  $|=1;  $|=1;
15    
16  my $Usage =<<'End_of_Usage;';  my $Usage =<<'End_of_Usage;';
17  slides [-h] [-d dir] [-mode mode] slide-doc  I will write usage information here. I promise!
   
 Convert a slideshow document into html, with a separate html document  
 for each slide and an index to all of them.  
   
         -h      Print this message and exit  
   
         -w      warn about unrecognized tags  
   
         -d      Use dir as directory into which to write html pages. Defaults  
                 to basename of supplied doc file.  
   
         -mode   Output mode. Choices are html, html-style. Default is  
                 html-style.  
   
18  End_of_Usage;  End_of_Usage;
19    
20  my @Modes = qw(object pass skip);  my @Modes = qw(object pass skip);
21    
22  my $dir;  my $poll;
23  my $dowarn = 1;  my $dowarn = 1;
 my $dostyle = 0;  
24    
25  my $pitanje_nr = 0;             # curr. pitanje  my $pitanje_nr = 0;             # curr. pitanje
26  my $pitanje_tag = "";           # originalni oblik broja pitanja  my $pitanje_tag = "";           # originalni oblik broja pitanja
# Line 62  my $prefix="wopi_"; Line 53  my $prefix="wopi_";
53  # this is usename in database  # this is usename in database
54  my $db_user="dpavlin";  my $db_user="dpavlin";
55    
56  #------------------------------------------------------------------  # This option allows users to fill poll without using invitation URL.
57    # That also means it's unpossible for them to return to exiting poll
58  my $html_header.=<<'End_of_header;';  # because they don't have thair own unique ID. Howver, it enables simple
59  <html>  # polls to be conducted by just publishing URL to them.
60  <head>  my $without_invitation=0;
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
         <title>proof.anketa</title><link rel="STYLESHEET" type="text/css" href="../stil.css">  
 </head>  
   
 <body background="../beki.gif" bgcolor="White" leftmargin=0 topmargin=0 marginwidth="0" marginheight="0">  
   
 <table width="460" cellspacing="0" cellpadding="0" border="0">  
 <tr>  
     <td colspan="2"><img src="head.php" width=460 height=72 alt="" border="0"><br><br></td>  
 </tr>  
 <tr>  
     <td><img src="../klir.gif" width=20 height=1 alt="" border="0"><br>  
         </td>  
     <td><img src="../klir.gif" width=332 height=1 alt="" border="0"><br>        </td>  
 </tr>  
 <form method=post action="##NEXTPAGE##">  
 <input type=hidden name=a value="<?= $a ?>">  
 <input type=hidden name=id value="<?= $id ?>">  
   
 <tr>  
     <td> </td>  
     <td>  
 End_of_header;  
61    
62  #------------------------------------------------------------------  #------------------------------------------------------------------
63    
64  my $html_separator=<<'End_of_separator;';  sub suck_file {
65  <tr>          my $file = shift @_;
66      <td></td>          open(H,$file) || die "can't open '$file': $!";
67      <td bgcolor="#006699"><img src="../klir.gif" width=1 height=1 alt="" border="0"><br></td>          my $content;
68  </tr>          while (<H>) { $content .= $_; } ;
69  End_of_separator;          close(H);
70            return $content;
71  #------------------------------------------------------------------  }
72    
73  my $html_footer=<<'End_of_footer;';  my $html_header=suck_file("header.html");
74  </td>  my $html_separator=suck_file("separator.html");
75  </tr>  my $html_next=suck_file("next.html");
76    my $html_footer=suck_file("footer.html");
 <tr>  
     <td> </td>  
     <td align="right"><br>  
 <input type=submit name="update" value="dalje.">&nbsp;&nbsp;  
 <br><br><br>  
 </td>  
 </tr>  
 </table>  
   
 </body>  
 </html>  
 End_of_footer;  
77    
78  #------------------------------------------------------------------  #------------------------------------------------------------------
79    
80  sub php_header {  sub php_header {
81  my ($page_nr,@sql_update) = @_;  my ($page_nr,@sql_update) = @_;
82  my $out='<?  my $out='<?php
83          include("common.inc");          include_once("common.php");
84          if (isset($update)) {          if (isset($update)) {
85                  $member_id=id_decode($a);                  $member_id=id_decode($a);
86                  ';                  ';
87  $out.=$php_addon[$page_nr-2] if (defined $php_addon[$page_nr-2]);  $out.=$php_addon[$page_nr-2] if (defined $php_addon[$page_nr-2]);
88  $out.='  $out.='
89                  $sql="update '.$dir.' set '.join(",\n",@sql_update).',                  $sql="update '.$poll.' set '.join(",\n",@sql_update).',
90                          do_stranice=\'$PHP_SELF\'                          do_stranice=\'$PHP_SELF\'
91                          where id=$id";                          where id=$id";
92  #               print "<pre>$sql</pre>";  #               print "<pre>$sql</pre>";
93                  $result=pg_Exec($conn,fix_sql($sql));                  $result=pg_Exec($conn,fix_sql($sql));
94          } elseif($do_stranice != $PHP_SELF) {          } elseif($do_stranice != $PHP_SELF && isset($do_uri) && isset($a)) {
95                  Header("Location: $do_uri?a=$a");                  Header("Location: $do_uri?a=$a");
96                  exit;                  exit;
97          }          }
# Line 146  return $out; Line 102  return $out;
102  #------------------------------------------------------------------  #------------------------------------------------------------------
103    
104  # first, define some constants  # first, define some constants
105  my $common_inc='  my $common_php = suck_file("common.php");
 $PREFIX="'.$prefix.'";  
 $DB_USER="'.$db_user.'";  
 $MEMBERS_DB="'.$prefix.'_members";  
 ';  
   
 # then append rest of text  
   
 $common_inc.=<<'End_of_common;';  
   
 $conn = pg_connect("dbname=$PREFIX$db user=$DB_USER");  
 $result=pg_Exec($conn,"set datestyle = 'german'");  
   
 set_magic_quotes_runtime(1);  
   
 // return number of true answers  
   
 function fix_checkboxes($var,$nr) {  
         for($i=1; $i<=$nr; $i++) {  
                 if (isset($GLOBALS[$var."_".$i])) {  
                         $GLOBALS[$var."_".$i]="true";  
                         $nr++;  
                 } else {  
                         $GLOBALS[$var."_".$i]="false";  
                 }  
         }  
         return $nr;  
   
 }  
   
 function checked($var) {  
         if ($var == "true" || $var == "t") return 1;  
         return 0;  
 }  
   
 function id_encode($id) {  
         return md5($id).strtr($id,"1234567890","abcdef1234");  
 }  
   
 function id_decode($eid) {  
         $id=substr(strtr($eid,"abcdef1234","1234567890"),32);  
         if (md5($id) == substr($eid,0,32)) {  
                 return $id;  
         } else {  
                 return 0;  
         }  
 }  
   
 function fix_sql($sql) {  
         $sql=ereg_replace(",([ \t\n\r]*),",",null\\1,",$sql);  
         $sql=ereg_replace(",([ \t\n\r]*),",",null\\1,",$sql);  
         $sql=ereg_replace(",([ \t\n\r]*),",",null\\1,",$sql);  
         $sql=ereg_replace("=([ \t\n\r,]+)","=null\\1",$sql);  
         $sql=ereg_replace("=([ \t\n\r,]*)$","=null\\1",$sql);  
         return $sql;  
 }  
   
 function get_answer($p) {  
         global $conn,$id,$db;  
         $result = pg_Exec ($conn,"select $p from $db where id=$id");  
         if ($result && pg_numrows($result) > 0) {  
                 $row=pg_fetch_row($result,0);  
                 if (isset($row[0]) && $row[0] != "") {  
                         $GLOBALS[$p]=$row[0];  
                         return $row[0];  
                 }  
         }  
         $GLOBALS[$p]=0;  
         return 0;  
 }  
   
 function get_answers($p) {  
         global $conn,$id,$db;  
         $result = pg_Exec ($conn,"select $p from $db where id=$id");  
         if ($result && pg_numrows($result) > 0) {  
                 $row=pg_fetch_array($result,0);  
                 $pit=split(",",$p);  
                 while(list($key,$val) = each($row)) {  
                         $GLOBALS[$key]=$val;  
                 }  
         }  
 }  
 function get_member($pitanja,$uvjet) {  
         global $member_id;  
         $p_conn = pg_connect("dbname=$MEMBERS_DB user=$DB_USER");  
         if ($uvjet == "") $uvjet="true";  
         $result=pg_Exec($p_conn,"select id,$pitanja from member  
                 where $uvjet and id = $member_id");  
         $numrows=pg_numrows($result);  
         if ($numrows) {  
                 $row=pg_fetch_array($result,0);  
                 $pit=split(",",$pitanja);  
                 while(list($key,$val) = each($row)) {  
                         $GLOBALS["member_".$key]=$val;  
                 }  
         }  
 }  
   
 if (isset($a) && !isset($id) && !isset($pid)) {  
         global $conn,$db,$do_stranice;  
         $pid=id_decode($a);  
         $result = pg_Exec ($conn,"select id,do_stranice from $db where member_id=$pid");  
         if ($result && pg_numrows($result) > 0) {  
                 $row=pg_fetch_array($result,0);  
                 $id=$row[id];  
                 $do_stranice=$row[do_stranice];  
                 $do_uri="http://".$SERVER_NAME.":".$SERVER_PORT.$row[do_stranice];  
         }  
 }  
   
 End_of_common;  
106    
107  #------------------------------------------------------------------  #------------------------------------------------------------------
108    
109  my $head_php.=<<'End_of_head;';  my $head_php=suck_file("head.php");
   
         Header("Content-type: image/gif");  
         header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past  
         header ("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); // always modified  
         header ("Cache-Control: no-cache, must-revalidate");    // HTTP/1.1  
         header ("Pragma: no-cache");                            // HTTP/1.0  
         $string=implode($argv," ");  
         $im = imagecreatefromgif("head.gif");  
         $red = ImageColorAllocate($im, 255, 0, 0);  
         $black = ImageColorAllocate($im, 0, 0, 0);  
         $px = (imagesx($im)-7.5*strlen($string))/2;  
         if (! isset($pcnt)) {  
                 $pcnt=floor(substr(basename($HTTP_REFERER),0,2)/$max_page*100);  
         }  
         ImageTTFText($im, 6, 0, 10, 65, $black, dirname($PATH_TRANSLATED)."/head.ttf", "Ispunili ste ".sprintf("%02d",$pcnt)."% ankete");  
         $w=80;  
         ImageRectangle($im,149,60,151+$w,66,$black);  
         ImageFilledRectangle($im,150,61,150+floor($pcnt*$w/100),65,$red);  
         ImageGif($im);  
         ImageDestroy($im);  
   
 End_of_head;  
110    
111  #------------------------------------------------------------------  #------------------------------------------------------------------
112    
113  my $html_kraj=<<'End_of_kraj;';  my $html_kraj=suck_file("thanks.html");
 <html>  
 <head>  
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">  
         <title>wopi.poll</title><link rel="STYLESHEET" type="text/css" href="../stil.css">  
 </head>  
   
 <body background="../beki.gif" bgcolor="White" leftmargin=0 topmargin=0 marginwidth="0" marginheight="0">  
   
 <table width="460" cellspacing="0" cellpadding="0" border="0">  
 <tr>  
     <td colspan="2"><img src="head.php?pcnt=100" width=460 height=72 alt="" border="0"><br><br></td>  
 </tr>  
 <tr>  
     <td><img src="../klir.gif" width=20 height=1 alt="" border="0"><br>  
         </td>  
     <td><img src="../klir.gif" width=332 height=1 alt="" border="0"><br>        </td>  
 </tr>  
     <td><img src="../klir.gif" width=20 height=1 alt="" border="0"><br>  
         </td>  
     <td><img src="../klir.gif" width=332 height=1 alt="" border="0"><br>        </td>  
 </tr>  
 <tr>  
     <td> </td>  
     <td><br>  
 <p><b>  
 Hvala vam na sudjelovanju u anketi!  
 </b></p>  
 <br><br>  
 Zahvaljujemo se na va¹em vremenu. Nadamo se da æete i vi biti  
 meðu sretnim dobitnicima.  
 <br>  
 <br>  
 Do slijedeæe ankete i nagradne igre srdaèno vas pozdravljamo.  
 <br>  
 <br>Hvala.  
 <br>  
 <br>  
 <a href="http://www.proof.hr"><tt>proof.</tt></a>  
 </td>  
 </tr>  
 <tr>  
     <td></td>  
     <td bgcolor="#006699"><img src="../klir.gif" width=1 height=1 alt="" border="0"><br></td>  
 </tr>  
 <tr>  
     <td align="right" valign="top"></td>  
     <td> </td>  
     <td align="right"><br>  
 <br>  
 </td>  
 </tr>  
 </table>  
   
 </body>  
 </html>  
 End_of_kraj;  
114    
115  #------------------------------------------------------------------  #------------------------------------------------------------------
116    
# Line 353  while (defined($ARGV[0]) and $ARGV[0] =~ Line 121  while (defined($ARGV[0]) and $ARGV[0] =~
121      print $Usage;      print $Usage;
122      exit;      exit;
123    }    }
   elsif ($opt eq '-d') {  
     $dir = shift;  
   }  
   elsif ($opt eq '-w') {  
     $dowarn = 1;  
   }  
   elsif ($opt eq '-mode') {  
     my $marg = shift;  
     if ($marg eq 'html') {  
       $dostyle = 0;  
     }  
     else {  
       die "Unrecognized mode: $marg\n$Usage";  
     }  
   }  
   else {  
     die "Unrecognized option: $opt\n$Usage";  
   }  
124  }  # End of option processing  }  # End of option processing
125    
126  my $docfile = shift;  my $xmlfile = shift;
127    
128  die "No docfile provided:\n$Usage" unless defined $docfile;  die "No poll xml file provided!\n$Usage" unless defined $xmlfile;
129    
130  die "Can't read $docfile" unless -r $docfile;  die "Can't read $xmlfile" unless -r $xmlfile;
131    
132  if (defined $dir) {  if (defined $poll) {
133    die "$dir isn't a directory" unless -d $dir;    die "$poll isn't a directory" unless -d $poll;
134  }  }
135  else {  else {
136    $docfile =~ m!([^/.]+)(?:\.[^/.]*)?$!;    $xmlfile =~ m!([^/.]+)(?:\.[^/.]*)?$!;
137    $dir = $1;    $poll = $1;
138    if (-e $dir) {    if (-e $poll) {
139      die "$dir exists but isn't a directory"      die "$poll exists but isn't a directory"
140        unless -d $dir;        unless -d $poll;
141    }    }
142    else {    else {
143      mkdir $dir, 0755;      mkdir $poll, 0755;
144    }    }
145  }  }
146    
147  my $in_slideshow = 0;  my $in_poll = 0;
148  my $after_head = 0;  my $after_head = 0;
149    
150  my $Mode = 0;  my $Mode = 0;
# Line 405  my $Markedup_Text; Line 155  my $Markedup_Text;
155  my $Object;  my $Object;
156  my @Ostack = ();  my @Ostack = ();
157    
158  my $intext = 0;  #my $intext = 0;
159  my $closure;  my $closure;
160  my @closure_stack = ();  my @closure_stack = ();
161    
162  my $style_link = '';  #my $style_link = '';
163    
164  my $index = 'index.html';  #my $index = 'index.html';
165  my @slidetitle;  #my @slidetitle;
166  my $body;  my $body;
167  my $inlist = 0;  #my $inlist = 0;
168    
169  my @Titles;  #my @Titles;
170    
171  my $header;  my $header;
172    
 my $prolog = "<html><head>\n";  
 $prolog .= "<!-- Generated by $0 on " . gmtime() . " GMT -->\n";  
   
173  my $page_number = 0;  my $page_number = 0;
174    
175  my $p = new XML::Parser(ErrorContext => 3,  my $p = new XML::Parser(ErrorContext => 3,
176                          Handlers => {Start => \&starthndl,                          Handlers => {Start => \&starthndl,
177                                       End   => \&endhndl,                                       End   => \&endhndl,
178                                       Char  => \&text});                                       Char  => \&text});
179  $p->parsefile($docfile);  $p->parsefile($xmlfile);
180    
181  #----------------------------------------------------------  #----------------------------------------------------------
182    
# Line 437  $p->parsefile($docfile); Line 184  $p->parsefile($docfile);
184    
185  print "p[$page_nr] ";  print "p[$page_nr] ";
186    
187  open(PAGE, ">$dir/$last_fn") or die "Couldn't open $last_fn for writing:\n$!";  open(PAGE, ">$poll/$last_fn") or die "Couldn't open $last_fn for writing:\n$!";
188  print PAGE php_header($page_nr,@prelast_sql_update);  print PAGE php_header($page_nr,@prelast_sql_update);
189  my $next_fn=sprintf("%02d.php",$page_nr);  my $next_fn=sprintf("%02d.php",$page_nr);
190  $last_page=~s/##NEXTPAGE##/$next_fn/;  $last_page=~s/##NEXTPAGE##/$next_fn/;
# Line 445  print PAGE $last_page; Line 192  print PAGE $last_page;
192  close(PAGE);  close(PAGE);
193    
194  $page_nr++;  $page_nr++;
195  open(PAGE, ">$dir/$next_fn") or die "Couldn't open $next_fn for writing:\n$!";  open(PAGE, ">$poll/$next_fn") or die "Couldn't open $next_fn for writing:\n$!";
196  print PAGE php_header($page_nr,@last_sql_update);  print PAGE php_header($page_nr,@last_sql_update);
197  print PAGE $html_kraj;  print PAGE "$html_header $html_kraj $html_footer";
198  close(PAGE);  close(PAGE);
199    
200  # dump sql structure  # dump sql structure
201    
202  open(SQL,">$dir/$dir.sql") || die "$dir.sql: $!";  open(SQL,">$poll/$poll.sql") || die "$poll.sql: $!";
203    print SQL "drop database ".$prefix.$poll.";\n";
204    print SQL "create database ".$prefix.$poll.";\n";
205    print SQL "\\connect ".$prefix.$poll.";\n";
206  print SQL "create table poslani ( member_id int4 not null, unesen timestamp default now() );\n";  print SQL "create table poslani ( member_id int4 not null, unesen timestamp default now() );\n";
207  print SQL "create table $dir (do_stranice text default null, ",join(",\n",@sql_create),");\n";  print SQL "create table $poll (do_stranice text default null, ",join(",\n",@sql_create),");\n";
208  close(SQL);  close(SQL);
209    
210  # dump common.inc  # dump common.php
211    
212  open(PHP,">$dir/common.inc") || die "common.inc: $!";  open(PHP,">$poll/common.php") || die "common.php: $!";
213  print PHP '<? $db="'.$dir.'";';  $common_php =~ s/##DB##/$poll/g;
214  print PHP $common_inc;  my $db_name = $prefix.$poll;
215  print PHP '?>';  $common_php =~ s/##DB_NAME##/$db_name/g;
216    $common_php =~ s/##PREFIX##/$prefix/g;
217    $common_php =~ s/##DB_USER##/$db_user/g;
218    $common_php =~ s/##PREFIX##/$prefix/g;
219    my $members_db = $prefix."members";
220    $common_php =~ s/##MEMBERS_DB##/$members_db/g;
221    $common_php =~ s/##WITHOUT_INVITATION##/$without_invitation/g;
222    
223    print PHP $common_php;
224  close(PHP);  close(PHP);
225    
226  open(PHP,">$dir/head.php") || die "head.php: $!";  open(PHP,">$poll/head.php") || die "head.php: $!";
227  print PHP '<? $max_page="'.($page_nr+1).'";';  my $max_page = $page_nr - 1;
228    $head_php=~ s/##MAXPAGE##/$max_page/;
229    $head_php=~ s/##TEXT##/Ispunili ste %02d%% ankete/;
230  print PHP $head_php;  print PHP $head_php;
 print PHP '?>';  
231  close(PHP);  close(PHP);
232    
233    # 01.php -> index.php
234    rename "$poll/01.php","$poll/index.php" || die "can't rename '$poll/01.php' to index.php";
235    
236  ################  ################
237  ## End of main  ## End of main
238  ################  ################
239    
240  # return unique name of pitanje  # return unique name of pitanje
241  sub new_pit {  sub new_pit {
242          my $out="p".$pitanje_nr.$p_suffix;          my $out="p".$pitanje_nr;
243            $out .= "_".$p_suffix if ($p_suffix);
244          $curr_suffix=$p_suffix;          $curr_suffix=$p_suffix;
245          $p_suffix++;          $p_suffix++;
246          return $out;          return $out;
# Line 488  sub curr_pit { Line 251  sub curr_pit {
251          return "p".$pitanje_nr.$curr_suffix;          return "p".$pitanje_nr.$curr_suffix;
252  }  }
253    
254    #----------------------------------------------------------
255    
256  sub starthndl {  sub starthndl {
257    my ($xp, $el, %atts) = @_;    my ($xp, $el, %atts) = @_;
258    
259  #  return unless ($in_slideshow or $el eq 'slideshow');  #  return unless ($in_poll or $el eq 'slideshow');
260    
261    unless ($in_slideshow) {    unless ($in_poll) {
262      $in_slideshow = $xp->depth + 1;      $in_poll = $xp->depth + 1;
263      return;      return;
264    }    }
265    
# Line 541  sub starthndl { Line 306  sub starthndl {
306    
307    my $new_closure;    my $new_closure;
308    
309    my $subname = "Slideshow::$el";    my $subname = "Poll::$el";
310    
311    if (defined &$subname) {    if (defined &$subname) {
312      no strict 'refs';      no strict 'refs';
# Line 549  sub starthndl { Line 314  sub starthndl {
314      &$subname($xp, $el, \%atts, \$new_closure);      &$subname($xp, $el, \%atts, \$new_closure);
315    }    }
316    else {    else {
317      $body .= $xp->recognized_string;      $body .= x($xp->recognized_string);
318      $new_closure =      $new_closure =
319        sub {        sub {
320          my ($xp, $text) = @_;          my ($xp, $text) = @_;
321                    
322          if (defined $text) {          if (defined $text) {
323            $body .= $text;            $body .= x($text);
324          }          }
325          else {          else {
326            $body .= "</$el>";            $body .= x("</$el>");
327          }          }
328        };        };
329    }    }
# Line 570  sub starthndl { Line 335  sub starthndl {
335  sub endhndl {  sub endhndl {
336    my ($xp, $el) = @_;    my ($xp, $el) = @_;
337    
338    return unless $in_slideshow;    return unless $in_poll;
339    
340    my $lev = $xp->depth;    my $lev = $xp->depth;
341    
342    if ($lev == $in_slideshow - 1) {    if ($lev == $in_poll - 1) {
343      $in_slideshow = 0;      $in_poll = 0;
344      $xp->finish;      $xp->finish;
345      return;      return;
346    }    }
# Line 625  sub endhndl { Line 390  sub endhndl {
390    $closure = pop(@closure_stack);    $closure = pop(@closure_stack);
391  }  # End endhndl  }  # End endhndl
392    
393    #----------------------------------------------------------
394    
395  sub text {  sub text {
396    my ($xp, $data) = @_;    my ($xp, $data) = @_;
397    
398    return unless $in_slideshow;    return unless $in_poll;
399    
400    if ($Mode ) {    if ($Mode ) {
401    
# Line 678  sub sgml_escape { Line 445  sub sgml_escape {
445    $str;    $str;
446  }  # End sgml_escape  }  # End sgml_escape
447    
 sub slidename {  
   my ($num) = @_;  
   
   sprintf("slide%03d.html", $num);  
 }  # End slidename  
448    
449  ################################################################  ################################################################
450    
451  package Slideshow;  package Poll;
452    
453  sub page {  sub page {
454          package main;          package main;
# Line 701  sub page { Line 463  sub page {
463                          print "p[$page_nr] ";                          print "p[$page_nr] ";
464    
465                          if (defined $last_fn) {                          if (defined $last_fn) {
466                                  # 01.php -> index.php                                  open(PAGE, ">$poll/$last_fn") or die "Couldn't open $last_fn for writing:\n$!";
467                                  $last_fn="index.php" if ($last_fn eq "01.php");                                  print PAGE php_header($page_nr,@prelast_sql_update);
                                 open(PAGE, ">$dir/$last_fn") or die "Couldn't open $last_fn for writing:\n$!";  
                                 if ($page_nr == 2) {  
                                         print PAGE '<?  
 include("common.inc");  
 if (isset($do_stranice) && $do_stranice !="") {  
         Header("Location: $do_uri?a=$a");  
         exit;  
 }  
 $member_id=id_decode($a);  
 $sql="insert into '.$dir.' ( http_referer,remote_addr,user_agent, member_id ) values (\'$HTTP_REFERER\',\'$REMOTE_ADDR\',\'$HTTP_USER_AGENT\',$member_id)";  
   
 #       print "<pre>$sql</pre>";  
         $result=pg_Exec($conn,fix_sql($sql));  
         $lastoid=pg_getlastoid($result);  
         $result = pg_Exec($conn,fix_sql("select id from '.$dir.' where oid=$lastoid"));  
         $row=pg_fetch_row($result,0);  
         $id=$row[0];  
 ?>';  
   
                                 } else {  
                                         print PAGE php_header($page_nr,@prelast_sql_update);  
                                 } # last_sql_update  
   
   
468                                  my $next_fn=sprintf("%02d.php",$page_nr);                                  my $next_fn=sprintf("%02d.php",$page_nr);
469                                  $last_page=~s/##NEXTPAGE##/$next_fn/;                                  $last_page=~s/##NEXTPAGE##/$next_fn/;
470                                  print PAGE $last_page;                                  print PAGE $last_page;
# Line 738  $sql="insert into '.$dir.' ( http_refere Line 476  $sql="insert into '.$dir.' ( http_refere
476                          @sql_update = ();                          @sql_update = ();
477                    
478                          $last_fn=sprintf("%02d.php",$page_nr);                          $last_fn=sprintf("%02d.php",$page_nr);
479                          $last_page="$html_header $body $html_footer";                          $last_page="$html_header $body $html_next $html_footer";
480                          # delete vars for next page                          # delete vars for next page
481                          $page_nr++;                          $page_nr++;
482                          $body="";                          $body="";
# Line 756  sub nr { Line 494  sub nr {
494          $$ncref = sub {          $$ncref = sub {
495                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
496                  if (defined($text)) {                  if (defined($text)) {
497                          $body.=$text;                          $body.=x($text);
498                          chomp $text;                          chomp $text;
499                          $pitanje_tag .= $text;                          $pitanje_tag .= x($text);
500                  } else {                  } else {
501                          $pitanje_nr = $pitanje_tag;                          $pitanje_nr = $pitanje_tag;
502                          $pitanje_nr =~ s/[^0-9a-zA-Z]//g;                          $pitanje_nr =~ s/[^0-9a-zA-Z]//g;
# Line 788  sub pit { Line 526  sub pit {
526                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
527    
528                  if (defined $text) {                  if (defined $text) {
529                          $body.=$text;                          $body.=x($text);
530                  } else {                  } else {
531                          $body.="</p>";                          $body.="</p>";
532                  }                  }
# Line 805  sub podpit { Line 543  sub podpit {
543                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
544    
545                  if (defined $text) {                  if (defined $text) {
546                          $body.=$text;                          $body.=x($text);
547                  } else {                  } else {
548                          $body.="</table>";                          $body.="</table>";
549                  }                  }
# Line 824  sub odg { Line 562  sub odg {
562                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
563    
564                  if (defined $text) {                  if (defined $text) {
565                          $body .= $text;                          $body .= x($text);
566                  } else {                  } else {
567                          $body .= "</p>";                          $body .= "</p>";
568                  }                  }
# Line 845  sub php { Line 583  sub php {
583                          $text=~s/ le / <= /g;                          $text=~s/ le / <= /g;
584                          $text=~s/ gt / > /g;                          $text=~s/ gt / > /g;
585                          $text=~s/ ge / >= /g;                          $text=~s/ ge / >= /g;
586                          $body.=$text;                          $body.=x($text);
587                  } else {                  } else {
588                          $body.="\n?>\n";                          $body.="\n?>\n";
589                  }                  }
# Line 867  sub dropdown { Line 605  sub dropdown {
605                          $text=~s/^\s*//g;                          $text=~s/^\s*//g;
606                          $text=~s/^[\d\.\s]+//g;                          $text=~s/^[\d\.\s]+//g;
607                          $text=~s/\s*$//g;                          $text=~s/\s*$//g;
608                          push @dropdown_data,$text if ($text ne "");                          push @dropdown_data,x($text) if ($text ne "");
609                  } else {                  } else {
610                          my $opt;                          my $opt;
611                          my $id=1;                          my $id=1;
# Line 897  sub textbox { Line 635  sub textbox {
635                  my $size=$attref->{size};                  my $size=$attref->{size};
636                  $size = 25 if (! defined $size || $size == 0);  # default                  $size = 25 if (! defined $size || $size == 0);  # default
637                  my $p=new_pit();                  my $p=new_pit();
638                  $body.="<input type=text name=$p size=$size >\n";                  $body.="<input type=text name=$p size=".x($size)." >\n";
639                  push @sql_create,"$p text";                  push @sql_create,"$p text";
640                  push @sql_update,"$p='\$$p'";                  push @sql_update,"$p='\$$p'";
641          }          }
# Line 935  sub radiobuttons { Line 673  sub radiobuttons {
673                          $text=~s/^\s*//g;                          $text=~s/^\s*//g;
674                          $text=~s/^[\d\.\s]+//g;                          $text=~s/^[\d\.\s]+//g;
675                          $text=~s/\s*$//g;                          $text=~s/\s*$//g;
676                          push @radiobuttons_data,$text if ($text ne "");                          push @radiobuttons_data,x($text) if ($text ne "");
677                  } else {                  } else {
678                          my $opt;                          my $opt;
679                          my $p=new_pit();                          my $p=new_pit();
# Line 980  sub checkboxes { Line 718  sub checkboxes {
718                          $text=~s/^\s*//g;                          $text=~s/^\s*//g;
719                          $text=~s/^[\d\.\s]+//g;                          $text=~s/^[\d\.\s]+//g;
720                          $text=~s/\s*$//g;                          $text=~s/\s*$//g;
721                          push @checkboxes_data,$text if ($text ne "");                          push @checkboxes_data,x($text) if ($text ne "");
722                  } else {                  } else {
723                          my $opt;                          my $opt;
724                          my $base_p=new_pit();                          my $base_p=new_pit();
# Line 999  sub checkboxes { Line 737  sub checkboxes {
737                                  if (defined($opt) && $opt ne "") {                                  if (defined($opt) && $opt ne "") {
738                                          $p=$base_p."_".$id;                                          $p=$base_p."_".$id;
739                                          $id++;                                          $id++;
740                                          $body .= $before if ($before);                                          $body .= x($before) if ($before);
741                                          $body.="<input type=checkbox name=$p>";                                          $body.="<input type=checkbox name=$p>";
742                                          $body .= $middle if ($middle);                                          $body .= x($middle) if ($middle);
743                                          $body .= "$opt" if (! $hide_description);                                          $body .= "$opt" if (! $hide_description);
744                                          $body .= $after if ($after);                                          $body .= x($after) if ($after);
745                                          $body.="\n";                                          $body.="\n";
746    
747                                          push @sql_create,"$p boolean";                                          push @sql_create,"$p boolean";
# Line 1016  sub checkboxes { Line 754  sub checkboxes {
754          }          }
755  }  }
756    
757  #---------------------------------------------------------------  print "\n\nTo create database for poll $poll use:\n\n";
758    print "\$ psql template1 < $poll/$poll.sql\n\n";
759  sub slide {  print "THIS WILL DISTROY ALL DATA IN EXISTING DATABASE ".$prefix.$poll." !!\n";
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   my $prev = $page_number ? slidename($page_number) : $index;  
   $page_number++;  
   my $fn = slidename($page_number);  
   my $next = slidename($page_number + 1);  
   
   open(SLIDE, ">$dir/$fn") or die "Couldn't open $fn for writing:\n$!";  
   
   print SLIDE $prolog;  
   
   undef @slidetitle;  
   $body = '';  
   $inlist = 0;  
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined $text) {  
         #ignore text at slide toplevel  
       }  
       else {  
         $Titles[$page_number] =  $slidetitle[0];  
   
         print SLIDE "<title>$slidetitle[0]</title>\n";  
         print SLIDE $style_link;  
         print SLIDE "</head>\n";  
   
         if ($dostyle) {  
           print SLIDE "<body>\n";  
         }  
         else {  
           print SLIDE "<body background=\"back.gif\">\n";  
         }  
         
         my $navbar = "<table class=\"navbar\" width=\"100%\"><tr>\n";  
         $navbar .= "<td align=\"left\"><a href=\"$prev\">Previous</td>\n";  
         $navbar .= "<td align=\"left\"><a href=\"$index\">Index</td>\n";  
         $navbar .= "<td align=\"right\"><a href=\"$next\">Next</td>\n";  
         $navbar .= "</table>\n";  
   
         print SLIDE "$navbar<hr>\n";  
         if ($dostyle) {  
           print SLIDE "<img class=\"logo\" src=\"logo.gif\">\n";  
           print SLIDE "<h1 class=\"title\">$slidetitle[1]</h1>\n";  
         }  
         else {  
           print SLIDE "<table width=\"100%\"><tr><td>\n";  
           print SLIDE "<img src=\"logo.gif\">\n";  
           print SLIDE "<td align=\"left\">";  
           print SLIDE "<h1>";  
           print SLIDE "<font size=\"7\" color=\"maroon\">$slidetitle[1]";  
           print SLIDE "</font></h1>\n";  
           print SLIDE "<tr><td colspan=\"2\">\n";  
           print SLIDE "<table width=\"80%\"><tr><td>\n";  
           print SLIDE "<font size=\"+2\">\n";  
         }  
         print SLIDE $body;  
   
         if ($inlist) {  
           print SLIDE "\n</$inlist>\n";  
         }  
   
         unless ($dostyle) {  
           print SLIDE "\n</font>\n";  
           print SLIDE "\n</table></table>\n";  
         }  
   
         print SLIDE "\n<hr>\n$navbar";  
         print SLIDE "</body>\n</html>\n";  
         close(SLIDE);  
       }  
     };  
 }  # End slide  
   
 sub title {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   if ($xp->current_element eq 'slide') {  
     start_mode($xp, 'pass');  
760    
761      $$ncref =  # read configuration data
762        sub {  #
763          $slidetitle[0] = $Text;  # FIX: write actually this :-)
764          $slidetitle[1] = $Markedup_Text;  sub config {
765        };          package main;
766    }          my ($xp, $el, $attref, $ncref) = @_;
 }  # End title  
   
 sub point {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   if ($inlist and $inlist ne 'ul') {  
     $body .= "\n</$inlist>\n";  
     $inlist = 0;  
   }  
   
   unless ($inlist) {  
     $body .= "\n<ul>\n";  
   }  
   
   $inlist = 0;  
   
   if ($dostyle) {  
     $body .= "\n<li><div class=\"point\">";  
   }  
   else {  
     $body .= "\n<li>";  
   }  
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined $text) {  
         $text =~ s/\s+/ /g;  
         $body .= $text;  
       }  
       else {  
         if ($dostyle) {  
           $body .= "</div></li>";  
         }  
         $body .= "\n</$inlist>\n"  
           if $inlist;  
         $inlist = 'ul';  
       }  
     };  
   
 }  # End point  
   
 sub item {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   if ($inlist and $inlist ne 'ul') {  
     $body .= "\n</$inlist>\n";  
     $inlist = 0;  
   }  
   
   unless ($inlist) {  
     $body .= "\n<ul>\n";  
   }  
   
   $inlist = 0;  
   
   if ($dostyle) {  
     $body .= "\n<li><div class=\"item\">";  
   }  
   else {  
     $body .= "\n<li><font face=\"monospace\">";  
   }  
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined $text) {  
         $text =~ s/\s+/ /g;  
         $body .= $text;  
       }  
       else {  
         if ($dostyle) {  
           $body .= "</div></li>";  
         }  
         else {  
           $body .= "</font>";  
         }  
         $body .= "\n</$inlist>\n"  
           if $inlist;  
         $inlist = 'ul';  
       }  
     };  
 }  # End item  
   
 sub def {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   if ($inlist and $inlist ne 'dl') {  
     $body .= "\n</$inlist>\n";  
     $inlist = 0;  
   }  
   
   unless ($inlist) {  
     $body .= "\n<dl>\n";  
   }  
   
   $inlist = 0;  
   
   if ($dostyle) {  
     $body .= "<dt><span class=\"defterm\">";  
     $body .=  $attref->{term} ."</span></dt>\n";  
     $body .= "<dd><div class=\"def\">\n";  
   }  
   else {  
     $body .= "<dt><font face=\"monospace\" color=\"maroon\" style=\"bold\">";  
     $body .= $attref->{term} . "</font></dt>\n";  
     $body .= "<dd>";  
   }  
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined $text) {  
         $text =~ s/\s+/ /g;  
         $body .= $text;  
       }  
       else {  
         if ($dostyle) {  
           $body .= "</div></dd>\n";  
         }  
         $body .= "\n</$inlist>\n"  
           if $inlist;  
         $inlist = 'dl';  
       }  
     };  
 }  # End def  
   
 sub eg {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   if ($dostyle) {  
     $body .= "<div class=\"eg\"><pre>";  
   }  
   else {  
     $body .= "<table bgcolor=\"tan\" width=\"70%\"><tr><td>\n";  
     $body .= "<font size=\"+1\"><pre>";  
   }  
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined $text) {  
         $body .= $text;  
       }  
       else {  
         if ($dostyle) {  
           $body .= "</pre></div>\n";  
         }  
         else {  
           $body .= "</pre></font></td></tr></table>\n"  
         }  
       }  
     };  
 }  # End eg  
   
 sub key {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   if ($dostyle) {  
     $body .= "<span class=\"key\">";  
   }  
   else {  
     $body .= "<font face=\"monospace\" color=\"navy\">";  
   }  
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined $text) {  
         $body .= $text;  
       }  
       else {  
         if ($dostyle) {  
           $body .= "</span>";  
         }  
         else {  
           $body .= "</font>";  
         }  
       }  
     };  
 }  # End key  
   
 sub abstract {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   if ($dostyle) {  
     $body .= "<span class=\"abstract\">";  
   }  
   else {  
     $body .= "<font color=\"green\">";  
   }  
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined $text) {  
         $body .= $text;  
       }  
       else {  
         if ($dostyle) {  
           $body .= "</span>";  
         }  
         else {  
           $body .= "</font>";  
         }  
       }  
     };  
 }  # End abstract  
   
 sub screen {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   if ($dostyle) {  
     $body .= "<pre class=\"screen\">\n";  
   }  
   else {  
     $body .= "<table bgcolor=\"white\" border=\"1\" width=\"70%\"><tr><td>\n";  
     $body .= "<font size=\"+1\"><pre>";  
   }  
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined $text) {  
         $body .= $text;  
       }  
       else {  
         if ($dostyle) {  
           $body .= "</pre>\n";  
         }  
         else {  
           $body .= "</pre></td></tr></table>\n";  
         }  
       }  
     };  
 }  # End screen  
   
 sub input {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   if ($dostyle) {  
     $body .= "<span class=\"input\">";  
   }  
   else {  
     $body .= "<b>";  
   }  
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined $text) {  
         $body .= $text;  
       }  
       else {  
         if ($dostyle) {  
           $body .= "</span>";  
         }  
         else {  
           $body .= "</b>";  
         }  
       }  
     };  
 }  # End input  
   
 sub group {  
 }  # End group  
   
 sub text {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   $body .= "<p>\n";  
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined $text) {  
         $text =~ s/\s+/ /g;  
         $body .= $text;  
       }  
     };  
 }  # End text  
   
 sub book {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   start_mode($xp, 'object');  
   
   $$ncref =  
     sub {  
       my ($xp) = @_;  
   
       if ($dostyle) {  
         $body .= "<span class=\"booktitle\">";  
         $body .= sgml_escape($Object->{title});  
         $body .= "</span>\n";  
       }  
       else {  
         $body .= "<cite>" . sgml_escape($Object->{title}) . "</cite>\n";  
       }  
     };  
 }  
   
 sub aside {  
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   if ($dostyle) {  
     $body .= "<span class=\"aside\">[";  
   }  
   else {  
     $body .= "<em>[";  
   }  
     
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
767    
768        if (defined $text) {          $$ncref = sub {
769          $body .= $text;                  my ($xp, $text) = @_;
770        }                  $db_user=x($attref->{db_user});
771        else {                  $prefix=x($attref->{prefix});
772          if ($dostyle) {                  $without_invitation=x($attref->{without_invitation});
           $body .= "]</span>\n";  
         }  
         else {  
           $body .= "]</em>";  
773          }          }
       }  
     };  
774  }  }
775    
776  sub url {  #---------------------------------------------------------------
   package main;  
   
   my ($xp, $el, $attref, $ncref) = @_;  
   
   my $url='';  
   
   $$ncref =  
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined($text)) {  
         $url .= $text;  
       }  
       else {  
         $body .= "<a href=\"$url\">$url</a>";  
       }  
     }  
 }  
   
 ## Local Variables: ##  
 ## mode:perl ##  
 ## End: ##  

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.9

  ViewVC Help
Powered by ViewVC 1.1.26