/[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.1.1 by dpavlin, Tue Apr 8 17:53:46 2003 UTC revision 1.20 by dpavlin, Sat Nov 8 22:42:18 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    use Carp;
14    
15  $|=1;  $|=1;
16    
17  my $Usage =<<'End_of_Usage;';  my $Usage =<<'End_of_Usage;';
18  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.  
   
19  End_of_Usage;  End_of_Usage;
20    
21  my @Modes = qw(object pass skip);  my @Modes = qw(object pass skip);
22    
23  my $dir;  my $poll;
24  my $dowarn = 1;  my $dowarn = 1;
 my $dostyle = 0;  
25    
26  my $pitanje_nr = 0;             # curr. pitanje  my $q_type = "q";               # q=question, u=unnumbered question
27  my $pitanje_tag = "";           # originalni oblik broja pitanja  my %question_nr;                # curr. question numbers
28  my $page_nr = 1;                # prvo pitanje na strani  my $question_tag = "";          # originalni oblik broja questions
29    my $page_nr = 1;                # prvo question na strani
30    
31  my $p_suffix="";                # if more than one box per question  my $p_suffix="";                # if more than one box per question
32    
33  my $curr_suffix="";             # trenutni suffix  my $curr_suffix="";             # trenutni suffix
34    
35  my @stack_pit;                  # stack pitanja (pitanje, suffix)  my @stack_que;                  # stack of questions (question, suffix)
36    
37  my @sql_create = ("id serial",  my @sql_create = ("id serial",
38          "http_referer character varying(500)",          "http_referer character varying(500)",
# Line 62  my $prefix="wopi_"; Line 55  my $prefix="wopi_";
55  # this is usename in database  # this is usename in database
56  my $db_user="dpavlin";  my $db_user="dpavlin";
57    
58  #------------------------------------------------------------------  # This option allows users to fill poll without using invitation URL.
59    # That also means it's unpossible for them to return to exiting poll
60    # because they don't have thair own unique ID. Howver, it enables simple
61    # polls to be conducted by just publishing URL to them.
62    my $without_invitation=0;
63    
64    # This will remove numbers before answers. That enables you to have
65    # answers written like:
66    # 1.1 red
67    # 1.2 black
68    # and users will see just "red" and "black"
69    my $remove_nrs_in_answers=0;
70    
71    # This defines files which will be included in various places to produce
72    # design. You could desing them using your faviourite html editor (vim :-)
73    # and then split them into separate files
74    
75    my %include_files = (
76    # this file is included at top of each paAge
77            'header' => "header.html",
78    # this file is used to separate questions
79            'separator' => "separator.html",
80    # this file is used to show "submit" button, which under multi-page
81    # polls will also bring next page
82            'submit' => "next.html",
83    # this file is included at bottom of each page
84            'footer' => "footer.html",
85    # this file will be showen after poll is completed
86            'thanks' => "thanks.html"
87    );
88    
89    # buffer for suck(_file)ed html files
90    # and additional markup before and after tags
91    my %html = (
92            'hr_before' => "<br></td></tr>",
93            'hr_after' => "<tr><td></td><td><br>",
94            'que_before' => "<p>",
95            'que_after' => "</p>",
96            'subque_before' => '<table width="100%" cellspacing="0" cellpadding="2" border="0">',
97            'subque_after' => "</table>",
98            'ans_before' => "<p>",
99            'ans_after' => "</p>",
100            'html_before' => "<p>",
101            'html_after' => "</p>",
102    
103    );
104    
105    # name of database colums
106    # for questions
107    my $q_db_col = "q";
108    # for unnumbered questions
109    my $u_db_col = "u";
110    
 my $html_header.=<<'End_of_header;';  
 <html>  
 <head>  
 <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;  
111    
112  #------------------------------------------------------------------  #------------------------------------------------------------------
113    
114  my $html_separator=<<'End_of_separator;';  sub suck_file {
115  <tr>          my $file = shift || croak "suck_file called without argument";
116      <td></td>          open(H,$file) || die "can't open '$file': $!";
117      <td bgcolor="#006699"><img src="../klir.gif" width=1 height=1 alt="" border="0"><br></td>          my $content;
118  </tr>          while (<H>) { $content .= $_; } ;
119  End_of_separator;          close(H);
120            return $content;
121  #------------------------------------------------------------------  }
122    
123  my $html_footer=<<'End_of_footer;';  $html{'header'}=suck_file($include_files{'header'});
124  </td>  $html{'separator'}=suck_file($include_files{'separator'});
125  </tr>  $html{'submit'}=suck_file($include_files{'submit'});
126    $html{'footer'}=suck_file($include_files{'footer'});
 <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;  
127    
128  #------------------------------------------------------------------  #------------------------------------------------------------------
129    
130  sub php_header {  sub php_header {
131  my ($page_nr,@sql_update) = @_;  my ($page_nr,@sql_update) = @_;
132  my $out='<?  my $out='<?php
133          include("common.inc");          include_once("common.php");
134          if (isset($update)) {          if (isset($update)) {
135                  $member_id=id_decode($a);                  $member_id=id_decode($a);
136                  ';                  ';
137  $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]);
138  $out.='  $out.='
139                  $sql="update '.$dir.' set '.join(",\n",@sql_update).',                  $sql="update '.$poll.' set '.join(",\n",@sql_update).',
140                          do_stranice=\'$PHP_SELF\'                          do_stranice=\'$PHP_SELF\'
141                          where id=$id";                          where id=$id";
142  #               print "<pre>$sql</pre>";  #               print "<pre>$sql</pre>";
143                  $result=pg_Exec($conn,fix_sql($sql));                  $result=pg_Exec($conn,fix_sql($sql));
144          } elseif($do_stranice != $PHP_SELF) {          } elseif($do_stranice != $PHP_SELF && isset($do_uri) && isset($a)) {
145                  Header("Location: $do_uri?a=$a");                  Header("Location: $do_uri?a=$a");
146                  exit;                  exit;
147          }          }
# Line 146  return $out; Line 152  return $out;
152  #------------------------------------------------------------------  #------------------------------------------------------------------
153    
154  # first, define some constants  # first, define some constants
155  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;  
156    
157  #------------------------------------------------------------------  #------------------------------------------------------------------
158    
159  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;  
160    
161  #------------------------------------------------------------------  #------------------------------------------------------------------
162    
163  my $html_kraj=<<'End_of_kraj;';  $html{'thanks'}=suck_file($include_files{'thanks'});
 <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;  
164    
165  #------------------------------------------------------------------  #------------------------------------------------------------------
166    
# Line 353  while (defined($ARGV[0]) and $ARGV[0] =~ Line 171  while (defined($ARGV[0]) and $ARGV[0] =~
171      print $Usage;      print $Usage;
172      exit;      exit;
173    }    }
   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";  
   }  
174  }  # End of option processing  }  # End of option processing
175    
176  my $docfile = shift;  my $xmlfile = shift;
177    
178  die "No docfile provided:\n$Usage" unless defined $docfile;  die "No poll xml file provided!\n$Usage" unless defined $xmlfile;
179    
180  die "Can't read $docfile" unless -r $docfile;  die "Can't read $xmlfile" unless -r $xmlfile;
181    
182  if (defined $dir) {  if (defined $poll) {
183    die "$dir isn't a directory" unless -d $dir;    die "$poll isn't a directory" unless -d $poll;
184  }  }
185  else {  else {
186    $docfile =~ m!([^/.]+)(?:\.[^/.]*)?$!;    $xmlfile =~ m!([^/.]+)(?:\.[^/.]*)?$!;
187    $dir = $1;    $poll = $1;
188    if (-e $dir) {    if (-e $poll) {
189      die "$dir exists but isn't a directory"      die "$poll exists but isn't a directory"
190        unless -d $dir;        unless -d $poll;
191    }    }
192    else {    else {
193      mkdir $dir, 0755;      mkdir $poll, 0755;
194    }    }
195  }  }
196    
197  my $in_slideshow = 0;  my $in_poll = 0;
198  my $after_head = 0;  my $after_head = 0;
199    
200  my $Mode = 0;  my $Mode = 0;
# Line 405  my $Markedup_Text; Line 205  my $Markedup_Text;
205  my $Object;  my $Object;
206  my @Ostack = ();  my @Ostack = ();
207    
208  my $intext = 0;  #my $intext = 0;
209  my $closure;  my $closure;
210  my @closure_stack = ();  my @closure_stack = ();
211    
212  my $style_link = '';  #my $style_link = '';
213    
214  my $index = 'index.html';  #my $index = 'index.html';
215  my @slidetitle;  #my @slidetitle;
216  my $body;  my $body;
217  my $inlist = 0;  #my $inlist = 0;
218    
219  my @Titles;  #my @Titles;
220    
221  my $header;  my $header;
222    
 my $prolog = "<html><head>\n";  
 $prolog .= "<!-- Generated by $0 on " . gmtime() . " GMT -->\n";  
   
