Subversion Repositories wimsdev

Rev

Rev 1160 | Rev 3415 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /*    Copyright (C) 1998-2003 XIAO, Gang of Universite de Nice - Sophia Antipolis
  2.  *
  3.  *  This program is free software; you can redistribute it and/or modify
  4.  *  it under the terms of the GNU General Public License as published by
  5.  *  the Free Software Foundation; either version 2 of the License, or
  6.  *  (at your option) any later version.
  7.  *
  8.  *  This program is distributed in the hope that it will be useful,
  9.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.  *  GNU General Public License for more details.
  12.  *
  13.  *  You should have received a copy of the GNU General Public License
  14.  *  along with this program; if not, write to the Free Software
  15.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16.  */
  17.  
  18.         /* this is part of wims server source.
  19.          * This file does execution commands. */
  20.  
  21. static void _skip_contents(int isif);
  22.  
  23.         /* common routine for the two if's. */
  24. static void _exec_if_while(char *p, int numerical, int isif)
  25. {
  26.     if(compare(p,numerical,0)==0) _skip_contents(isif); /* skip if false */
  27.     else if(!isif) m_file.for_idx++;
  28.     return;
  29. }
  30.  
  31.         /* 'if' non-numerical (unless comparisons are < or >, etc.) */
  32. void exec_if(char *p)
  33. {
  34.     _exec_if_while(p,0,1);
  35. }
  36.  
  37.         /* 'if' numerical. */
  38. void exec_ifval(char *p)
  39. {
  40.     _exec_if_while(p,1,1);    
  41. }
  42.  
  43. void _exec_while(char *p, int numerical)
  44. {
  45.     FOR_STACK *stk;
  46.     if(m_file.for_idx>=MAX_FOR_LEVEL) module_error("too_many_fors");
  47.     stk=&(m_file.for_stack[m_file.for_idx]);
  48.     stk->lineno=m_file.l;
  49.     memmove(stk->varname,"?",2);
  50.     _exec_if_while(p,numerical,0);
  51. }
  52.  
  53.         /* 'while' non-numerical (unless comparisons are < or >, etc.) */
  54. void exec_while(char *p)
  55. {
  56.     _exec_while(p,0);
  57. }
  58.  
  59.         /* 'while' numerical. */
  60. void exec_whileval(char *p)
  61. {
  62.     _exec_while(p,1);
  63. }
  64.  
  65. void exec_endwhile(char *p)
  66. {
  67.     FOR_STACK *stk;
  68.     if(m_file.for_idx<=0) module_error("next_without_for");
  69.     stk=&(m_file.for_stack[m_file.for_idx-1]);
  70.     if(stk->varname[0]!='?') module_error("next_without_for");
  71.     m_file.for_idx--; *p=0;
  72.     m_file.linepointer=stk->lineno;
  73.     executed_gotos++;
  74.     if(executed_gotos>=GOTO_LIMIT) module_error("too_many_gotos");
  75. }
  76.  
  77.         /* Should provide a method to stop infinite loop. */
  78. void exec_goto(char *p)
  79. {
  80.     char lbuf[MAX_NAMELEN+17];
  81.     char *label_start, *line_start;
  82.     int old_line;
  83.     int i;
  84.     executed_gotos++;
  85.     if(executed_gotos>=GOTO_LIMIT) module_error("too_many_gotos");
  86.     old_line=m_file.l;
  87.     label_start=find_word_start(p);
  88.     *find_word_end(label_start)=0;
  89.     m_file.l=m_file.linepointer=0;
  90.     for(i=0;i<m_file.linecnt;i++) {
  91.         if(((m_file.lines[i].isstart)&4)==0) continue;
  92.         line_start=find_word_start((m_file.lines[i]).address);
  93.         if(line_start>(m_file.lines[i+1]).address && i<m_file.linecnt)
  94.           continue;
  95.         m_file.linepointer=i;
  96.         wgetline(lbuf,MAX_NAMELEN+8,&m_file);
  97.         line_start=find_word_start(lbuf);
  98.         if(*line_start!=label_prefix_char) continue;
  99.         line_start++;*find_word_end(line_start)=0;
  100.         if(line_start[0]!='*' && strcmp(line_start,label_start)!=0) continue;
  101.         *p=0; i++; return;
  102.     }
  103.     m_file.l=old_line;
  104.     setvar(error_data_string,label_start); module_error("label_not_found");    
  105. /*    m_file.linepointer=m_file.linecnt; *p=0;
  106.     return;
  107. */}
  108.  
  109.         /* 'else' with or without 'if'.
  110.          * Philosophy: we implement a loosely checked grammar.
  111.          * We cannot check 'if' grammar if we want to use 'goto'
  112.          * together with 'if'. */
  113. void exec_else(char *p)
  114. {
  115.     _skip_contents(1); return;    
  116. }
  117.  
  118.         /* 'endif': nothing needs to be done here. */
  119. void exec_endif(char *p)
  120. {
  121.     return;
  122. }
  123.  
  124.         /* find out the end of a for loop */
  125. void goto_for_end(void)
  126. {
  127.     int inner;
  128.     char buf[16];
  129.     inner=0;
  130.     while(m_file.linepointer<m_file.linecnt) {
  131.         if((m_file.lines[m_file.linepointer].isstart&2)==0) {
  132.             m_file.linepointer++; continue;
  133.         }
  134.         if(wgetline(buf,8,&m_file)==EOF) break;
  135.         *find_word_end(buf)=0;
  136.         if(strcmp(buf,"!for")==0) {
  137.             inner++; continue;
  138.         }
  139.         if(strcmp(buf,"!next")==0) {
  140.             if(inner>0) {
  141.                 inner--; continue;
  142.             }
  143.             else break;
  144.         }
  145.     }
  146. }
  147.  
  148.         /* for */
  149. void exec_for(char *p)
  150. {
  151.     char *p1, *p2, *p3;
  152.     double v1, v2, step;
  153.     char buf[MAX_LINELEN+1];
  154.     FOR_STACK *stk;
  155.  
  156.     if(m_file.for_idx>=MAX_FOR_LEVEL) module_error("too_many_fors");
  157.     stk=&(m_file.for_stack[m_file.for_idx]);
  158.     stk->lineno=m_file.l;
  159.     p1=find_word_start(p);
  160.     for(p2=p1; !isspace(*p2) && *p2!=0 && *p2!='=' ; p2++);
  161.     if(*p2==0) syntax: module_error("for_syntax");
  162.     if(p2-p1>MAX_NAMELEN) module_error("name_too_long");
  163.     memmove(stk->varname,p1,p2-p1);
  164.     stk->varname[p2-p1]=0;
  165.     p1=find_word_start(p2); if(*p1==0) goto syntax;
  166.     if(*p1=='=') {
  167.         p1++;
  168.   assign:
  169.         stk->from=0;
  170.         p2=wordchr(p1,"to");
  171.         if(p2==NULL) p2=strstr(p1,"..");
  172.         if(p2==NULL) goto syntax;
  173.         *p2=0; p2+=2;
  174.         p3=wordchr(p2,"step");
  175.         if(p3!=NULL) {
  176.             *p3=0; p3+=strlen("step");
  177.             step=evalue(p3);
  178.             if(step==0) module_error("zero_step");
  179.         }
  180.         else step=1;
  181.         v1=evalue(p1); v2=evalue(p2);
  182.         float2str(v1,buf); setvar(stk->varname, buf);
  183.         if((step>0 && v1>v2) || (step<0 && v1<v2) ) {  /* condition not met */
  184.   loop_out:
  185.             goto_for_end();
  186.         }
  187.         else {
  188.             stk->varval=v1; stk->varend=v2; stk->step=step;
  189.             stk->lineno=m_file.linepointer;
  190.             m_file.for_idx++;
  191.         }
  192.         *p=0; return;
  193.     }
  194.     if(memcmp(p1,"from",strlen("from"))==0 && isspace(*(p1+strlen("from")))) {
  195.         p1+=strlen("from"); goto assign;
  196.     }
  197.     if(memcmp(p1,"in",strlen("in"))==0 && isspace(*(p1+strlen("in")))) {
  198.         stk->from=1; p1+=strlen("in");
  199.         p1=find_word_start(p1); if(*p1==0) goto loop_out;
  200.         p2=xmalloc(MAX_LINELEN+1);
  201.         mystrncpy(p2,p1,MAX_LINELEN);
  202.         substit(p2);
  203.         strip_trailing_spaces(p2);
  204.         if(*p2==0) goto loop_out;
  205.         p1=strparchr(p2,','); stk->bufpt=p2;
  206.         if(p1!=NULL) {
  207.             *p1=0; stk->list_pt=find_word_start(p1+1);
  208.         }
  209.         else stk->list_pt=NULL;
  210.         strip_trailing_spaces(p2); setvar(stk->varname,p2);
  211.         stk->lineno=m_file.linepointer;
  212.         m_file.for_idx++; *p=0; return;
  213.     }
  214.     goto syntax;
  215. }
  216.  
  217.         /* break a for loop */
  218. void exec_break(char *p)
  219. {
  220.     FOR_STACK *stk;
  221.     if(m_file.for_idx>0) {
  222.         stk=&(m_file.for_stack[m_file.for_idx-1]);
  223.         if(stk->varname[0]=='?') _skip_contents(0);
  224.         else goto_for_end();
  225.         m_file.for_idx--;
  226.     }
  227.     *p=0; return;
  228. }
  229.  
  230.         /* next */
  231. void exec_next(char *p)
  232. {
  233.     double v1, v2, step;
  234.     char *p1, *p2;
  235.     char buf[MAX_LINELEN+1];
  236.     FOR_STACK *stk;
  237.     if(m_file.for_idx<=0) module_error("next_without_for");
  238.     stk=&(m_file.for_stack[m_file.for_idx-1]);
  239.     if(stk->varname[0]=='?') module_error("next_without_for");
  240.     if(stk->from) { /* list style */
  241.         if(stk->list_pt==NULL) {
  242.             free(stk->bufpt);
  243.             m_file.for_idx--;
  244.             *p=0; return;
  245.         }
  246.         p1=strchr(stk->list_pt,',');
  247.         if(p1!=NULL) {
  248.             *p1=0; p2=find_word_start(p1+1);
  249.         }
  250.         else p2=NULL;
  251.         strip_trailing_spaces(stk->list_pt);
  252.         setvar(stk->varname,stk->list_pt);
  253.         stk->list_pt=p2; goto loop_back;
  254.     }
  255.     v1=stk->varval; v2=stk->varend; step=stk->step;
  256.     v1+=step; stk->varval=v1;
  257.     float2str(v1,buf);
  258.     setvar(stk->varname, buf);
  259.     if((step>0 && v1<=v2) || (step<0 && v1>=v2)) { /* loop */
  260.   loop_back:   
  261.         m_file.linepointer=stk->lineno;
  262.         executed_gotos++;
  263.         if(executed_gotos>=GOTO_LIMIT) module_error("too_many_gotos");
  264.     }
  265.     else m_file.for_idx--;
  266.     *p=0; return;
  267. }
  268.  
  269.         /* Execution of a file in the module directory,
  270.          * only for trusted modules. */
  271. void exec_mexec(char *p)
  272. {
  273.     direct_exec=1;
  274.     calc_mexec(p);
  275.     direct_exec=0;
  276. }
  277.  
  278.         /* call shell. */
  279. void _exec_ex(char *p, char *arg0, char *arg1, int n)
  280. {
  281.     char *abuf[8];
  282.     char errorfname[MAX_FNAME+1];
  283.  
  284.     if(robot_access) {
  285.         *p=0; return;
  286.     }
  287.     if(!noout || !trusted_module() || is_class_module) {
  288.         _calc_exec(p,arg0,arg1,n); if(outputing) output0(p);
  289.         return;
  290.     }
  291.     mkfname(errorfname,"%s/exec.err",tmp_dir);
  292.     abuf[0]=arg0; abuf[1]=arg1; abuf[n]=p; abuf[n+1]=NULL;
  293.     wrapexec=1; exportall();
  294.     execredirected(abuf[0],NULL,NULL,errorfname,abuf);
  295. }
  296.  
  297.         /* call shell. */
  298. void exec_sh(char *p)
  299. {
  300.     _exec_ex(p,"sh","-c",2);
  301. }
  302.  
  303.         /* call perl. */
  304. void exec_perl(char *p)
  305. {
  306.     _exec_ex(p,"perl","-e",2);
  307. }
  308.  
  309.         /* file should not be cached */
  310. void exec_nocache(char *p)
  311. {    m_file.nocache|=1; *p=0; }
  312.  
  313.         /* Read another file. */
  314. void exec_read(char *p)
  315. {
  316.     WORKING_FILE save;
  317.     char parmsave[MAX_LINELEN+1];
  318.     char *pp,*ps;
  319.     int t,cache;
  320.    
  321.     strip_trailing_spaces(p);p=find_word_start(p);
  322.     if(*p==0) return;
  323.     pp=find_word_end(p); if(*pp) *pp++=0;
  324.     pp=find_word_start(pp);
  325.     ps=getvar("wims_read_parm"); if(ps==NULL) ps="";
  326.     mystrncpy(parmsave,ps,sizeof(parmsave));
  327.     setvar("wims_read_parm",pp);
  328.     memmove(&save,&m_file,sizeof(WORKING_FILE));
  329.     cache=1; if(p[0]=='.' && p[1]=='/') {p+=2; cache=0;}
  330.     t=untrust;
  331.     if(strncmp(p,"wimshome/",9)==0) {
  332.         if((untrust&255)!=0 &&
  333.            (m_file.name[0]=='/' || strncmp(m_file.name,"wimshome/",9)==0))
  334.           module_error("Illegal_file_access");
  335.         untrust|=0x200;
  336.     }
  337.     if((untrust&0x202)!=0) {
  338.         pp=getvar("wims_trustfile");
  339.         if(pp!=NULL && *pp!=0 && wordchr(pp,p)!=NULL)
  340.           untrust&=0xfdfd;
  341.     }
  342.     readnest++; if(readnest>MAX_READNEST) module_error("too_many_nested_read");
  343.     if(outputing) phtml_put(p,cache); else var_proc(p,cache);
  344.     readnest--; untrust=t;
  345.     memmove(&m_file,&save,sizeof(WORKING_FILE));
  346.     setvar("wims_read_parm",parmsave);
  347. }
  348.  
  349.         /* read a variable processing file */
  350. void exec_readproc(char *p)
  351. {
  352.     int o=outputing; outputing=0; exec_read(p); outputing=o;
  353. }
  354.  
  355. void exec_defread(char *p)
  356. {
  357.     int t,o;
  358.     secure_exec();
  359.     t=untrust; untrust|=0x400;
  360.     o=outputing; outputing=0;
  361.     exec_read(p); untrust=t; outputing=o;
  362. }
  363.  
  364.         /* Change to another file (no return) */
  365. void exec_changeto(char *p)
  366. {
  367.     m_file.linepointer=m_file.linecnt;
  368.     exec_read(p);
  369. }
  370.  
  371. int header_executed=0, tail_executed=0;
  372.  
  373.         /* internal routine: get other language versions */
  374. void other_langs(void)
  375. {
  376.     int i,j,k;
  377.     char *p, lbuf[4], pbuf[MAX_FNAME+1], *phtml;
  378.     char namebuf[MAX_FNAME+1], listbuf[4*MAX_LANGUAGES];
  379.     static int otherlangs_got=0;
  380.  
  381.     if(otherlangs_got) return;
  382.     mystrncpy(namebuf,module_prefix,sizeof(namebuf));
  383.     listbuf[0]=0;j=strlen(namebuf)-3; p=listbuf;
  384.     if(j>=2 && strcmp("light",namebuf+j-2)==0) {
  385.         setvar("wims_light_module","yes");
  386.         phtml=getvar("phtml");
  387.         if(phtml==NULL || *phtml==0) return;
  388.         mystrncpy(pbuf,phtml,sizeof(pbuf));
  389.         j=strlen(pbuf)-3;
  390.         if(pbuf[j]!='.') return;
  391.         j++; strcpy(lbuf,pbuf+j); pbuf[j]=0;
  392.         j=strlen(namebuf);
  393.         snprintf(namebuf+j,MAX_FNAME-j-10,"/pages/%s",pbuf);
  394.         j=strlen(namebuf);
  395.         for(i=k=0;i<available_lang_no;i++) {
  396.             if(strcmp(lbuf,available_lang[i])==0) continue;
  397.             mystrncpy(namebuf+j,available_lang[i],MAX_FNAME-j);
  398.             if(ftest(namebuf)<0) continue;
  399.             if(k>0) *p++=',';
  400.             mystrncpy(p,available_lang[i],sizeof(listbuf)-4-(p-listbuf));
  401.             p+=strlen(p);
  402.             k++;           
  403.         }
  404.         goto end;
  405.     }
  406.     if(j>0 && namebuf[j]=='.') {
  407.         setvar("wims_light_module","");
  408.         j++; strcpy(lbuf,namebuf+j); namebuf[j]=0;
  409.         for(i=k=0;i<available_lang_no;i++) {
  410.             if(strcmp(lbuf,available_lang[i])==0) continue;
  411.             snprintf(namebuf+j,MAX_FNAME-j,"%s/main.phtml",
  412.                      available_lang[i]);
  413.             if(ftest(namebuf)<0) continue;
  414.             if(k>0) *p++=',';
  415.             mystrncpy(p,available_lang[i],sizeof(listbuf)-4-(p-listbuf));
  416.             p+=strlen(p);
  417.             k++;           
  418.         }
  419.     }
  420.     end: setvar("wims_otherlangs",listbuf); otherlangs_got=1;
  421. }
  422.  
  423.         /* Standardised reference to wims home */
  424. void exec_homeref(char *p)
  425. {
  426.     char *ref, *user;
  427.    
  428.     if(ismhelp || tail_executed) return;
  429.     setvar("wims_homeref_parm",p); *p=0;
  430.     user=getvar("wims_user");
  431.     if(user==NULL) user="";
  432.     if(*user==0 || robot_access) ref=home_referer;
  433.     else {
  434.         if(strcmp(user,"supervisor")==0) ref=home_referer_supervisor;
  435.         else ref=home_referer_user;
  436.     }
  437.     if(user[0]==0 && !robot_access) other_langs();
  438.     phtml_put_base(ref,0); tail_executed=1;
  439. }
  440.  
  441.         /* Standardised header menu */
  442. void exec_headmenu(char *p)
  443. {
  444.     char *ref, *user;
  445.    
  446.     if(header_executed) return;
  447.     setvar("wims_headmenu_parm",p); *p=0;
  448.     user=getvar("wims_user");
  449.     if(user==NULL) user="";
  450.     if(*user==0 || robot_access) ref=header_menu;
  451.     else {
  452.         if(strcmp(user,"supervisor")==0) ref=header_menu_supervisor;
  453.         else ref=header_menu_user;
  454.     }
  455.     if(user[0]==0 && !robot_access) other_langs();
  456.     phtml_put_base(ref,0); header_executed=1;
  457. }
  458.  
  459.         /* uniformized title */
  460. void exec_title(char *p)
  461. {
  462.     char *s;
  463.     *p=0;
  464.     if(!outputing) return;
  465.     s=getvar("wims_title_title");
  466.     if(s==NULL || *s==0) {
  467.         s=getvar("module_title");
  468.         if(s==NULL || *s==0) return;
  469.         force_setvar("wims_title_title",s);
  470.     }
  471.     phtml_put_base(title_page,0);
  472. }
  473.  
  474.         /* standardized html tail */
  475. void exec_tail(char *p)
  476. {
  477.     if(!outputing || tail_executed) {
  478.         *p=0; return;
  479.     }
  480.     if(!ismhelp) exec_homeref(p); *p=0;
  481.     _output_("</body></html>");
  482.     tail_executed=1;
  483. }
  484.  
  485. void determine_font(char *l);
  486.  
  487.         /* standardized header */
  488. void _header(char *p, int option)
  489. {
  490.     char *s1, *s2, hbuf[MAX_LINELEN+1], *ws="", *ws2="", *bo, *ol;
  491.     char wsbuf[MAX_LINELEN+1],wsbuf2[MAX_LINELEN+1];
  492.     setvar("wims_header_parm",p); *p=0;
  493.     if(!outputing || header_executed) return;
  494.     s1=getvar("wims_window");
  495.     if(mode==mode_popup) {
  496.         if(s1!=NULL && *s1!=0) {
  497.             char *p1, *p2;
  498.             int t1,t2/*,t3,t4*/;
  499.             p1=find_word_start(s1);
  500.             for(p2=p1; myisdigit(*p2); p2++);
  501.             *p2=0; t1=atoi(p1); p1=p2+1;
  502.             while(!myisdigit(*p1) && *p1) p1++;
  503.             for(p2=p1; myisdigit(*p2); p2++);
  504.             *p2=0; t2=atoi(p1); p1=p2+1;
  505. /*          while(!myisdigit(*p1) && *p1) p1++;
  506.             for(p2=p1; myisdigit(*p2); p2++);
  507.             *p2=0; t3=atoi(p1); p1=p2+1;
  508.             while(!myisdigit(*p1) && *p1) p1++;
  509.             for(p2=p1; myisdigit(*p2); p2++);
  510.             *p2=0; t4=atoi(p1); p1=p2+1;
  511.             while(!myisdigit(*p1) && *p1) p1++;
  512.             for(p2=p1; myisdigit(*p2); p2++);
  513.             if(t3<5) t3=5; if(t4<20) t4=20;
  514. */          snprintf(wsbuf,sizeof(wsbuf),
  515.                      "window.focus();window.resizeTo(%d,%d);",
  516.                      t1,t2); ws=wsbuf;
  517. /*          snprintf(wsbuf,sizeof(wsbuf),
  518.                      "window.focus();window.resizeTo(%d,%d);window.moveTo(%d,%d);",
  519.                      t1,t2,t3,t4); ws=wsbuf;
  520. */      }
  521.     }
  522.     else {
  523.         if(s1!=NULL && strcmp(s1,"new")==0)
  524.           ws="window.focus();window.resizeTo(800,640);window.moveTo(15,35);";
  525.     }
  526.     if(strstr(session_prefix,"_exam")!=NULL) {
  527. /*      char buf[64]; */
  528.         if(*ws==0) ws="window.focus();";
  529.         else ws= "window.focus();window.moveTo(5,70);";
  530. /*      snprintf(buf,sizeof(buf),"name.phtml.%s",lang);
  531.         phtml_put_base(buf);
  532.         phtml_put_base("jsclock.phtml"); */
  533.     }
  534.     s1=getvar("wims_html_header"); if(s1==NULL) s1="";
  535.     determine_font(getvar("module_language"));
  536.     s2=getvar("module_title"); if(s2!=NULL && *s2!=0) {
  537.         mystrncpy(hbuf,s2,sizeof(hbuf)); calc_detag(hbuf);
  538.         setvar("module_title2",hbuf);
  539.     }
  540.     mystrncpy(hbuf,s1,sizeof(hbuf)); substit(hbuf);
  541.     s2=getvar("wims_htmlbody"); if(s2==NULL) s2="";
  542.     bo=getvar("wims_html_bodyoption"); if(bo==NULL) bo="";
  543.     ws2=getvar("wims_html_onload"); if(ws2==NULL) ws2="";
  544.     snprintf(wsbuf2,sizeof(wsbuf2),"%s%s",ws,ws2);
  545.     setvar("wims_html_onload",wsbuf2);
  546.     if(wsbuf2[0]) ol=" onload="; else ol="";
  547. /*    output("<html xmlns=\"http://www.w3.org/1999/xhtml\"><head>%s\n\
  548. </head><body %s %s%s %s>\n", */
  549. /*    output("<html>\n\
  550. <head>%s\n\
  551. </head><body %s %s%s %s>\n",
  552.            hbuf,s2,ol,wsbuf2,bo);*/
  553.          if(ol[0]) {
  554.             output("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\
  555.             \n<html><head>%s\n\
  556.     </head>\n<body %s %s\"%s\" %s>\n",
  557.            hbuf,s2,ol,wsbuf2,bo);}
  558.            else {
  559.            output("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\
  560.             \n<html><head>%s\n\
  561.     </head>\n<body %s %s%s %s>\n",
  562.            hbuf,s2,ol,wsbuf2,bo);
  563.            }
  564.     exec_headmenu(p);
  565.     if(option) exec_title(p);
  566.     if(cmd_type==cmd_help) {
  567.         char *s=getvar("special_parm");
  568.         if(s==NULL) s="";
  569.         m_file.linepointer=m_file.linecnt;
  570.         if(strcmp(s,"about")==0) strcpy(hbuf,"about.phtml");
  571.         else strcpy(hbuf,"help.phtml");
  572.         exec_read(hbuf); exec_tail(p); /* param of exec_...() must be readable */
  573.         return;
  574.     }
  575.     header_executed=1;
  576. }
  577.  
  578. void exec_header(char *p) { _header(p,1);}
  579. void exec_header1(char *p) { _header(p,0);}
  580.  
  581. char href_target[128];
  582. char jsbuf[512];
  583. #define jsstr " onClick=\"%s=window.open('','%s','status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes')\""
  584. int ref_mhelp=0;
  585. int follow_list[]={
  586.     ro_session, ro_lang, ro_useropts, ro_module
  587. };
  588. #define follow_no (sizeof(follow_list)/sizeof(follow_list[0]))
  589.  
  590. void _httpfollow(char b1[], char *wn, int new)
  591. {
  592.     int i;
  593.     char *p1, *s, *ss, sb[MAX_LINELEN+1], qbuf[MAX_LINELEN+1];
  594.  
  595.     sb[0]=0;
  596.     for(i=0;i<follow_no;i++) {
  597.         if(robot_access && follow_list[i]==ro_session) continue;
  598.         if(!new && follow_list[i]!=ro_session
  599.            && follow_list[i]!=ro_module && follow_list[i]!=ro_lang)
  600.           continue;
  601.         if(follow_list[i]==ro_module) {
  602.             char *pp;
  603.             if(new) continue;
  604.             pp=strstr(b1,"cmd=");
  605.             if(pp==NULL) continue;
  606.             pp+=strlen("cmd=");
  607.             if(memcmp(pp,"intro",strlen("intro"))==0 ||
  608.                memcmp(pp,"new",strlen("new"))==0) continue;      
  609.         }
  610.         s=getvar(ro_name[follow_list[i]]);
  611.         ss=strstr(b1,ro_name[follow_list[i]]);
  612.         if(s!=NULL && *s!=0 &&
  613.            (ss==NULL || (ss>b1 && *(ss-1)!='&')
  614.             || *(ss+strlen(ro_name[follow_list[i]]))!='=')) {
  615.             if(follow_list[i]==ro_session && memcmp(href_target,"wims_",5)==0) {
  616.                 char st[MAX_LINELEN+1];
  617.                 char *s1;
  618.                 s1=getvar("wims_session");
  619.                 if(s1==NULL) internal_error("exec_href() error.\n");
  620.                 if(ref_mhelp) {
  621.                     if(strstr(s1,"_mhelp")!=0)
  622.                       snprintf(st,sizeof(st),"%s",s1);
  623.                     else
  624.                       snprintf(st,sizeof(st),"%s_mhelp",s1);
  625.                 }
  626.                 else snprintf(st,sizeof(st),"%.10s%s",s1,href_target+4);
  627.                 s=st;
  628.             }
  629.             snprintf(sb+strlen(sb),MAX_LINELEN-strlen(sb),"%s=%s&",
  630.                      ro_name[follow_list[i]],s);
  631.             if(ismhelp && follow_list[i]==ro_session &&
  632.                strstr(sb,"_mhelp")==NULL)
  633.               snprintf(sb+strlen(sb)-1,MAX_LINELEN-strlen(sb)+1,"_mhelp&");
  634.         }
  635.     }
  636.     snprintf(qbuf,MAX_LINELEN,"%s%s%s",wn,sb,b1);
  637.         /* cleaning up query string */
  638.     for(p1=qbuf;*p1;p1++) {
  639.         if(*p1=='"') string_modify(qbuf,p1,p1+1,"%22");
  640.         if(*p1=='&' && isalpha(*(p1+1))) {
  641.             p1++; string_modify(qbuf,p1,p1,"+");
  642.         }
  643.     }
  644.     mystrncpy(b1,qbuf,MAX_LINELEN);
  645. }
  646.  
  647.         /* Restart with a new module, using http code 302. */
  648. void exec_restart(char *p)
  649. {
  650.     char buf[MAX_LINELEN+1], *rfn, buf2[MAX_LINELEN+1];
  651. /*    long int t; */
  652.    
  653.     if(robot_access || outputing || !trusted_module() || is_class_module) return;
  654. /*    accessfile(buf,"r","%s/restart.time",s2_prefix);
  655.     t=atoi(buf); if(t==nowtime) return; */ /* possible looping */
  656.     mystrncpy(buf,find_word_start(p),sizeof(buf));
  657.     *find_word_end(buf)=0;
  658.     _httpfollow(buf,"",0);
  659.     nph_header(301);
  660.     rfn=strchr(ref_name,':'); if(rfn==NULL) {
  661.         usual: snprintf(buf2,sizeof(buf2),"%s?%s",ref_name,buf);
  662.     }
  663.     else {
  664.         char *p;
  665.         p=getvar("wims_protocol");
  666.         if(p!=NULL && strcmp(p,"https")==0) {
  667.             snprintf(buf2,sizeof(buf2),"https%s?%s",rfn,buf);
  668.         }
  669.         else goto usual;
  670.     }
  671.     printf("Location: %s\r\n\r\n\
  672. <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">\
  673. <html><body><a href=\"%s\">%s</a></body></html>",buf2,buf2,buf2);
  674.     close_working_file(&m_file,0); write_logs();
  675.     snprintf(buf,sizeof(buf),"%ld",nowtime);
  676. /*    accessfile(buf,"w","%s/restart.time",s2_prefix);
  677. */    delete_pid(); exit(0);
  678. }
  679.  
  680.         /* extract target tag from parm string. */
  681. void href_find_target(char *p)
  682. {
  683.     char *pp, *pe,buf1[MAX_LINELEN+1];
  684.     href_target[0]=0; jsbuf[0]=0; ref_mhelp=0;
  685.     for(pp=find_word_start(p);*pp!=0;pp=find_word_start(pe)) {
  686.         pe=find_word_end(pp);
  687.         if(strncasecmp(pp,"target=wims_",strlen("target=wims_"))!=0) continue;
  688.         memmove(buf1,pp,pe-pp); buf1[pe-pp]=0; substit(buf1);
  689.         if(strncasecmp(buf1,"target=wims_mhelp",strlen("target=wims_mhelp"))==0) {
  690.             if(*pe!=0) *pe++=0; strcpy(href_target,"wims_help");
  691.             ref_mhelp=1;
  692.         }
  693.         else {
  694.             if(*pe!=0) *pe++=0;
  695.             mystrncpy(href_target,buf1+strlen("target="),sizeof(href_target));
  696.         }
  697.         snprintf(jsbuf,sizeof(jsbuf),jsstr,href_target,href_target);
  698.         strcpy(pp,pe);return;
  699.     }
  700.     pp=getvar("module_help");
  701.     if(href_target[0]==0 && pp!=NULL && strcmp(pp,"popup")==0 &&
  702.        (pe=strstr(p,"cmd=help"))!=NULL) {
  703.         if(pe==p || *(pe-1)=='&') {
  704.             strcpy(href_target,"wims_help"); ref_mhelp=1;
  705.             snprintf(jsbuf,sizeof(jsbuf),jsstr,href_target,href_target);
  706.         }
  707.     }
  708. }
  709.  
  710. void _href_getdef(char src[], char vname[], char buf[], int buflen)
  711. {
  712.     char *p1, *p2, *p3;
  713.     buf[0]=0;
  714.     for(p1=strstr(src,vname); p1; p1=strstr(p2,vname)) {
  715.         p2=p1+strlen(vname); if(*p2!='=') continue;
  716.         if(p1>src && *(p1-1)!='&') continue;
  717.         p2++; p3=strchr(p2,'&'); if(p3==NULL) p3=p2+strlen(p2);
  718.         if(p3-p2>=buflen) return; /* too long */
  719.         memmove(buf,p2, p3-p2); buf[p3-p2]=0; return;
  720.     }
  721. }
  722.  
  723.         /* Create href to wims requests. subst() is not done. */
  724. void exec_href(char *p)
  725. {
  726.     char *s, st[128], sti[128], stc[128], *p1, *p2, *p3, *wn="";
  727.     char *U="<u><font color=\"#A0A0C0\">%s</font></u>";
  728.     char b1[MAX_LINELEN+1], b2[MAX_LINELEN+1];
  729.     int new=0;
  730.     if(!outputing) return;
  731.     href_find_target(p);
  732.     p1=find_word_start(p);
  733.     p2=find_word_end(p1); if(*p2) *(p2++)=0;
  734.     mystrncpy(b1,p1,sizeof(b1));
  735.     mystrncpy(b2,find_word_start(p2),sizeof(b2));
  736.     substit(b1); substit(b2);
  737.         /* standard reference */
  738.     if(*b2==0 && strchr(b1,'=')==NULL) {
  739.         char b[MAX_LINELEN+1], *ll;
  740.         p1=find_word_start(b1); *find_word_end(p1)=0;
  741.         if(*p1==0 || strlen(p1)>64) return;
  742.         ll=getvar("module_language");
  743.         if(ll==NULL || *ll==0 || *(ll+1)==0 || *(ll+2)!=0) ll=lang;
  744.         accessfile(b,"r","html/href.%s",ll);
  745.         memmove(p1+1,p1,64); *p1='\n'; strcat(p1,"      ");
  746.         p2=strstr(b,p1); if(p2==NULL) return;
  747.         p1=find_word_start(p2+strlen(p1)); p2=find_word_end(p1);
  748.         if(*p2) *(p2++)=0;
  749.         p3=strchr(p2,'\n'); if(p3!=NULL) *p3=0;
  750.         mystrncpy(b1,p1,sizeof(b1));
  751.         mystrncpy(b2,find_word_start(p2),sizeof(b2));
  752.         substit(b1); substit(b2);
  753.     }
  754.         /* for robots: only references without defining cmd. */
  755.     if(robot_access && strstr(b1,"cmd=")!=NULL &&
  756.        strstr(b1,"module=adm/doc")==NULL) {
  757.         _output_(b2); return;
  758.     }
  759.     if(robot_access && strstr(aliased_cgi,"yes")!=NULL) {
  760.         char mbuf[256], lbuf[16];
  761.         _href_getdef(b1,"module",mbuf,sizeof(mbuf));
  762.         if(mbuf[0]==0) mystrncpy(mbuf,home_module,sizeof(mbuf));
  763.         _href_getdef(b1,"lang",lbuf,sizeof(lbuf));
  764.         if(strlen(lbuf)!=2) {mystrncpy(lbuf,lang,4);lbuf[2]=0;}
  765.         if(strncmp(mbuf,"adm/doc",strlen("adm/doc"))==0) {
  766.             char dbuf[256], bbuf[256];
  767.             _href_getdef(b1,"doc",dbuf,sizeof(dbuf));
  768.             _href_getdef(b1,"block",bbuf,sizeof(bbuf));
  769.             if(!myisdigit(dbuf[0])) dbuf[0]=0;
  770.             if(dbuf[0]!=0 && bbuf[0]==0) snprintf(bbuf,sizeof(bbuf),"main");
  771.             if(dbuf[0]==0)
  772.               output("<a href=\"%s%s_doc~.html\">%s</a>", ref_base,lbuf,b2);
  773.             else
  774.               output("<a href=\"%s%s_doc~%s~%s.html\">%s</a>",
  775.                      ref_base,lbuf,dbuf,bbuf,b2);
  776.         }
  777.         else {
  778.             for(s=strchr(mbuf,'/'); s!=NULL; s=strchr(s+1,'/')) *s='~';
  779.             output("<a href=\"%s%s_%s.html\">%s</a>", ref_base,lbuf,mbuf,b2);
  780.         }
  781.         return;
  782.     }
  783.     s=getvar("wims_ref_id");
  784.     if(s!=NULL && *s!=0 && !isspace(*s)) {
  785.         snprintf(sti,sizeof(sti)," id=\"%s\"",s);
  786.     }
  787.     else sti[0]=0;
  788.    
  789.     s=getvar("wims_ref_class");
  790.     if(s!=NULL && *s!=0 && !isspace(*s)) {
  791.         snprintf(stc,sizeof(stc)," class=\"%s\"",s);
  792.     }
  793.     else stc[0]=0;
  794.    
  795.     s=getvar("wims_ref_target");
  796.     if(href_target[0]!=0) s=href_target;
  797.     if(s!=NULL && *s!=0 && !isspace(*s)) {
  798.         snprintf(st,sizeof(st)," target=\"%s\"",s);
  799.         if(strcmp(s,"_parent")!=0) {
  800.             new=1; wn="wims_window=new&";
  801.         }
  802.     }
  803.     else st[0]=0;
  804.     _httpfollow(b1,wn,new);
  805.     tohttpquery(b1);
  806.     if(strstr(session_prefix,"_check")!=NULL) {
  807.         if(*b2) output(U,b2);
  808.         else _output_("<a name=\"0\">");
  809.         return;
  810.     }
  811.     if(jsbuf[0]==0 && st[0]==0 && strstr(session_prefix,"_exam")!=NULL) {
  812.         p1=strstr(b1,"cmd="); if(p1!=NULL) {
  813.             p1+=strlen("cmd=");
  814.             if(strncmp(p1,"new",3)==0 || strncmp(p1,"renew",5)==0 ||
  815.                strncmp(p1,"intro",5)==0) {
  816.                 if(*b2) output(U,b2);
  817.                 else _output_("<a name=\"#\">");
  818.                 return;
  819.             }
  820.         }
  821.     }
  822.     if(*b2)
  823.       output("<a href=\"%s?%s\"%s%s %s %s>%s</a>",
  824.              ref_name, b1, st, jsbuf,sti,stc, b2);
  825.     else
  826.       output("<a href=\"%s?%s\"%s%s %s %s>",ref_name, b1, st, jsbuf,sti,stc);
  827.     setvar("wims_ref_id"," ");
  828.     setvar("wims_ref_class"," ");
  829. }
  830.  
  831.         /* Create form refering to the page. */
  832. void exec_form(char *p)
  833. {
  834.     char *s, *p1, *p2, *a, *m, *opt, st[128], *wn="";
  835.     char abuf[128];
  836.     int i, new=0;
  837.     if(!outputing) return;
  838.     href_find_target(p);
  839.     s=getvar("wims_ref_target");
  840.     if(href_target[0]!=0) s=href_target;
  841.     if(s!=NULL && *s!=0 && !isspace(*s)) {
  842.         snprintf(st,sizeof(st)," target=\"%s\"",s);
  843.         if(strcmp(s,"_parent")!=0) {
  844.             new=1; wn="<input type=hidden name=wims_window value=yes>\n";
  845.         }
  846.     }
  847.     else st[0]=0;
  848.     a=getvar("wims_ref_anchor"); if(a==NULL) a="";
  849.     opt=find_word_start(find_word_end(find_word_start(p)));
  850.     m=getvar("wims_form_method");
  851.     if(m!=NULL) {
  852.         m=find_word_start(m);
  853.         if(strncasecmp(m,"post",4)==0) m="post";
  854.         else if(strncasecmp(m,"get",3)==0) m="get";
  855.         else if(strncasecmp(m,"file",4)==0) {
  856.             m="post\" enctype=\"multipart/form-data";
  857.             snprintf(abuf,sizeof(abuf),"?form-data%ld%s",random(),a); a=abuf;
  858.             force_setvar("wims_form_method","");
  859.         }
  860.         else m=default_form_method;
  861.     }
  862.     else m=default_form_method;
  863.     if(strstr(session_prefix,"_check")!=NULL) {
  864.         output("<p><form action=\"NON_EXISTING_PAGE\" onsubmit=\"window.close();\" %s>\n",
  865.                opt);
  866.         return;
  867.     }
  868.     output("<p><form action=\"%s%s\"%s method=\"%s\" %s>\n%s",ref_name,a,st,m,opt,wn);
  869.     if(a!=abuf && a[0]) force_setvar("wims_ref_anchor","");
  870.     for(i=0;i<follow_no;i++) {
  871.         if(robot_access && follow_list[i]==ro_session) continue;
  872.         if(!new && follow_list[i]!=ro_session
  873.            && follow_list[i]!=ro_module && follow_list[i]!=ro_lang)
  874.           continue;
  875.         if(follow_list[i]==ro_module) continue;
  876.         s=getvar(ro_name[follow_list[i]]);
  877.         if(s!=NULL && *s!=0) {
  878.             if(follow_list[i]==ro_session && memcmp(href_target,"wims_",5)==0) {
  879.                 char st[MAX_LINELEN+1];
  880.                 char *s1;
  881.                 s1=getvar("wims_session");
  882.                 if(s1==NULL) internal_error("exec_form() error.\n");
  883.                 snprintf(st,sizeof(st),"%.10s%s",s1,href_target+4);
  884.                 s=st;
  885.             }
  886.             output("<input type=hidden name=%s value=\"%s\">\n",
  887.                    ro_name[follow_list[i]],s);
  888.         }
  889.     }
  890.     p1=find_word_start(p);p2=find_word_end(p1);
  891.     if(p2>p1) {
  892.         char buf[64];
  893.         int i;
  894.         i=p2-p1; if(i>60) i=60;
  895.         memmove(buf,p1,i);buf[i]=0;
  896.         for(i=0;i<CMD_NO && strcmp(buf,commands[i]);i++);
  897.         if(i<CMD_NO) {
  898.             output("<input type=hidden name=cmd value=\"%s\">\n",buf);
  899.             if(i!=cmd_intro && i!=cmd_new)
  900.               output("<input type=hidden name=module value=\"%s\">\n",
  901.                      getvar(ro_name[ro_module]));
  902.         }
  903.     }
  904. }
  905.  
  906.         /* Creat link to trap robot access, an internal command
  907.          * which should not be documented */
  908. void exec_robottrap(char *p)
  909. {
  910.     char buf[MAX_LINELEN+1];
  911.     if(robot_access) return;
  912.     strcpy(buf,"session=$wims_session.1&module=adm/trap");
  913.     _output_("<!-- >"); exec_href(buf);
  914.     _output_("Robot trapper, do not click!</a> < -->");
  915.     exec_href(buf); _output_("<font></font></a>");
  916. }
  917.  
  918.         /* set definitions in a file. Trusted modules only. */
  919. void exec_setdef(char *p)
  920. {
  921.     char *p1, *pp;
  922.     char nbuf[MAX_LINELEN+1], fbuf[MAX_LINELEN+1], tbuf[MAX_LINELEN+1];
  923.     if(robot_access || !trusted_module() || is_class_module) return;
  924.     p1=wordchr(p,"in"); if(p1==NULL) module_error("syntax_error");
  925.     *p1=0; p1=find_word_start(p1+strlen("in"));
  926.     strcpy(nbuf,p);
  927.     mystrncpy(tbuf,p1,sizeof(tbuf));
  928.     substit(nbuf); substit(tbuf);
  929.     if(find_module_file(tbuf,fbuf,1)) return;
  930.     pp=find_word_start(nbuf); p1=find_word_start(fbuf); *find_word_end(p1)=0;
  931.     strip_trailing_spaces(pp);
  932.     setdef(p1,pp);
  933. }
  934.  
  935.         /* Set a variable. */
  936. void exec_set(char *name)
  937. {
  938.     char *p, *defn, *parm;
  939.     char tbuf2[MAX_LINELEN+1], namebuf[MAX_LINELEN+1];
  940.     int i;
  941.  
  942.     p=strchr(name,'=');
  943.     if(p==NULL) return; /* warning or error! */
  944.     *p=0; defn=find_word_start(p+1);
  945.     *find_word_end(name)=0;
  946.     mystrncpy(namebuf,find_word_start(name),sizeof(namebuf));
  947.         /* we allow substit in names, to implement array */
  948.     substit(namebuf); *find_word_end(namebuf)=0;    
  949.     if(*defn!=calc_prefix_char) {
  950.         /* substitute by default */
  951.         mystrncpy(tbuf2,defn,sizeof(tbuf2));
  952.         substit(tbuf2); setvar(namebuf,tbuf2); return;
  953.     }
  954.         /* called from !readdef */
  955.     if((untrust&4)!=0) module_error("not_trusted");
  956.         /* definition is a command  */
  957.     parm=find_word_end(defn+1);
  958.     if( *parm != 0 ) { *parm=0; parm=find_word_start(parm+1); }
  959.     i=m_file.lines[m_file.l].varcode;
  960.     if(i<0) {
  961.         i=search_list(calc_routine,CALC_FN_NO,sizeof(calc_routine[0]),defn+1);
  962.         m_file.lines[m_file.l].varcode=i;
  963.     }
  964.     if(i<0) {
  965.             /* replace by warning? */
  966.         setvar(error_data_string,defn+1); module_error("bad_cmd");
  967.         return;
  968.     }
  969.     mystrncpy(tbuf2,parm,sizeof(tbuf2)); execnt++;
  970.     if(calc_routine[i].tag==0) substit(tbuf2);
  971.     tbuf2[sizeof(tbuf2)-1]=0; calc_routine[i].routine(tbuf2);
  972.                 /* remove trailing new line */
  973.     tbuf2[sizeof(tbuf2)-1]=0;
  974.     if(tbuf2[strlen(tbuf2)-1]=='\n') tbuf2[strlen(tbuf2)-1]=0;
  975.     setvar(namebuf,tbuf2);
  976. }
  977.  
  978.         /* set but do not overwrite. */
  979. void exec_default(char *p)
  980. {
  981.     char *start, *end, c, *pp;
  982.     char namebuf[MAX_LINELEN+1];
  983.     start=find_word_start(p);
  984.     for(end=start;*end!=0 && !isspace(*end) && *end!='='; end++);
  985.     c=*end; *end=0;
  986.     if(end-start<=MAX_LINELEN-1) {
  987.         memmove(namebuf,start,end-start+1); substit(namebuf);
  988.         pp=getvar(namebuf);
  989.         if(pp!=NULL && *pp!=0) return;
  990.     }
  991.     *end=c; exec_set(p);
  992. }
  993.  
  994.         /* Does nothing; just a comment. */
  995. void exec_comment(char *p)
  996. {
  997.     return;
  998. }
  999.  
  1000.         /* Exit the file under interpretation */
  1001. void exec_exit(char *p)
  1002. {
  1003.     m_file.linepointer=m_file.linecnt;
  1004.     return;
  1005. }
  1006.  
  1007.         /* output a file. Undocumented. Aliases:
  1008.          * getfile, outfile, fileout */
  1009. void exec_getfile(char *p)
  1010. {
  1011.     char *s, *p1, url[MAX_LINELEN+1];
  1012.     char *prompt;
  1013.    
  1014.     p=find_word_start(p); prompt=find_word_end(p);
  1015.     if(*prompt!=0) *prompt++=0;
  1016.     prompt=find_word_start(prompt);
  1017.     if(*p==0 || !outputing) return;
  1018.     if(!trusted_module() || is_class_module) return;
  1019.     s=getvar(ro_name[ro_session]);
  1020.     if(s==NULL || *s==0 || strstr(s,"robot")!=NULL) return;
  1021.     mystrncpy(url,ref_name,sizeof(url));
  1022.     for(p1=url+strlen(url);p1>url && *(p1-1)!='/'; p1--);
  1023.     if(good_httpd) snprintf(p1,sizeof(url)+p1-url,
  1024.                             "getfile/%s?&+session=%s&+modif=%ld",
  1025.                             p,s,nowtime);
  1026.     else snprintf(url,sizeof(url),
  1027.                   "%s?cmd=getfile&+session=%s&+special_parm=%s&+modif=%ld",
  1028.                   ref_name,s,p,nowtime);
  1029.     snprintf(jsbuf,sizeof(jsbuf),jsstr,"wims_file","wims_file");
  1030.     if(*prompt) output("<a href=\"%s\">%s</a>\n", url,prompt);
  1031.     else output("<a href=\"%s\"></a>",url);
  1032. }
  1033.  
  1034.         /* internal */
  1035. void count_insert(void)
  1036. {
  1037.     insert_no++;
  1038.     if(insert_no>=INS_LIMIT) module_error("too_many_ins");
  1039. }
  1040.  
  1041. int animated_ins=0;
  1042. int grouped_ins=0;
  1043.  
  1044.         /* generic insertion */
  1045. void _exec_ins(char *p, char *script_name,char *format)
  1046. {
  1047.     char *s, *b, *at, *tag, *tag2, *al, *fmt, *mh;
  1048.     char *p1, *pt;
  1049.     char buf[1024],buf2[1024],url[MAX_LINELEN+1],altbuf[1024];
  1050.     char outbuf[1024];
  1051.     int border, middle, vspace;
  1052.     long int tel;
  1053.  
  1054.     if(robot_access) return;
  1055.     count_insert(); outbuf[0]=0;
  1056.     setenv("ins_source",p,1); /* value kept from user tamper */
  1057.     if(animated_ins) fmt=getvar("anim_format"); else fmt=format;
  1058.     if(fmt==NULL) fmt="gif";
  1059.     if(ismhelp) mh="mh"; else mh="";
  1060.     snprintf(buf,sizeof(buf),"%s/insert%s-%d.%s",s2_prefix,mh,insert_no,fmt);
  1061.     if(grouped_ins) {unlink(buf); goto grouped;}
  1062.     exportall();
  1063.     call_ssh("%s/%s %d %s >%s/ins.out 2>%s/ins.err",
  1064.             bin_dir,script_name,insert_no,tmp_dir,tmp_dir,tmp_dir);
  1065.     unlink(buf); wrapexec=1;
  1066.     if(trusted_module()) setenv("trusted_module","yes",1);
  1067.     else if(untrust) setenv("trusted_module","no",1);
  1068.     call_ssh("mv %s/insert%s-%d.%s %s >/dev/null 2>/dev/null",
  1069.              tmp_dir,mh,insert_no,fmt,s2_prefix);
  1070.     tel=filelength("%s", buf);
  1071.     if(tel<=5) {
  1072.         char bbuf[MAX_LINELEN+1];
  1073.         accessfile(bbuf,"r","%s/ins.err",tmp_dir);
  1074.         snprintf(url,sizeof(url),"gifs/badins.gif");
  1075.         for(p1=bbuf;p1<bbuf+512 && *p1;p1++)
  1076.           if(*p1=='<' || *p1=='>') *p1='?';
  1077.         *p1=0;
  1078.         if(bbuf[0]==0) snprintf(bbuf,sizeof(bbuf),"Fail");
  1079.         snprintf(outbuf+strlen(outbuf),sizeof(outbuf)-strlen(outbuf),
  1080.                  " <img src=\"%s\" alt=Error> <p><small><pre>%s</pre></small> <p> ",
  1081.                  url,bbuf);
  1082.         setvar("ins_warn","fail");
  1083.         setvar("ins_cnt","0");
  1084.         goto reset;
  1085.     }
  1086.     grouped:
  1087.     s=getvar(ro_name[ro_session]);
  1088.     b=getvar("ins_border"); at=getvar("ins_attr");
  1089.     tag=getvar("ins_tag");  al=getvar("ins_align");
  1090.     if(at==NULL) at="";
  1091.     if(tag==NULL) tag="";
  1092.     if(al==NULL) al="";al=find_word_start(al);
  1093.     if(*al!=0) snprintf(buf2,sizeof(buf2),"align=%s",al); else buf2[0]=0;
  1094.     if(strcasecmp(al,"middle")==0) middle=1; else middle=0;
  1095.     tag2=""; vspace=0;
  1096.     if(*tag!=0) {
  1097.         mystrncpy(buf,tag,sizeof(buf)); tag=find_word_start(buf);
  1098.         tag2=find_word_end(tag);
  1099.         if(*tag2!=0) *tag2++=0;
  1100.         tag2=find_word_start(tag2);
  1101.     }
  1102.     if(b==NULL || *b==0) border=0;
  1103.     else border=atoi(b);
  1104.     if(border<0) border=0; if(border>100) border=100;
  1105.     if(middle) {
  1106.         snprintf(outbuf+strlen(outbuf),
  1107.                  sizeof(outbuf)-strlen(outbuf),mathalign_sup1);
  1108.         vspace=2;
  1109.     }
  1110.     mystrncpy(url,ref_name,sizeof(url));
  1111.     for(p1=url+strlen(url);p1>url && *(p1-1)!='/'; p1--);
  1112.     snprintf(p1,sizeof(url)+p1-url,
  1113.              "wims.%s?cmd=getins&+session=%s&+special_parm=insert%s-%d.%s&+modif=%ld",
  1114.              fmt,s,mh,insert_no,fmt,nowtime);
  1115.     if(strchr(ins_alt,'"')!=NULL || strlen(ins_alt)>256) ins_alt[0]=0;
  1116.     pt=getvar("wims_ins_alt"); if(pt==NULL) pt="";
  1117.     if(ins_alt[0] && strcmp(pt,"none")!=0)
  1118.       snprintf(altbuf,sizeof(altbuf)," alt=\"%s \"",ins_alt);
  1119.     else altbuf[0]=0;
  1120.     if(strcasecmp(tag,"form")!=0) {
  1121.         snprintf(outbuf+strlen(outbuf),sizeof(outbuf)-strlen(outbuf),
  1122.                  "<img src=\"%s\" border=%d vspace=%d %s %s%s>",
  1123.                  url, border, vspace, at, buf2, altbuf);
  1124.     }
  1125.     else {
  1126.         char *n;
  1127.         if(*tag2!=0) n="name="; else n="";
  1128.         snprintf(outbuf+strlen(outbuf),sizeof(outbuf)-strlen(outbuf),
  1129.                  "<input type=image %s%s src=\"%s\" border=%d vspace=%d %s %s%s>",
  1130.                  n,tag2,url,border,vspace, at,buf2, altbuf);
  1131.     }
  1132.     if(middle) snprintf(outbuf+strlen(outbuf),
  1133.                         sizeof(outbuf)-strlen(outbuf),mathalign_sup2);
  1134.     setvar("ins_warn",""); ins_alt[0]=0;
  1135.     setvar("ins_cnt",int2str(insert_no));
  1136.     reset:
  1137.     if(outputing) _output_(outbuf);
  1138.     setvar("ins_out",outbuf);
  1139.     setvar("ins_attr",""); setvar("ins_tag","");
  1140.     setvar("ins_url",url);
  1141.     snprintf(buf2,sizeof(buf2),"insert%s-%d.%s",mh,insert_no,fmt);
  1142.     setvar("ins_filename",buf2);
  1143.     animated_ins=0;
  1144. }
  1145.  
  1146.         /* instex: dynamically insert tex outputs */
  1147. void exec_instex(char *p)
  1148. {
  1149.     char *ts, *tc, *f, *mh, buf[MAX_FNAME+1];
  1150.    
  1151.     if(robot_access) {
  1152.         *p=0; return;
  1153.     }
  1154.     f=instex_check_static(p); substit(p);
  1155.     if(f==NULL) {
  1156.         /* Use static instex if there is no real substitution
  1157.          * and the source file is not in sessions directory. */
  1158.         calc_instexst(p); if(outputing) _output_(p);
  1159.         return;
  1160.     }
  1161.     if(ismhelp) mh="mh"; else mh="";
  1162.     fix_tex_size(); f="gif";
  1163.     setenv("texgif_style",instex_style,1);
  1164.     setenv("texgif_tmpdir",tmp_dir,1);
  1165.     setenv("texgif_src",p,1);
  1166.     if(ins_alt[0]==0) mystrncpy(ins_alt,p,sizeof(ins_alt));
  1167.     mkfname(buf,"%s/insert%s-%d.gif",tmp_dir,mh,insert_no+1);
  1168.     setenv("texgif_outfile",buf,1);
  1169.     ts=getvar("wims_texsize"); tc=getvar("instex_color");
  1170.     if(lastout_file!=-1 && (tc==NULL || *tc==0) &&      
  1171.        (ts==NULL || *ts==0 || strcmp(ts,"0")==0) &&
  1172.        strstr(p,"\\begin{")==NULL) {
  1173.         int ls, ln;
  1174.         char *pagebreak;
  1175.         ls=strlen(instex_src); ln=strlen(instex_fname);
  1176.         if(ls+strlen(p)>=MAX_LINELEN-256 ||
  1177.            ln+strlen(buf)>=MAX_LINELEN-16) {
  1178.             instex_flush(); ls=ln=0;
  1179.         }
  1180.         if(instex_cnt>0) pagebreak="\\pagebreak\n"; else pagebreak="";
  1181.         snprintf(instex_src+ls,MAX_LINELEN-ls,"%s %s %s %s\n",
  1182.                  pagebreak,instex_style,p,instex_style);
  1183.         snprintf(instex_fname+ln,MAX_LINELEN-ln,"%s\n",buf);
  1184.         grouped_ins=1;
  1185.     }
  1186.     mkfname(buf,"%s/texgif.dvi",tmp_dir); unlink(buf);
  1187.     wrapexec=0; _exec_ins(p,instex_processor,f);
  1188.     if(grouped_ins) instex_cnt++;
  1189.     grouped_ins=0;
  1190. }
  1191.  
  1192.         /* patches the gnuplot integer division (mis)feature. */
  1193. void gnuplot_patch(char *p,int oneline)
  1194. {
  1195.     char *pp;
  1196.     for(pp=strchr(p,'/');pp!=NULL;pp=strchr(pp+1,'/')) {
  1197.         char *p1;
  1198.         if(pp<=p || !myisdigit(*(pp-1)) || !myisdigit(*(pp+1))) continue;
  1199.         for(p1=pp-2;p1>=p && myisdigit(*p1);p1--);
  1200.         if(p1>=p && *p1=='.') continue;
  1201.         for(p1=pp+2;*p1 && myisdigit(*p1);p1++);
  1202.         if(*p1=='.') continue;
  1203.         string_modify(p,p1,p1,".0");
  1204.     }
  1205.     for(pp=strchr(p,'^');pp!=NULL;pp=strchr(pp+1,'^'))
  1206.       string_modify(p,pp,pp+1,"**");
  1207.         /* disallow new lines and ';' */
  1208.     if(oneline)
  1209.       for(pp=p;*pp!=0;pp++) if(*pp==';' || *pp=='\n') *pp=' ';
  1210. }
  1211.  
  1212.         /* This is to disable pipe in the gnuplot plotting function.
  1213.          * We do not allow ' followed by < . */
  1214. void prepare_insplot_parm(char *p)
  1215. {
  1216.     int i,j,multanim; char *pp, *s;
  1217.     double d;
  1218.     char setbuf[MAX_LINELEN+10],buf[MAX_LINELEN+1];
  1219.    
  1220.     j=strlen(p);
  1221.       /* pipe in plot command */
  1222.     for(i=0;i<j;i++) {
  1223.         if(*(p+i)!='\'' && *(p+i)!='"') continue;
  1224.         pp=find_word_start(p+i+1); if(*pp=='<') module_error("illegal_plot_cmd");
  1225.     }
  1226.     gnuplot_patch(p,1);
  1227.         /* multiplot */
  1228.     multanim=0;
  1229.     pp=getvar("insplot_split");
  1230.     if(pp!=NULL) i=linenum(pp); else i=0;
  1231.         /* arbitrary limit: 16 multiplots */
  1232.     if(i>16) i=16;
  1233.     if(i>1) {
  1234.         char tbuf[MAX_LINELEN*(i+1)+100], bbuf[MAX_LINELEN+1];
  1235.         tbuf[0]=0;
  1236.         if(*p!=0) snprintf(tbuf,sizeof(tbuf),"%s\n",p);
  1237.         snprintf(buf,sizeof(buf),"%d",i); setenv("multiplot",buf,1);
  1238.         for(j=1;j<=i;j++) {
  1239.             snprintf(buf,sizeof(buf),"insplot_parm_%d",j);
  1240.             pp=getvar(buf);
  1241.             if(pp==NULL || *pp==0) {
  1242.                 if(j==1 && *p!=0) continue;
  1243.                 pp="";
  1244.             }
  1245.             else {
  1246.                 mystrncpy(bbuf,pp,sizeof(bbuf));
  1247.                 gnuplot_patch(bbuf,1);
  1248.             }
  1249.             strcat(tbuf,bbuf);strcat(tbuf,"\n");
  1250.         }
  1251.         setenv("insplot_source",tbuf,1);
  1252.         if(varchr(tbuf,"s")!=NULL) multanim=1;
  1253.     }
  1254.         /* no illegal chaining */
  1255.     pp=getvar("insplot_font"); if(pp!=NULL) {
  1256.         for(s=pp;s<pp+MAX_LINELEN && *s;s++)
  1257.           if(*s==';' || *s=='\n' || *s==' ') *s=0;
  1258.         if(s>=pp+MAX_LINELEN) *s=0;
  1259.         setvar("insplot_font",pp);
  1260.     }
  1261.     pp=getvar("insplot_set"); if(pp!=NULL) {
  1262.         char tbuf[MAX_LINELEN+1];
  1263.         mystrncpy(tbuf,pp,sizeof(tbuf));
  1264.         i=strlen(tbuf)-1;
  1265.         while(i>0 && isspace(tbuf[i])) i--;
  1266.         if(tbuf[i]==';') tbuf[i]=0;
  1267.         gnuplot_patch(tbuf,0);pp=tbuf;
  1268.         strcpy(setbuf,"set "); j=strlen("set ");
  1269.         for(i=0; *(pp+i)!=0 && j<MAX_LINELEN; i++) {
  1270.             if(*(pp+i)=='\n') {setbuf[j++]=' '; continue;}
  1271.             if(*(pp+i)!=';') {setbuf[j++]=*(pp+i); continue;}
  1272.             strcpy(setbuf+j,"\nset "); j+=strlen("\nset ");
  1273.         }
  1274.         setbuf[j]=0;
  1275.         setenv("insplot_set",setbuf,1);
  1276.     }
  1277.     else setenv("insplot_set","",1);
  1278.       /* frames of animation */
  1279.     pp=getvar("ins_anim_frames");
  1280.     if(pp!=NULL) i=evalue(pp); else i=1;
  1281.     if(i>=ANIM_LIMIT) i=ANIM_LIMIT-1; if(i<1) i=1;
  1282.     if(strstr(setbuf,"step")==NULL && strstr(p,"step")==NULL
  1283.        && varchr(setbuf,"s")==NULL && varchr(p,"s")==NULL && !multanim) i=1;
  1284.     setenv("ins_anim_frames",int2str(i),1);
  1285.     setvar("ins_anim_frames","");
  1286.     if(i>1) {setvar("ins_animation","yes");animated_ins=1;}
  1287.     else setvar("ins_animation","no");
  1288.       /* delay of animation */
  1289.     pp=getvar("ins_anim_delay");
  1290.     if(pp!=NULL) d=evalue(pp); else d=0;
  1291.     if(d>=10) d=10; if(d<0) d=0;
  1292.     setenv("ins_anim_delay",int2str(d*100),1);
  1293. }
  1294.  
  1295.         /* Insert dynamic 2d plot */
  1296. void exec_insplot(char *p)
  1297. {
  1298.     char *fmt;
  1299.     if(robot_access) {
  1300.         *p=0; return;
  1301.     }
  1302.     fmt=getvar("ins_format"); if(fmt==NULL || *fmt==0) fmt=DEFAULT_INS_FORMAT;
  1303.     prepare_insplot_parm(p); setenv("insplot_method","2D",1);
  1304.     _exec_ins(p,insplot_processor,fmt);
  1305.     wrapexec=1;
  1306. /*    call_ssh("mv %s/insplot_cmd %s 2>/dev/null",tmp_dir,s2_prefix); */
  1307.     unsetenv("multiplot"); setvar("insplot_split","");
  1308. }
  1309.  
  1310.         /* Insert dynamic 3d plot */
  1311. void exec_insplot3d(char *p)
  1312. {
  1313.     char *fmt;
  1314.     if(robot_access) {
  1315.         *p=0; return;
  1316.     }
  1317.     fmt=getvar("ins_format"); if(fmt==NULL || *fmt==0) fmt=DEFAULT_INS_FORMAT;
  1318.     prepare_insplot_parm(p); setenv("insplot_method","3D",1);
  1319.     _exec_ins(p,insplot_processor,fmt);
  1320.     wrapexec=1;
  1321. /*     call_ssh("mv %s/insplot_cmd %s 2>/dev/null",tmp_dir,s2_prefix); */
  1322.     unsetenv("multiplot");setvar("insplot_split","");
  1323. }
  1324.  
  1325.         /* Insert dynamic gif draw. The parm preparation is specific to fly. */
  1326. void exec_insdraw(char *p)
  1327. {
  1328.     char *pp, *fmt;
  1329.     int i;
  1330.     double d;
  1331.    
  1332.     if(robot_access) {
  1333.         *p=0; return;
  1334.     }
  1335. /*    calc_tolower(p);  */
  1336.     fmt=getvar("ins_format"); if(fmt==NULL || *fmt==0) fmt=DEFAULT_INS_FORMAT;
  1337.     while((pp=wordchr(p,"output"))!=NULL) memmove(pp,"zqkwfx",6);
  1338.       /* frames of animation */
  1339.     pp=getvar("ins_anim_frames");
  1340.     if(pp!=NULL) i=evalue(pp); else i=1;
  1341.     if(i>=ANIM_LIMIT) i=ANIM_LIMIT-1; if(i<1) i=1;
  1342.     if(i>1 && varchr(p,"s")==NULL && varchr(p,"animstep")==NULL
  1343.        && varchr(p,"step")==NULL) i=1;
  1344.     setenv("ins_anim_frames",int2str(i),1);
  1345.     setvar("ins_anim_frames","");
  1346.     if(i>1) {setvar("ins_animation","yes");animated_ins=1;}
  1347.     else setvar("ins_animation","no");
  1348.       /* delay of animation */
  1349.     pp=getvar("ins_anim_delay");
  1350.     if(pp!=NULL) d=evalue(pp); else d=0;
  1351.     if(d>=10) d=10; if(d<0) d=0;
  1352.     setenv("ins_anim_delay",int2str(d*100),1);
  1353.     pp=getvar("insdraw_filebase");
  1354.     if(pp!=NULL && strstr(pp,parent_dir_string)!=NULL)
  1355.       setvar("insdraw_filebase","");
  1356.     _exec_ins(p,insdraw_processor,fmt);
  1357. }
  1358.  
  1359. void exec_increase(char *p)
  1360. {
  1361.     char *p1, *p2;
  1362.     p1=find_word_start(p); p2=find_word_end(p1);
  1363.     if(p2<=p1) {
  1364.         *p=0; return;
  1365.     }
  1366.     *p2=0;p2=getvar(p1);
  1367.     if(p2==NULL) p2="";
  1368.     setvar(p1,int2str(atoi(p2)+1)); *p=0;
  1369. }
  1370.  
  1371.         /* bound a variable */
  1372. void exec_bound(char *p)
  1373. {
  1374.     char *p1, *p2, *p3;
  1375.     int doub,i,bcnt,defaulted;
  1376.     double d1,d2,dd,val;
  1377.     char nbuf[MAX_LINELEN+1],lbuf[MAX_LINELEN+1],dbuf[MAX_LINELEN+1];
  1378.     char vbuf[MAX_LINELEN+1];
  1379.     char *blist[2048];
  1380.    
  1381.     p1=find_word_start(p); p2=find_word_end(p1);
  1382.     if(*p2==0) {
  1383.         syntax: module_error("syntax_error");
  1384.     }
  1385.     *p2=0; strcpy(nbuf,p1);substit(nbuf); p1=find_word_start(p2+1);
  1386.     p2=getvar(nbuf);if(p2==NULL) p2="";
  1387.     mystrncpy(vbuf,find_word_start(p2),sizeof(vbuf));
  1388.     strip_trailing_spaces(vbuf);
  1389.     p2=find_word_end(p1); if(*p2==0) goto syntax;
  1390.     *p2=0;p2++;
  1391.     p3=wordchr(p2,"default");
  1392.     if(p3!=NULL) {
  1393.         *p3=0; defaulted=1;
  1394.         p3=find_word_start(p3+strlen("default"));
  1395.         strcpy(dbuf,p3); substit(dbuf);
  1396.     }
  1397.     else defaulted=0;
  1398.     if(strcmp(p1,"between")==0) {
  1399.         p1=find_word_start(p2);
  1400.         i=strlen("integer");
  1401.         if(strncmp(p1,"integer",i)==0 &&
  1402.            (isspace(*(p1+i)) || (*(p1+i)=='s' && isspace(*(p1+i+1))))) {
  1403.             doub=0; p1=find_word_start(find_word_end(p1));
  1404.             val=rint(evalue(vbuf));
  1405.             if(vbuf[0]) float2str(val,vbuf);
  1406.         }
  1407.         else {
  1408.             doub=1;val=evalue(vbuf);
  1409.         }
  1410.         p2=wordchr(p1,"and"); p3=p2+strlen("and");
  1411.         if(p2==NULL) {
  1412.           p2=strchr(p1,','); p3=p2+1;
  1413.         }
  1414.         if(p2==NULL) goto syntax;
  1415.         *p2=0;p2=find_word_start(p3);
  1416.         if(*p1==0 || *p2==0) goto syntax;
  1417.         d1=evalue(p1);d2=evalue(p2);
  1418.         if(!finite(d1) || !finite(d2) ||
  1419.            abs(d1)>(double)(1E10) || abs(d2)>(double)(1E10)) goto syntax;
  1420.         if(d1>d2) {
  1421.             dd=d1;d1=d2;d2=dd;
  1422.         }
  1423.         if(vbuf[0] && val<=d2 && val>=d1) {
  1424.             if(!doub) setvar(nbuf,vbuf);
  1425.             *p=0; return;
  1426.         }
  1427.         if(defaulted) strcpy(p,dbuf);
  1428.         else {
  1429.             if(!doub) {
  1430.                 d1=ceil(d1);d2=floor(d2);
  1431.             }
  1432.             if(vbuf[0]==0 || val<d1) val=d1;
  1433.             else val=d2;
  1434.             float2str(val,p);
  1435.         }
  1436.         setvar(nbuf,p); *p=0; return;
  1437.     }
  1438.     else {
  1439.         if(strcmp(p1,"within")==0 || strcmp(p1,"among")==0) {
  1440.             strcpy(lbuf,p2);substit(lbuf);
  1441.             bcnt=cutitems(lbuf,blist,2048);
  1442.             if(bcnt<=0) {
  1443.                 *p=0; return;
  1444.             }
  1445.             for(i=0;i<bcnt;i++) {
  1446.                 if(strcmp(blist[i],vbuf)==0) {
  1447.                     *p=0; return;
  1448.                 }
  1449.             }
  1450.             if(defaulted) strcpy(p,dbuf); else strcpy(p,blist[0]);
  1451.             setvar(nbuf,p); *p=0;
  1452.             return;
  1453.         }
  1454.         else goto syntax;
  1455.     }
  1456. }
  1457.  
  1458.         /* detrust the module. */
  1459. void exec_detrust(char *p)
  1460. {       untrust|=1; *p=0; }
  1461.  
  1462. void exec_warn(char *p)
  1463. {
  1464.     char *p1,*p2;
  1465.     char buf[MAX_FNAME+1];
  1466.     WORKING_FILE save;
  1467.  
  1468.     if(!outputing) goto end;
  1469.     p1=find_word_start(p);p2=find_word_end(p1);
  1470.     if(p2<=p1) goto end;
  1471.     *p2=0;
  1472.     snprintf(buf,sizeof(buf),"wims_warn_%s",p1);
  1473.     p2=getvar(buf);
  1474.     if(p2==NULL || *p2==0) goto end;
  1475.     p2=getvar("module_language");if(p2==NULL) p2="en";
  1476.     mkfname(buf,"msg/warn_%s.phtml.%s",p1,p2);
  1477.     memmove(&save,&m_file,sizeof(WORKING_FILE));
  1478.     if(open_working_file(&m_file,buf)==0) phtml_put(NULL,0);
  1479.     memmove(&m_file,&save,sizeof(WORKING_FILE));
  1480.     end:
  1481.     *p=0; return;
  1482. }
  1483.  
  1484.         /* write an error message. */
  1485. void exec_msg(char *p)
  1486. {
  1487.     char *p1,*p2, buf[64], *l;
  1488.     secure_exec();
  1489.     p1=find_word_start(p); p2=find_word_end(p1);
  1490.     if(*p2) {
  1491.         *p2=0; p2=find_word_start(p2+1);
  1492.     }
  1493.     force_setvar("wims_error",p1); force_setvar("wims_error_parm",p2);
  1494.     l=getvar("module_language");
  1495.     if(l!=NULL && strlen(l)==2) {
  1496.         snprintf(buf,sizeof(buf),"msg.phtml.%s",l);
  1497.         phtml_put_base(buf,0);
  1498.     }
  1499.     *p=0;
  1500. }
  1501.  
  1502. struct {
  1503.     char *name;
  1504.     int (*routine) (char *p, char *list[], int max);
  1505. } distr_cmd[]={
  1506.       {"char",          NULL},
  1507.       {"charof",        NULL},
  1508.       {"chars",         NULL},
  1509.       {"charsof",       NULL},
  1510.       {"item",          cutitems},
  1511.       {"itemof",        cutitems},
  1512.       {"items",         cutitems},
  1513.       {"itemsof",       cutitems},
  1514.       {"line",          cutlines},
  1515.       {"lineof",        cutlines},
  1516.       {"lines",         cutlines},
  1517.       {"linesof",       cutlines},
  1518.       {"list",          cutitems},
  1519.       {"word",          cutwords},
  1520.       {"wordof",        cutwords},
  1521.       {"words",         cutwords},
  1522.       {"wordsof",       cutwords}
  1523. };
  1524.  
  1525. #define distr_cmd_no (sizeof(distr_cmd)/sizeof(distr_cmd[0]))
  1526.  
  1527.         /* distribute a number of lines, items, etc. into a list of vars. */
  1528. void exec_distribute(char *p)
  1529. {
  1530.     int i,k,n;
  1531.     char *p1, *p2;
  1532.     char bf1[MAX_LINELEN+1],bf2[MAX_LINELEN+1];
  1533.     char *names[4096],*vals[4096];
  1534.     p1=find_word_start(p); p2=find_word_end(p1);
  1535.     if(p2<=p1 || *p2==0) module_error("syntax_error");
  1536.     *p2++=0;
  1537.     i=search_list(distr_cmd,distr_cmd_no,sizeof(distr_cmd[0]),p1);
  1538.     if(i<0) module_error("syntax_error");
  1539.     p2=find_word_start(p2); p1=wordchr(p2,"into");
  1540.     if(p1==NULL) module_error("syntax_error");
  1541.     *p1=0;mystrncpy(bf1,p2,sizeof(bf1));
  1542.     p1=find_word_start(p1+strlen("into"));
  1543.     mystrncpy(bf2,p1,sizeof(bf2));
  1544.     substit(bf1);substit(bf2);
  1545.     strip_trailing_spaces(bf1);
  1546.     items2words(bf2); n=cutwords(bf2,names,4096);
  1547.     if(distr_cmd[i].routine!=NULL) {
  1548.         k=distr_cmd[i].routine(bf1,vals,n);
  1549.         for(i=0;i<k;i++) setvar(names[i],vals[i]);
  1550.         for(;i<n;i++) setvar(names[i],"");
  1551.     }
  1552.     else {
  1553.         char buf[2];
  1554.         buf[1]=0;
  1555.         for(p1=bf1,i=0;i<n;i++) {
  1556.             buf[0]=*p1; if(*p1) p1++;
  1557.             setvar(names[i],buf);
  1558.         }
  1559.     }
  1560. }
  1561.  
  1562.         /* reset variables */
  1563. void exec_reset(char *p)
  1564. {
  1565.     char *p1, *p2;
  1566.  
  1567.     items2words(p);
  1568.     for(p1=find_word_start(p); *p1; p1=find_word_start(p2)) {
  1569.         p2=find_word_end(p1); if(*p2) *p2++=0;
  1570.         setvar(p1,"");
  1571.     }
  1572. }
  1573.  
  1574.         /* exchange the values of two variables */
  1575. void exec_exchange(char *p)
  1576. {
  1577.     char buf[MAX_LINELEN+1],b1[MAX_LINELEN+1],b2[MAX_LINELEN+1];
  1578.     char *p1,*p2,*pb;
  1579.     p1=wordchr(p,"and");
  1580.     if(p1!=NULL) {
  1581.         *p1=0; p2=find_word_start(p1+strlen("and"));
  1582.     }
  1583.     else {
  1584.         p1=strchr(p,',');
  1585.         if(p1==NULL) module_error("syntax_error");
  1586.         *p1=0; p2=find_word_start(p1+1);
  1587.     }
  1588.     p1=find_word_start(p);
  1589.     mystrncpy(b1,p1,sizeof(b1)); substit(b1); *find_word_end(b1)=0;
  1590.     mystrncpy(b2,p2,sizeof(b2)); substit(b2); *find_word_end(b2)=0;
  1591.     if(*b1==0 || *b2==0) module_error("syntax_error");
  1592.     pb=getvar(b1);if(pb==NULL) pb="";
  1593.     mystrncpy(buf,pb,sizeof(buf));
  1594.     pb=getvar(b2);if(pb==NULL) pb="";
  1595.     setvar(b1,pb); setvar(b2,buf);
  1596. }
  1597.  
  1598.         /* Send a mail */
  1599. void exec_mailto(char *p)
  1600. {
  1601.     char *p1,*p2,*pp;
  1602.  
  1603.     if(!trusted_module() || is_class_module) return;
  1604.     p1=strchr(p,'\n'); if(p1==NULL) return;
  1605.     *p1++=0; p=find_word_start(p);
  1606.     if(*p==0) return;
  1607.     p2=strchr(p1,'\n'); if(p2==NULL) return;
  1608.     *p2++=0;
  1609.     for(pp=p1;*pp;pp++) if(*pp=='"' || *pp=='\n') *pp=' ';
  1610.     accessfile(p2,"w","%s/mail.body",tmp_dir);
  1611.     wrapexec=1;
  1612.     call_sh("mail %s -s \" %s \" %s <%s/mail.body; chmod og-rwx %s/mail.body",
  1613.             mail_opt, p1,p,tmp_dir,tmp_dir);
  1614.     mail_log(p);
  1615.     *p=0;
  1616. }
  1617.  
  1618.         /* Generates a user error. Internal and undocumented. */
  1619. void exec_usererror(char *p)
  1620. {
  1621.     if(trusted_module()) user_error(p);
  1622. }
  1623.  
  1624.         /* stop output. */
  1625. void exec_directout(char *p)
  1626. {
  1627.     if(outputing || !trusted_module()) return;
  1628.     printf("%s",p);
  1629.     noout=1;
  1630. }
  1631.  
  1632. enum {
  1633.       EXEC_IF, EXEC_JUMP, EXEC_ELSE, EXEC_ENDIF, EXEC_EXEC,
  1634.       EXEC_WHILE, EXEC_ENDWHILE,
  1635.       EXEC_FOR, EXEC_VAR, EXEC_DEBUG, EXEC_DAEMON,
  1636.       EXEC_SET, EXEC_DEFAULT, EXEC_COMMENT, EXEC_READ, EXEC_HREF,
  1637.       EXEC_INS, EXEC_STRING, EXEC_PEDIA, EXEC_DIR,
  1638.       EXEC_TRUST, EXEC_WARN, EXEC_ERROR, EXEC_SQL, EXEC_SCORE,
  1639.       EXEC_MAIL, EXEC_OTHER
  1640. } EXEC_TYPES;
  1641. #define EXEC_SUBST 0x1000
  1642. #define EXEC_USECALC 0x2000
  1643. #define EXEC_PROCTOO 0x4000
  1644. MYFUNCTION exec_routine[]={
  1645.       {"!",             EXEC_COMMENT,           exec_comment},
  1646.       {"TeXmath",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,texmath},
  1647.       {"add",           EXEC_STRING|EXEC_USECALC,calc_sum},
  1648.       {"advance",       EXEC_VAR|EXEC_SUBST,    exec_increase},
  1649.       {"append",        EXEC_STRING|EXEC_USECALC,calc_append},
  1650.       {"appendfile",    EXEC_DIR|EXEC_SUBST,    fileappend},
  1651.       {"bound",         EXEC_STRING,            exec_bound},
  1652.       {"break",         EXEC_FOR,               exec_break},
  1653.       {"call",          EXEC_EXEC|EXEC_SUBST|EXEC_PROCTOO|EXEC_USECALC, calc_exec},
  1654.       {"changeto",      EXEC_READ|EXEC_SUBST,   exec_changeto},
  1655.       {"char",          EXEC_STRING|EXEC_USECALC,calc_charof},
  1656.       {"chars",         EXEC_STRING|EXEC_USECALC,calc_charof},
  1657.       {"checkhost",     EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_checkhost},
  1658.       {"column",        EXEC_STRING|EXEC_USECALC,calc_columnof},
  1659.       {"columns",       EXEC_STRING|EXEC_USECALC,calc_columnof},
  1660.       {"comment",       EXEC_COMMENT,           exec_comment},
  1661.       {"daemon",        EXEC_DAEMON|EXEC_USECALC|EXEC_SUBST,calc_daemon},
  1662.       {"date",          EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_date},
  1663.       {"deaccent",      EXEC_STRING|EXEC_USECALC|EXEC_SUBST,deaccent},
  1664.       {"debug",         EXEC_DEBUG,             calc_debug},
  1665.       {"declosing",     EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_declosing},
  1666.       {"def",           EXEC_SET,               exec_set},
  1667.       {"default",       EXEC_SET,               exec_default},
  1668.       {"define",        EXEC_SET,               exec_set},
  1669.       {"definitionof",  EXEC_SCORE|EXEC_USECALC,calc_defof},
  1670.       {"defof",         EXEC_SCORE|EXEC_USECALC,calc_defof},
  1671.       {"defread",       EXEC_READ|EXEC_SUBST,   exec_defread},
  1672.       {"detag",         EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_detag},
  1673.       {"detrust",       EXEC_TRUST,             exec_detrust},
  1674. /*      {"dictionary",  EXEC_STRING|EXEC_USECALC,calc_dictionary},      */
  1675.       {"dir",           EXEC_DIR|EXEC_SUBST|EXEC_USECALC,calc_listfile},
  1676.       {"distribute",    EXEC_STRING,            exec_distribute},
  1677.       {"distrust",      EXEC_TRUST,             exec_detrust},
  1678.       {"else",          EXEC_ELSE,              exec_else},
  1679.       {"embraced",      EXEC_STRING|EXEC_USECALC,calc_embraced},
  1680.       {"encyclo",       EXEC_PEDIA|EXEC_SUBST|EXEC_USECALC,pedia},
  1681.       {"encyclopedia",  EXEC_PEDIA|EXEC_SUBST|EXEC_USECALC,pedia},
  1682.       {"endif",         EXEC_ENDIF,             exec_endif},
  1683.       {"endwhile",      EXEC_ENDWHILE,          exec_endwhile},
  1684.       {"evalsubst",     EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1685.       {"evalsubstit",   EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1686.       {"evalsubstitute",EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1687.       {"evaluesubst",   EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1688.       {"evaluesubstit", EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1689.       {"evaluesubstitute",EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1690.       {"examscore",     EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_examscore},
  1691.       {"exchange",      EXEC_STRING,            exec_exchange},
  1692.       {"exec",          EXEC_EXEC|EXEC_SUBST|EXEC_PROCTOO|EXEC_USECALC, calc_exec},
  1693.       {"execute",       EXEC_EXEC|EXEC_SUBST|EXEC_PROCTOO|EXEC_USECALC, calc_exec},
  1694.       {"exit",          EXEC_JUMP,              exec_exit},
  1695.       {"fileappend",    EXEC_DIR|EXEC_SUBST,    fileappend},
  1696.       {"filelist",      EXEC_DIR|EXEC_SUBST|EXEC_USECALC,calc_listfile},
  1697.       {"fileout",       EXEC_HREF|EXEC_SUBST,   exec_getfile},
  1698.       {"filewrite",     EXEC_DIR|EXEC_SUBST,    filewrite},
  1699.       {"for",           EXEC_FOR,               exec_for},
  1700.       {"form",          EXEC_HREF|EXEC_SUBST,   exec_form},
  1701.       {"formbar",       EXEC_HREF,              exec_formbar},
  1702.       {"formcheckbox",  EXEC_HREF,              exec_formcheckbox},
  1703.       {"formradio",     EXEC_HREF,              exec_formradio},
  1704.       {"formradiobar",  EXEC_HREF,              exec_formbar},
  1705.       {"formselect",    EXEC_HREF,              exec_formselect},
  1706.       {"getdef",        EXEC_SCORE|EXEC_USECALC,calc_defof},
  1707.       {"getfile",       EXEC_HREF|EXEC_SUBST,   exec_getfile},
  1708.       {"getscore",      EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscore},
  1709.       {"getscoremean",  EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscoremean},
  1710.       {"getscorepercent",EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscorepercent},
  1711.       {"getscoreremain",EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscoreremain},
  1712.       {"getscorerequire",EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscorerequire},
  1713.       {"getscoreweight",EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscoreweight},
  1714.       {"goto",          EXEC_JUMP|EXEC_SUBST,   exec_goto},
  1715.       {"header",        EXEC_HREF,              exec_header},
  1716.       {"header1",       EXEC_HREF,              exec_header1},
  1717.       {"headmenu",      EXEC_HREF,              exec_headmenu},
  1718.       {"hex",           EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_hex},
  1719.       {"homeref",       EXEC_HREF,              exec_homeref},
  1720.       {"href",          EXEC_HREF,              exec_href},
  1721.       {"htmlbar",       EXEC_HREF,              exec_formbar},
  1722.       {"htmlcheckbox",  EXEC_HREF,              exec_formcheckbox},
  1723.       {"htmlheader",    EXEC_HREF,              exec_header},
  1724.       {"htmlmath",      EXEC_STRING|EXEC_SUBST|EXEC_USECALC,htmlmath},
  1725.       {"htmlradio",     EXEC_HREF,              exec_formradio},
  1726.       {"htmlradiobar",  EXEC_HREF,              exec_formbar},
  1727.       {"htmlselect",    EXEC_HREF,              exec_formselect},
  1728.       {"htmltail",      EXEC_HREF,              exec_tail},
  1729.       {"htmltitle",     EXEC_HREF,              exec_title},
  1730.       {"if",            EXEC_IF,                exec_if},
  1731.       {"ifval",         EXEC_IF,                exec_ifval},
  1732.       {"ifvalue",       EXEC_IF,                exec_ifval},
  1733.       {"imgrename",     EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_imgrename},
  1734.       {"include",       EXEC_READ|EXEC_SUBST,   exec_read},
  1735.       {"increase",      EXEC_VAR|EXEC_SUBST,    exec_increase},
  1736.       {"input",         EXEC_READ|EXEC_SUBST,   exec_read},
  1737.       {"insdraw",       EXEC_INS|EXEC_SUBST,    exec_insdraw},
  1738.       {"insmath",       EXEC_INS,               insmath},
  1739.       {"inspaint",      EXEC_INS|EXEC_SUBST,    exec_insdraw},
  1740.       {"insplot",       EXEC_INS|EXEC_SUBST,    exec_insplot},
  1741.       {"insplot3d",     EXEC_INS|EXEC_SUBST,    exec_insplot3d},
  1742.       {"instex",        EXEC_INS,               exec_instex},
  1743.       {"instexst",      EXEC_INS|EXEC_USECALC,  calc_instexst},
  1744.       {"instexstatic",  EXEC_INS|EXEC_USECALC,  calc_instexst},
  1745.       {"item",          EXEC_STRING|EXEC_USECALC,calc_itemof},
  1746.       {"items",         EXEC_STRING|EXEC_USECALC,calc_itemof},
  1747.       {"items2lines",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2lines},
  1748.       {"items2words",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2words},
  1749.       {"itemstolines",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2lines},
  1750.       {"itemstowords",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2words},
  1751.       {"let",           EXEC_SET,               exec_set},
  1752.       {"leveldata",     EXEC_STRING|EXEC_USECALC,calc_leveldata},
  1753.       {"levelpoints",   EXEC_STRING|EXEC_USECALC,calc_leveldata},
  1754.       {"line",          EXEC_STRING|EXEC_USECALC,calc_lineof},
  1755.       {"lines",         EXEC_STRING|EXEC_USECALC,calc_lineof},
  1756.       {"lines2items",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2items},
  1757.       {"lines2list",    EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2items},
  1758.       {"lines2words",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2words},
  1759.       {"linestoitems",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2items},
  1760.       {"linestolist",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2items},
  1761.       {"linestowords",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2words},
  1762.       {"list2lines",    EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2lines},
  1763.       {"list2words",    EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2words},
  1764.       {"listfile",      EXEC_DIR|EXEC_SUBST|EXEC_USECALC,calc_listfile},
  1765.       {"listfiles",     EXEC_DIR|EXEC_SUBST|EXEC_USECALC,calc_listfile},
  1766.       {"listintersect", EXEC_STRING|EXEC_USECALC,calc_listintersect},
  1767.       {"listintersection", EXEC_STRING|EXEC_USECALC,calc_listintersect},
  1768.       {"listtolines",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2lines},
  1769.       {"listtowords",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2words},
  1770.       {"listunion",     EXEC_STRING|EXEC_USECALC,calc_listunion},
  1771.       {"listuniq",      EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_listuniq},
  1772.       {"listunique",    EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_listuniq},
  1773.       {"listvar",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,mathvarlist},
  1774.       {"lookup",        EXEC_STRING|EXEC_USECALC,       calc_lookup},
  1775.       {"lower",         EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_tolower},
  1776.       {"lowercase",     EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_tolower},
  1777.       {"ls",            EXEC_DIR|EXEC_SUBST|EXEC_USECALC,calc_listfile},
  1778.       {"mailto",        EXEC_MAIL|EXEC_SUBST,   exec_mailto},
  1779.       {"mailurl",       EXEC_MAIL|EXEC_SUBST|EXEC_USECALC,calc_mailurl},
  1780.       {"makelist",      EXEC_STRING|EXEC_USECALC,calc_makelist},
  1781.       {"mathsubst",     EXEC_STRING|EXEC_USECALC,calc_mathsubst},
  1782.       {"mathsubstit",   EXEC_STRING|EXEC_USECALC,calc_mathsubst},
  1783.       {"mathsubstitute",EXEC_STRING|EXEC_USECALC,calc_mathsubst},
  1784.       {"mexec",         EXEC_EXEC|EXEC_SUBST,   exec_mexec},
  1785.       {"module",        EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_module},
  1786.       {"msg",           EXEC_EXEC|EXEC_SUBST    ,exec_msg},
  1787.       {"multiply",      EXEC_STRING|EXEC_USECALC,calc_product},
  1788.       {"next",          EXEC_FOR,               exec_next},
  1789.       {"nocache",       EXEC_READ,              exec_nocache},
  1790.       {"non_empty",     EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_nonempty},
  1791.       {"nonempty",      EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_nonempty},
  1792.       {"nospace",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,nospace},
  1793.       {"outfile",       EXEC_HREF|EXEC_SUBST,   exec_getfile},
  1794.       {"pedia",         EXEC_PEDIA|EXEC_SUBST|EXEC_USECALC,pedia},
  1795.       {"perl",          EXEC_EXEC|EXEC_PROCTOO|EXEC_SUBST,exec_perl},
  1796.       {"position",      EXEC_STRING|EXEC_USECALC,calc_pos},
  1797.       {"positionof",    EXEC_STRING|EXEC_USECALC,calc_pos},
  1798.       {"positions",     EXEC_STRING|EXEC_USECALC,calc_pos},
  1799.       {"prod",          EXEC_STRING|EXEC_USECALC,calc_product},
  1800.       {"product",       EXEC_STRING|EXEC_USECALC,calc_product},
  1801.       {"rawmath",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,rawmath},
  1802.       {"rawmatrix",     EXEC_STRING|EXEC_SUBST|EXEC_USECALC,rawmatrix},
  1803.       {"reaccent",      EXEC_STRING|EXEC_USECALC|EXEC_SUBST,reaccent},
  1804.       {"read",          EXEC_READ|EXEC_SUBST,   exec_read},
  1805.       {"readdef",       EXEC_READ|EXEC_SUBST,   exec_defread},
  1806.       {"readproc",      EXEC_READ|EXEC_SUBST,   exec_readproc},
  1807.       {"record",        EXEC_STRING|EXEC_USECALC,calc_recordof},
  1808.       {"records",       EXEC_STRING|EXEC_USECALC,calc_recordof},
  1809.       {"recursion",     EXEC_STRING|EXEC_USECALC,calc_recursion},
  1810.       {"reinput",       EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_reinput},
  1811.       {"rem",           EXEC_COMMENT,           exec_comment},
  1812.       {"remark",        EXEC_COMMENT,           exec_comment},
  1813.       {"replace",       EXEC_STRING|EXEC_USECALC,calc_replace},
  1814.       {"reset",         EXEC_SET|EXEC_SUBST,    exec_reset},
  1815.       {"restart",       EXEC_JUMP|EXEC_SUBST,   exec_restart},
  1816.       {"return",        EXEC_JUMP,              exec_exit},
  1817.       {"robotrap",      EXEC_HREF|EXEC_SUBST,   exec_robottrap},
  1818.       {"robottrap",     EXEC_HREF|EXEC_SUBST,   exec_robottrap},
  1819.       {"rootof",        EXEC_STRING|EXEC_USECALC,calc_solve},
  1820.       {"row",           EXEC_STRING|EXEC_USECALC,calc_rowof},
  1821.       {"rows",          EXEC_STRING|EXEC_USECALC,calc_rowof},
  1822.       {"rows2lines",    EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_rows2lines},
  1823.       {"run",           EXEC_EXEC|EXEC_SUBST|EXEC_PROCTOO|EXEC_USECALC, calc_exec},
  1824.       {"select",        EXEC_STRING|EXEC_USECALC,calc_select},
  1825.       {"set",           EXEC_SET,               exec_set},
  1826.       {"setdef",        EXEC_OTHER,             exec_setdef},
  1827.       {"sh",            EXEC_EXEC|EXEC_PROCTOO|EXEC_SUBST,exec_sh},
  1828.       {"shortout",      EXEC_JUMP|EXEC_SUBST,   exec_directout},
  1829.       {"singlespace",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,singlespace},
  1830.       {"solve",         EXEC_STRING|EXEC_USECALC,calc_solve},
  1831.       {"sort",          EXEC_STRING|EXEC_USECALC, calc_sort},
  1832. /*      {"sql",         EXEC_SQL|EXEC_SUBST|EXEC_USECALC, calc_sql}, */
  1833.       {"staticinstex",  EXEC_INS|EXEC_USECALC,  calc_instexst},
  1834.       {"stinstex",      EXEC_INS|EXEC_USECALC,  calc_instexst},
  1835.       {"sum",           EXEC_STRING|EXEC_USECALC,calc_sum},
  1836.       {"system",        EXEC_EXEC|EXEC_PROCTOO|EXEC_SUBST,exec_sh},
  1837.       {"tail",          EXEC_HREF,              exec_tail},
  1838.       {"test",          EXEC_DEBUG,             exec_test},
  1839.       {"texmath",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,texmath},
  1840.       {"text",          EXEC_STRING|EXEC_USECALC,text},
  1841.       {"title",         EXEC_HREF,              exec_title},
  1842.       {"tohex",         EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_hex},
  1843.       {"tolower",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_tolower},
  1844.       {"toupper",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_toupper},
  1845.       {"translate",     EXEC_STRING|EXEC_USECALC,calc_translate},
  1846.       {"trim",          EXEC_STRING|EXEC_USECALC,calc_trim},
  1847.       {"upper",         EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_toupper},
  1848.       {"uppercase",     EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_toupper},
  1849.       {"usererror",     EXEC_WARN|EXEC_SUBST,   exec_usererror},
  1850.       {"values",        EXEC_STRING|EXEC_USECALC,calc_values},
  1851.       {"varlist",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,mathvarlist},
  1852.       {"warn",          EXEC_WARN|EXEC_SUBST,   exec_warn},
  1853.       {"warning",       EXEC_WARN|EXEC_SUBST,   exec_warn},
  1854.       {"while",         EXEC_WHILE,             exec_while},
  1855.       {"whileval",      EXEC_WHILE,             exec_whileval},
  1856.       {"whilevalue",    EXEC_WHILE,             exec_whileval},
  1857.       {"wimsheader",    EXEC_HREF,              exec_header},
  1858.       {"wimsref",       EXEC_HREF,              exec_homeref},
  1859.       {"wimstail",      EXEC_HREF,              exec_tail},
  1860.       {"wimstitle",     EXEC_HREF,              exec_title},
  1861.       {"word",          EXEC_STRING|EXEC_USECALC,calc_wordof},
  1862.       {"words",         EXEC_STRING|EXEC_USECALC,calc_wordof},
  1863.       {"words2items",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2items},
  1864.       {"words2lines",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2lines},
  1865.       {"words2list",    EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2items},
  1866.       {"wordstoitems",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2items},
  1867.       {"wordstolines",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2lines},
  1868.       {"wordstolist",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2items},
  1869.       {"writefile",     EXEC_DIR|EXEC_SUBST,    filewrite},
  1870. };
  1871. #define EXEC_FN_NO (sizeof(exec_routine)/sizeof(exec_routine[0]))
  1872.  
  1873.         /* internal: to skip the content of a false if/while. */
  1874. static void _skip_contents(int isif)
  1875. {
  1876.     char buf[MAX_NAMELEN+8], *p1;
  1877.     int i,j,loop;
  1878.     loop=0;
  1879.     while(m_file.linepointer<m_file.linecnt) {
  1880.         j=m_file.linepointer;
  1881.         if((m_file.lines[j].isstart&2)==0) {
  1882.             m_file.linepointer++; continue;
  1883.         }
  1884.         i=m_file.lines[j].execcode; if(i<0) {
  1885.             if(wgetline(buf,MAX_NAMELEN+4,&m_file)==EOF) return;
  1886.             p1=buf+1; if(*p1!='i' && *p1!='e' && *p1!='w') continue;
  1887.             *find_word_end(p1)=0;
  1888.             i=search_list(exec_routine,EXEC_FN_NO,sizeof(exec_routine[0]),p1);
  1889.             if(i>=0) m_file.lines[j].execcode=i;
  1890.         }
  1891.         else m_file.linepointer++;
  1892.         if(i<0) continue;
  1893.         switch(exec_routine[i].tag & 0xffff) {
  1894.             case EXEC_WHILE:
  1895.                 if(!isif) loop++; break;
  1896.             case EXEC_IF:
  1897.                 if(isif) loop++; break;
  1898.             case EXEC_ELSE: {
  1899.                 if(!isif) break;
  1900.                 if(loop<=0) return; else break;
  1901.             }
  1902.             case EXEC_ENDIF: {
  1903.                 if(!isif) break;
  1904.                 if(loop>0) {
  1905.                     loop--; break;
  1906.                 }
  1907.                 else return;
  1908.             }
  1909.             case EXEC_ENDWHILE: {
  1910.                 if(isif) break;
  1911.                 if(loop>0) {
  1912.                     loop--; break;
  1913.                 }
  1914.                 else return;
  1915.             }
  1916.             default: break;
  1917.         }
  1918.     }
  1919. }
  1920.  
  1921.         /* Execute a command defined by !. Returns 0 if OK. */
  1922. void exec_main(char *p)
  1923. {
  1924.     int i,j;
  1925.     char *pp;
  1926.     char tbuf2[MAX_LINELEN+1];
  1927.  
  1928.     pp=find_word_end(p);
  1929.     if(*pp!=0) {
  1930.         *(pp++)=0; pp=find_word_start(pp);
  1931.     }
  1932.     i=m_file.lines[m_file.l].execcode;
  1933.     if(i<0) {
  1934.         i=search_list(exec_routine,EXEC_FN_NO,sizeof(exec_routine[0]),p);
  1935.         m_file.lines[m_file.l].execcode=i;
  1936.     }
  1937.     if(i<0) {
  1938.         setvar(error_data_string,p); module_error("bad_cmd");
  1939.     }
  1940.         /* called from !readdef, no right other than set; bail out */
  1941.     execnt++;
  1942.     if((untrust&4)!=0 && (j=(exec_routine[i].tag&0xffff))!=EXEC_SET) {
  1943.         tbuf2[0]=0; exec_exit(tbuf2);
  1944.     }
  1945.     strcpy(tbuf2,pp); j=exec_routine[i].tag;
  1946.     if(j&EXEC_SUBST) substit(tbuf2);
  1947.     if(j&EXEC_USECALC) {
  1948.         if(!outputing && (j&EXEC_PROCTOO)==0) return;
  1949.         exec_routine[i].routine(tbuf2); if(outputing) output0(tbuf2);
  1950.     }
  1951.     else exec_routine[i].routine(tbuf2);
  1952.     return;
  1953. }
  1954.  
  1955.