223  my $page_number = 0;  my $page_number = 0;
224    
225  my $p = new XML::Parser(ErrorContext => 3,  my $p = new XML::Parser(ErrorContext => 3,
226                          Handlers => {Start => \&starthndl,                          Handlers => {Start => \&starthndl,
227                                       End   => \&endhndl,                                       End   => \&endhndl,
228                                       Char  => \&text});                                       Char  => \&text});
229  $p->parsefile($docfile);  $p->parsefile($xmlfile);
230    
231  #----------------------------------------------------------  #----------------------------------------------------------
232    
# Line 437  $p->parsefile($docfile); Line 234  $p->parsefile($docfile);
234    
235  print "p[$page_nr] ";  print "p[$page_nr] ";
236    
237  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$!";
238  print PAGE php_header($page_nr,@prelast_sql_update);  print PAGE php_header($page_nr,@prelast_sql_update);
239  my $next_fn=sprintf("%02d.php",$page_nr);  my $next_fn=sprintf("%02d.php",$page_nr);
240  $last_page=~s/##NEXTPAGE##/$next_fn/;  $last_page=~s/##NEXTPAGE##/$next_fn/;
# Line 445  print PAGE $last_page; Line 242  print PAGE $last_page;
242  close(PAGE);  close(PAGE);
243    
244  $page_nr++;  $page_nr++;
245  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$!";
246  print PAGE php_header($page_nr,@last_sql_update);  print PAGE php_header($page_nr,@last_sql_update);
247  print PAGE $html_kraj;  print PAGE "$html{'header'} $html{'thanks'} $html{'footer'}";
248  close(PAGE);  close(PAGE);
249    
250  # dump sql structure  # dump sql structure
251    
252  open(SQL,">$dir/$dir.sql") || die "$dir.sql: $!";  open(SQL,">$poll/$poll.sql") || die "$poll.sql: $!";
253    print SQL "drop database ".$prefix.$poll.";\n";
254    print SQL "create database ".$prefix.$poll.";\n";
255    print SQL "\\connect ".$prefix.$poll.";\n";
256  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";
257  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";
258  close(SQL);  close(SQL);
259    
260  # dump common.inc  # dump common.php
261    
262    open(PHP,">$poll/common.php") || die "common.php: $!";
263    $common_php =~ s/##DB##/$poll/g;
264    my $db_name = $prefix.$poll;
265    $common_php =~ s/##DB_NAME##/$db_name/g;
266    $common_php =~ s/##PREFIX##/$prefix/g;
267    $common_php =~ s/##DB_USER##/$db_user/g;
268    $common_php =~ s/##PREFIX##/$prefix/g;
269    my $members_db = $prefix."members";
270    $common_php =~ s/##MEMBERS_DB##/$members_db/g;
271    $common_php =~ s/##WITHOUT_INVITATION##/$without_invitation/g;
272    
273  open(PHP,">$dir/common.inc") || die "common.inc: $!";  print PHP $common_php;
 print PHP '<? $db="'.$dir.'";';  
 print PHP $common_inc;  
 print PHP '?>';  
274  close(PHP);  close(PHP);
275    
276  open(PHP,">$dir/head.php") || die "head.php: $!";  open(PHP,">$poll/head.php") || die "head.php: $!";
277  print PHP '<? $max_page="'.($page_nr+1).'";';  my $max_page = $page_nr - 1;
278    $head_php=~ s/##MAXPAGE##/$max_page/;
279    $head_php=~ s/##TEXT##/Ispunili ste %02d%% ankete/;
280  print PHP $head_php;  print PHP $head_php;
 print PHP '?>';  
281  close(PHP);  close(PHP);
282    
283    # 01.php -> index.php
284    rename "$poll/01.php","$poll/index.php" || die "can't rename '$poll/01.php' to index.php";
285    
286  ################  ################
287  ## End of main  ## End of main
288  ################  ################
289    
290  # return unique name of pitanje  # return unique name of question
291  sub new_pit {  sub new_que {
292          my $out="p".$pitanje_nr.$p_suffix;          my $out=$q_type.( $question_nr{$q_type} || 0 );
293            $out .= "_".$p_suffix if ($p_suffix);
294          $curr_suffix=$p_suffix;          $curr_suffix=$p_suffix;
295          $p_suffix++;          $p_suffix++;
296          return $out;          return $out;
297  }  }
298    
299  # current pitanje  # current question
300  sub curr_pit {  sub curr_que {
301          return "p".$pitanje_nr.$curr_suffix;          return $q_type.( $question_nr{$q_type} || 0 ).$curr_suffix;
302  }  }
303    
304    #----------------------------------------------------------
305    
306  sub starthndl {  sub starthndl {
307    my ($xp, $el, %atts) = @_;          my ($xp, $el, %atts) = @_;
308    
309  #  return unless ($in_slideshow or $el eq 'slideshow');  #       return unless ($in_poll or $el eq 'slideshow');
310    
311    unless ($in_slideshow) {          unless ($in_poll) {
312      $in_slideshow = $xp->depth + 1;                  $in_poll = $xp->depth + 1;
313      return;                  return;
314    }          }
315    
316    if ($Mode) {          if ($Mode) {
317                    if ($Mode eq 'pass') {
318                            $Markedup_Text .= "\n" . $xp->recognized_string;
319                    } elsif ($Mode eq 'object') {
320                            push(@Ostack, $Object);
321    
322      if ($Mode eq 'pass') {                          $Object = {
323        $Markedup_Text .= "\n" . $xp->recognized_string;                                  _Atts     => \%atts,
324      }                                  _Text    => ''
325      elsif ($Mode eq 'object') {                          };
326        push(@Ostack, $Object);                          bless $Object, "Slideobj::$el";
327                    }
328    
329        $Object = {_Atts    => \%atts,                  # skip does nothing
330                   _Text    => ''                  return;
331                  };          }
       bless $Object, "Slideobj::$el";  
     }  
332    
333      # skip does nothing          unless ($after_head) {
334      return;                  if ($el eq 'head') {
335    }                          $after_head = 1;
336                            start_mode($xp, 'object');
337    
338    unless ($after_head) {                          push(@closure_stack, $closure);
339      if ($el eq 'head') {                          $closure = sub {
340        $after_head = 1;                                  my ($xp, $text) = @_;
       start_mode($xp, 'object');  
   
       push(@closure_stack, $closure);  
       $closure =  
         sub {  
           my ($xp, $text) = @_;  
   
           unless (defined $text) {  
               
             $header = $Object;  
           }  
         };  
341    
342        return;                                  unless (defined $text) {
343      }                                          $header = $Object;
344                                    }
345                            };
346                            return;
347                    }
348    
349  #    die "The head element must be the first thing in the slideshow";  #               die "The head element must be the first thing in the slideshow";
350    }          }
351    
352    
353    my $new_closure;          my $new_closure;
354    
355    my $subname = "Slideshow::$el";          my $subname = "Poll::$el";
356    
357    if (defined &$subname) {          if (defined &$subname) {
358      no strict 'refs';                  no strict 'refs';
359    
360      &$subname($xp, $el, \%atts, \$new_closure);                  &$subname($xp, $el, \%atts, \$new_closure);
361    }          } else {
362    else {                  $body .= x($xp->recognized_string);
363      $body .= $xp->recognized_string;                  $new_closure = sub {
364      $new_closure =                          my ($xp, $text) = @_;
365        sub {  
366          my ($xp, $text) = @_;                          if (defined $text) {
367                                            $body .= x($text);
368          if (defined $text) {                          } else {
369            $body .= $text;                                  $body .= x("</$el>");
370          }                          }
371          else {                  };
           $body .= "</$el>";  
372          }          }
       };  
   }  
373    
374    push(@closure_stack, $closure);          push(@closure_stack, $closure);
375    $closure = $new_closure;          $closure = $new_closure;
376  }  # End starthndl  }       # End starthndl
377    
378  sub endhndl {  sub endhndl {
379    my ($xp, $el) = @_;          my ($xp, $el) = @_;
380    
381    return unless $in_slideshow;          return unless $in_poll;
382    
383    my $lev = $xp->depth;          my $lev = $xp->depth;
384    
385    if ($lev == $in_slideshow - 1) {          if ($lev == $in_poll - 1) {
386      $in_slideshow = 0;                  $in_poll = 0;
387      $xp->finish;                  $xp->finish;
388      return;                  return;
389    }          }
390              
391    if ($Mode_level == $lev) {          if ($Mode_level == $lev) {
392                        
393      if ($Mode eq 'pass') {                  if ($Mode eq 'pass') {
394        &$closure($xp, $Markedup_Text)                          &$closure($xp, $Markedup_Text) if (defined $closure);
395          if (defined $closure);                  }
     }  
396    
397      $Mode = $Mode_level = 0;                  $Mode = $Mode_level = 0;
398    }          }
399    
400            if ($Mode) {
401                    if ($Mode eq 'pass') {
402                            $Markedup_Text .= "</$el>";
403                    } elsif ($Mode eq 'object') {
404                            my $this = $Object;
405                            if (2 == keys %$this) {
406                                    $this = $this->{_Text};
407                            }
408    
409    if ($Mode) {                          $Object = pop(@Ostack);
     if ($Mode eq 'pass') {  
       $Markedup_Text .= "</$el>";  
     }  
     elsif ($Mode eq 'object') {  
       my $this = $Object;  
       if (2 == keys %$this) {  
         $this = $this->{_Text};  
       }  
   
       $Object = pop(@Ostack);  
   
       my $slot = $Object->{$el};  
       if (defined $slot) {  
         if (ref($slot) eq 'ARRAY') {  
           push(@$slot, $this);  
         }  
         else {  
           $Object->{$el} = [$slot, $this];  
         }  
       }  
       else {  
         $Object->{$el} = $this;  
       }  
     }  
410    
411      return;                          my $slot = $Object->{$el};
412    }                          if (defined $slot) {
413                                    if (ref($slot) eq 'ARRAY') {
414                                            push(@$slot, $this);
415                                    } else {
416                                            $Object->{$el} = [$slot, $this];
417                                    }
418                            } else {
419                                    $Object->{$el} = $this;
420                            }
421                    }
422    
423                    return;
424            }
425    
426    &$closure($xp)          &$closure($xp) if defined $closure;
     if defined $closure;  
427    
428    $closure = pop(@closure_stack);          $closure = pop(@closure_stack);
429  }  # End endhndl  }  # End endhndl
430    
431    #----------------------------------------------------------
432    
433  sub text {  sub text {
434    my ($xp, $data) = @_;          my ($xp, $data) = @_;
435    
436    return unless $in_slideshow;          return unless $in_poll;
437    
438    if ($Mode ) {          if ($Mode) {
439    
440      if ($Mode eq 'pass') {                  if ($Mode eq 'pass') {
441        my $safe = sgml_escape($data);                          my $safe = sgml_escape($data);
442    
443        $Text .= $safe;                          $Text .= $safe;
444        $Markedup_Text .= $safe;                          $Markedup_Text .= $safe;
445      }                  } elsif ($Mode eq 'object') {
446      elsif ($Mode eq 'object') {                          $Object->{_Text} .= $data if $data =~ /\S/;
447        $Object->{_Text} .= $data                  }
         if $data =~ /\S/;  
     }  
448    
449      return;                  return;
450    }          }
451    
452    &$closure($xp, sgml_escape($data))          &$closure($xp, sgml_escape($data)) if (defined $closure);
     if (defined $closure);  
453    
454  }  # End text  }  # End text
455    
456  sub start_mode {  sub start_mode {
457    my ($xp, $mode) = @_;          my ($xp, $mode) = @_;
458    
459    if ($mode eq 'pass') {          if ($mode eq 'pass') {
460      $Text = '';                  $Text = '';
461      $Markedup_Text = '';                  $Markedup_Text = '';
462    }          } elsif ($mode eq 'object') {
463    elsif ($mode eq 'object') {                  $Object = {
464      $Object = {_Atts => undef,                          _Atts => undef,
465                 _Text => undef                          _Text => undef
466                };                  };
467    }          }
468    
469    $Mode = $mode;          $Mode = $mode;
470    $Mode_level = $xp->depth;          $Mode_level = $xp->depth;
471  }  # End start_mode  }  # End start_mode
472    
473  sub sgml_escape {  sub sgml_escape {
474    my ($str) = @_;          my ($str) = @_;
475    
476    $str =~ s/\&/\&amp;/g;          $str =~ s/\&/\&amp;/g;
477    $str =~ s/</\&lt;/g;          $str =~ s/</\&lt;/g;
478    $str =~ s/>/\&gt;/g;          $str =~ s/>/\&gt;/g;
479    
480    $str;          $str;
481  }  # End sgml_escape  }  # End sgml_escape
482    
 sub slidename {  
   my ($num) = @_;  
   
   sprintf("slide%03d.html", $num);  
 }  # End slidename  
   
483  ################################################################  ################################################################
484    
485  package Slideshow;  package Poll;
486    
487  sub page {  sub page {
488          package main;          package main;
# Line 701  sub page { Line 497  sub page {
497                          print "p[$page_nr] ";                          print "p[$page_nr] ";
498    
499                          if (defined $last_fn) {                          if (defined $last_fn) {
500                                  # 01.php -> index.php                                  open(PAGE, ">$poll/$last_fn") or die "Couldn't open $last_fn for writing:\n$!";
501                                  $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  
   
   
502                                  my $next_fn=sprintf("%02d.php",$page_nr);                                  my $next_fn=sprintf("%02d.php",$page_nr);
503                                  $last_page=~s/##NEXTPAGE##/$next_fn/;                                  $last_page=~s/##NEXTPAGE##/$next_fn/;
504                                  print PAGE $last_page;                                  print PAGE $last_page;
# Line 738  $sql="insert into '.$dir.' ( http_refere Line 510  $sql="insert into '.$dir.' ( http_refere
510                          @sql_update = ();                          @sql_update = ();
511                    
512                          $last_fn=sprintf("%02d.php",$page_nr);                          $last_fn=sprintf("%02d.php",$page_nr);
513                          $last_page="$html_header $body $html_footer";                          $last_page="$html{'header'} $body $html{'submit'} $html{'footer'}";
514                          # delete vars for next page                          # delete vars for next page
515                          $page_nr++;                          $page_nr++;
516                          $body="";                          $body="";
# Line 751  sub nr { Line 523  sub nr {
523    
524          my ($xp, $el, $attref, $ncref) = @_;          my ($xp, $el, $attref, $ncref) = @_;
525    
526          $pitanje_tag="";          $question_tag="";
527    
528          $$ncref = sub {          $$ncref = sub {
529                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
530                  if (defined($text)) {                  if (defined($text)) {
531                          $body.=$text;                          $body.=x($text);
532                          chomp $text;                          chomp $text;
533                          $pitanje_tag .= $text;                          $question_tag .= x($text);
534                  } else {                  } else {
535                          $pitanje_nr = $pitanje_tag;                          $question_nr{$q_type} = $question_tag;
536                          $pitanje_nr =~ s/[^0-9a-zA-Z]//g;                          $question_nr{$q_type} =~ s/[^0-9a-zA-Z]//g;
537                          print "$pitanje_nr ";                          print "$question_nr{$q_type} ";
538                  }                  }
539                  $p_suffix="";                  $p_suffix="";
540          };          };
# Line 770  sub nr { Line 542  sub nr {
542    
543    
544  sub hr {  sub hr {
545          $body .= "<br></td></tr>$html_separator<tr><td></td><td><br>";          $body .= $html{'hr_before'}.$html{'separator'}.$html{'hr_after'};
546  }  }
547    
548  sub br {  sub que {
         $body .= "<br>\n";  
 }  
   
 sub pit {  
549          package main;          package main;
550    
551          my ($xp, $el, $attref, $ncref) = @_;          my ($xp, $el, $attref, $ncref) = @_;
552    
553          $body.="<p>";          my $nonum = x($attref->{unnumbered});
554            if ($nonum) {
555                    $q_type = $u_db_col;    # unnumbered questions
556            } else {
557                    $q_type = $q_db_col;
558            }
559            
560            $question_nr{$q_type}++;
561    
562            # attribute markup_before override que_before
563            my $markup_before = x($attref->{markup_before});
564            my $markup_after = x($attref->{markup_after});
565    
566            if (defined($markup_before)) {
567                    $body.=$markup_before;
568            } elsif ($html{'que_before'}) {
569                    $body.=$html{'que_before'}
570            }
571    
572          $$ncref = sub {          $$ncref = sub {
573                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
574    
575                  if (defined $text) {                  if (defined $text) {
576                          $body.=$text;                          $body.=x($text);
577                  } else {                  } else {
578                          $body.="</p>";                          if (defined($markup_after)) {
579                                    $body.=$markup_after;
580                            } elsif ($html{'que_after'}) {
581                                    $body.=$html{'que_after'}
582                            }
583                  }                  }
584          }          }
585  }  }
586    
587  sub podpit {  sub subque {
588          package main;          package main;
589    
590          my ($xp, $el, $attref, $ncref) = @_;          my ($xp, $el, $attref, $ncref) = @_;
591    
592          $body.='<table width="100%" cellspacing="0" cellpadding="2" border="0">';          my $markup_before = x($attref->{markup_before});
593            my $markup_after = x($attref->{markup_after});
594    
595            if (defined($markup_before)) {
596                    $body.=$markup_before;
597            } elsif ($html{'subque_before'}) {
598                    $body.=$html{'subque_before'}
599            }
600    
601          $$ncref = sub {          $$ncref = sub {
602                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
603    
604                  if (defined $text) {                  if (defined $text) {
605                          $body.=$text;                          $body.=x($text);
606                  } else {                  } else {
607                          $body.="</table>";                          if (defined($markup_after)) {
608                                    $body.=$markup_after;
609                            } elsif ($html{'subque_after'}) {
610                                    $body.=$html{'subque_after'}
611                            }
612                  }                  }
613          }          }
614  }  }
615    
616    
617  sub odg {  sub ans {
618          package main;          package main;
619    
620          my ($xp, $el, $attref, $ncref) = @_;          my ($xp, $el, $attref, $ncref) = @_;
621    
622          $body .= "<p>";          my $markup_before = x($attref->{markup_before});
623            my $markup_after = x($attref->{markup_after});
624    
625            if (defined($markup_before)) {
626                    $body.=$markup_before;
627            } elsif ($html{'ans_before'}) {
628                    $body.=$html{'ans_before'}
629            }
630            
631          $$ncref = sub {          $$ncref = sub {
632                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
633    
634                  if (defined $text) {                  if (defined $text) {
635                          $body .= $text;                          $body .= x($text);
636                  } else {                  } else {
637                          $body .= "</p>";                          if (defined($markup_after)) {
638                                    $body.=$markup_after;
639                            } elsif ($html{'ans_after'}) {
640                                    $body.=$html{'ans_after'}
641                            }
642                  }                  }
643          }          }
644  }  }
# Line 845  sub php { Line 657  sub php {
657                          $text=~s/ le / <= /g;                          $text=~s/ le / <= /g;
658                          $text=~s/ gt / > /g;                          $text=~s/ gt / > /g;
659                          $text=~s/ ge / >= /g;                          $text=~s/ ge / >= /g;
660                          $body.=$text;                          $body.=x($text);
661                  } else {                  } else {
662                          $body.="\n?>\n";                          $body.="\n?>\n";
663                  }                  }
# Line 859  sub dropdown { Line 671  sub dropdown {
671    
672          my @dropdown_data;          my @dropdown_data;
673    
674            my $default_value = x($attref->{default_value}) || 'null';
675            my $default_text = x($attref->{default_text}) || '-';
676    
677          $$ncref = sub {          $$ncref = sub {
678                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
679    
680                  if (defined $text) {                  if (defined $text) {
681                          chomp $text;                          chomp $text;
682                          $text=~s/^\s*//g;                          $text=~s/^\s*//g;
683                          $text=~s/^[\d\.\s]+//g;                          $text=~s/^[\d\.\s]+//g if ($remove_nrs_in_answers);
684                          $text=~s/\s*$//g;                          $text=~s/\s*$//g;
685                          push @dropdown_data,$text if ($text ne "");                          push @dropdown_data,x($text) if ($text ne "");
686                  } else {                  } else {
687                          my $opt;                          my $opt;
688                          my $id=1;                          my $id=1;
689                          my $p=new_pit();                          my $p=new_que();
690                          $body.="<select name=$p >\n";                          $body.="<select name=$p >\n";
691                          $body.="<option value=null>-</option>\n";                          $body.="<option value=\"$default_value\">$default_text</option>\n";
692                          foreach $opt (@dropdown_data) {                          foreach $opt (@dropdown_data) {
693                                  if (defined($opt) && $opt ne "") {                                  if (defined($opt) && $opt ne "") {
694                                          $body.="<option value=$id>$opt</option>\n";                                          $body.="<option value=$id>$opt</option>\n";
# Line 896  sub textbox { Line 711  sub textbox {
711                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
712                  my $size=$attref->{size};                  my $size=$attref->{size};
713                  $size = 25 if (! defined $size || $size == 0);  # default                  $size = 25 if (! defined $size || $size == 0);  # default
714                  my $p=new_pit();                  my $p=new_que();
715                  $body.="<input type=text name=$p size=$size >\n";                  $body.="<input type=text name=$p size=".x($size)." >\n";
716                  push @sql_create,"$p text";                  push @sql_create,"$p text";
717                  push @sql_update,"$p='\$$p'";                  push @sql_update,"$p='\$$p'";
718          }          }
# Line 910  sub radiobuttons_tab { Line 725  sub radiobuttons_tab {
725          $$ncref = sub {          $$ncref = sub {
726                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
727                  if (! defined $text) {                  if (! defined $text) {
728                          my $nr=$attref->{nr};                          my $nr=$attref->{nr} || die "need <radiobuttons_tab nr=\"999\"> for number of buttons";
729                          my $p=new_pit();                          # shownumbers="before|after"
730                            my $shownumbers=lc(x($attref->{shownumbers})) || 'no';
731                            my $showlabels=lc(x($attref->{showlabels})) || 'no';
732                            my $class=lc(x($attref->{class})) || '';
733                            $class=' class="'.$class.'"' if ($class);
734                            my $p=new_que();
735                          for (my $i=1; $i<=$nr; $i++) {                          for (my $i=1; $i<=$nr; $i++) {
736                                  $body.="<td><input type=radio name=$p value=$i></td> ";                                  $body.="<td$class>";
737                                    $body.=$i if ($shownumbers eq "before");
738                                    if ($showlabels eq "before" && $attref->{"label_$i"}) {
739                                            $body.=x($attref->{"label_$i"});
740                                    }
741                                    $body.="<input type=radio name=$p value=$i>";
742                                    $body.=$i if ($shownumbers eq "after");
743                                    $body.="</td> ";
744                          }                          }
745                          push @sql_create,"$p int4";                          push @sql_create,"$p int4";
746                          push @sql_update,"$p=\$$p";                          push @sql_update,"$p=\$$p";
# Line 933  sub radiobuttons { Line 760  sub radiobuttons {
760                  if (defined $text) {                  if (defined $text) {
761                          chomp $text;                          chomp $text;
762                          $text=~s/^\s*//g;                          $text=~s/^\s*//g;
763                          $text=~s/^[\d\.\s]+//g;                          $text=~s/^[\d\.\s]+//g if ($remove_nrs_in_answers);
764                          $text=~s/\s*$//g;                          $text=~s/\s*$//g;
765                          push @radiobuttons_data,$text if ($text ne "");                          push @radiobuttons_data,x($text) if ($text ne "");
766                  } else {                  } else {
767                          my $opt;                          my $opt;
768                          my $p=new_pit();                          my $p=new_que();
769                          my $id=1;                          my $id=1;
770                          foreach $opt (@radiobuttons_data) {                          foreach $opt (@radiobuttons_data) {
771                                  if (defined($opt) && $opt ne "") {                                  if (defined($opt) && $opt ne "") {
# Line 957  sub checkbox { Line 784  sub checkbox {
784    
785          $$ncref = sub {          $$ncref = sub {
786                  my ($xp, $text) = @_;                  my ($xp, $text) = @_;
787                  my $p=new_pit();                  my $p=new_que();
788                  $body.="<input type=checkbox name=$p >\n";                  $body.="<input type=checkbox name=$p >\n";
789                  push @sql_create,"$p text";                  push @sql_create,"$p text";
790                  push @sql_update,"$p='\$$p'";                  push @sql_update,"$p='\$$p'";
# Line 978  sub checkboxes { Line 805  sub checkboxes {
805                  if (defined $text) {                  if (defined $text) {
806                          chomp $text;                          chomp $text;
807                          $text=~s/^\s*//g;                          $text=~s/^\s*//g;
808                          $text=~s/^[\d\.\s]+//g;                          $text=~s/^[\d\.\s]+//g if ($remove_nrs_in_answers);
809                          $text=~s/\s*$//g;                          $text=~s/\s*$//g;
810                          push @checkboxes_data,$text if ($text ne "");                          push @checkboxes_data,x($text) if ($text ne "");
811                  } else {                  } else {
812                          my $opt;                          my $opt;
813                          my $base_p=new_pit();                          my $base_p=new_que();
814                          my $id=1;                          my $id=1;
815    
816                          my $before=$attref->{before};                          my $before=$attref->{before};
# Line 999  sub checkboxes { Line 826  sub checkboxes {
826                                  if (defined($opt) && $opt ne "") {                                  if (defined($opt) && $opt ne "") {
827                                          $p=$base_p."_".$id;                                          $p=$base_p."_".$id;
828                                          $id++;                                          $id++;
829                                          $body .= $before if ($before);                                          $body .= x($before) if ($before);
830                                          $body.="<input type=checkbox name=$p>";                                          $body.="<input type=checkbox name=$p>";
831                                          $body .= $middle if ($middle);                                          $body .= x($middle) if ($middle);
832                                          $body .= "$opt" if (! $hide_description);                                          $body .= "$opt" if (! $hide_description);
833                                          $body .= $after if ($after);                                          $body .= x($after) if ($after);
834                                          $body.="\n";                                          $body.="\n";
835    
836                                          push @sql_create,"$p boolean";                                          push @sql_create,"$p boolean";
# Line 1016  sub checkboxes { Line 843  sub checkboxes {
843          }          }
844  }  }
845    
846  #---------------------------------------------------------------  #
847    # insert arbitrary html
848  sub slide {  #
849    package main;  sub html {
850            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');  
   
     $$ncref =  
       sub {  
         $slidetitle[0] = $Text;  
         $slidetitle[1] = $Markedup_Text;  
       };  
   }  
 }  # 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  
851    
852  sub group {          my ($xp, $el, $attref, $ncref) = @_;
 }  # End group  
853    
854  sub text {          $body.=$html{'html_before'} if ($html{'html_before'});
   package main;  
855    
856    my ($xp, $el, $attref, $ncref) = @_;          $$ncref = sub {
857                    my ($xp, $text) = @_;
858    
859    $body .= "<p>\n";                  if (defined $text) {
860                            $body.=x($text);
861                    } elsif ($attref->{include}) {
862                            $body.=suck_file($attref->{include});
863                    } else {
864                            $body.=$html{'html_after'} if ($html{'html_after'});
865                    }
866            }
867    }
868    
869    $$ncref =  #
870      sub {  # markup tag can specify any markup which should be applied pre (before)
871        my ($xp, $text) = @_;  # or post (after) any other tag which produces html output
872    #
873    
874        if (defined $text) {  sub markup {
875          $text =~ s/\s+/ /g;          package main;
         $body .= $text;  
       }  
     };  
 }  # End text  
876    
877  sub book {          my ($xp, $el, $attref, $ncref) = @_;
   package main;  
878    
879    my ($xp, $el, $attref, $ncref) = @_;          $$ncref = sub {
880                    my ($xp, $text) = @_;
881    
882    start_mode($xp, 'object');                  my $tag=lc($attref->{tag}) || die 'markup need tag attribute: <markup tag="tag_name" pos="(before|after)">';
883                    my $pos=lc($attref->{pos}) || die 'markup need pos attribute: <markup tag="tag_name" pos="(before|after)">';
884    
885    $$ncref =                  return if (! defined $text);
886      sub {                  chomp($text);
887        my ($xp) = @_;                  if ($text ne "") {
888                            $text =~ s/\&amp;/\&/g;
889        if ($dostyle) {                          $text =~ s/\&lt;/</g;
890          $body .= "<span class=\"booktitle\">";                          $text =~ s/\&gt;/>/g;
891          $body .= sgml_escape($Object->{title});                          $text =~ s/^\s+//g;
892          $body .= "</span>\n";                          $text =~ s/\s+$//g;
893        }                          $html{$tag.'_'.$pos}=x($text);
894        else {                          print "Using markup $pos $tag: ",x($text),"<--\n";
895          $body .= "<cite>" . sgml_escape($Object->{title}) . "</cite>\n";                  }
896        }          }
     };  
897  }  }
898    
899  sub aside {  #
900    package main;  # print final instructions and exit
901    #
   my ($xp, $el, $attref, $ncref) = @_;  
   
   if ($dostyle) {  
     $body .= "<span class=\"aside\">[";  
   }  
   else {  
     $body .= "<em>[";  
   }  
     
902    
903    $$ncref =  print "\n\nTo create database for poll $poll use:\n\n";
904      sub {  print "\$ psql template1 < $poll/$poll.sql\n\n";
905        my ($xp, $text) = @_;  print "THIS WILL DISTROY ALL DATA IN EXISTING DATABASE ".$prefix.$poll." !!\n";
   
       if (defined $text) {  
         $body .= $text;  
       }  
       else {  
         if ($dostyle) {  
           $body .= "]</span>\n";  
         }  
         else {  
           $body .= "]</em>";  
         }  
       }  
     };  
 }  
906    
907  sub url {  # read configuration data
908    package main;  sub config {
909            package main;
910            my ($xp, $el, $attref, $ncref) = @_;
911    
912    my ($xp, $el, $attref, $ncref) = @_;          $$ncref = sub {
913                    my ($xp, $text) = @_;
914                    $db_user=x($attref->{db_user});
915                    $prefix=x($attref->{prefix});
916                    $without_invitation=x($attref->{without_invitation}) &&
917                            print "Pool is without need for unique ID (and invitation URLs).\n";
918                    $remove_nrs_in_answers=x($attref->{remove_nrs_in_answers}) &&
919                            print "Numbers before answers will be removed.\n";
920    
921    my $url='';                  # fill in configuration about include files
922                    foreach my $file (qw(header separator submit footer thanks)) {
923                            if ($attref->{$file}) {
924                                    $include_files{$file}=x($attref->{$file});
925                                    print "Using custom $file '$include_files{$file}'\n";
926                                    $html{$file} = suck_file($include_files{$file});
927                            }
928                    }
929                    $q_db_col=x($attref->{q_db_col}) || 'q';
930                    $u_db_col=x($attref->{u_db_col}) || 'u';
931    
932    $$ncref =          }
     sub {  
       my ($xp, $text) = @_;  
   
       if (defined($text)) {  
         $url .= $text;  
       }  
       else {  
         $body .= "<a href=\"$url\">$url</a>";  
       }  
     }  
933  }  }
934    
935  ## Local Variables: ##  #---------------------------------------------------------------
 ## mode:perl ##  
 ## End: ##  

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.20

  ViewVC Help
Powered by ViewVC 1.1.26