Subversion Repositories wimsdev

Rev

Rev 6297 | Rev 7370 | 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++; ovlstrcpy(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++; ovlstrcpy(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 exec_formend(char *p)
  486. {
  487.     _output_("\n</div></form>");
  488. }
  489.  
  490. void determine_font(char *l);
  491.  
  492.         /* standardized header */
  493. void _header(char *p, int option)
  494. {
  495.     char *s1, *s2, hbuf[MAX_LINELEN+1], *ws="", *ws2="", *bo, *ol;
  496.     char wsbuf[MAX_LINELEN+1],wsbuf2[MAX_LINELEN+1];
  497.     setvar("wims_header_parm",p); *p=0;
  498.     if(!outputing || header_executed) return;
  499.     s1=getvar("wims_window");
  500.     if(mode==mode_popup) {
  501.         if(s1!=NULL && *s1!=0) {
  502.             char *p1, *p2;
  503.             int t1,t2/*,t3,t4*/;
  504.             p1=find_word_start(s1);
  505.             for(p2=p1; myisdigit(*p2); p2++);
  506.             *p2=0; t1=atoi(p1); p1=p2+1;
  507.             while(!myisdigit(*p1) && *p1) p1++;
  508.             for(p2=p1; myisdigit(*p2); p2++);
  509.             *p2=0; t2=atoi(p1); p1=p2+1;
  510. /*          while(!myisdigit(*p1) && *p1) p1++;
  511.             for(p2=p1; myisdigit(*p2); p2++);
  512.             *p2=0; t3=atoi(p1); p1=p2+1;
  513.             while(!myisdigit(*p1) && *p1) p1++;
  514.             for(p2=p1; myisdigit(*p2); p2++);
  515.             *p2=0; t4=atoi(p1); p1=p2+1;
  516.             while(!myisdigit(*p1) && *p1) p1++;
  517.             for(p2=p1; myisdigit(*p2); p2++);
  518.             if(t3<5) t3=5; if(t4<20) t4=20;
  519. */          snprintf(wsbuf,sizeof(wsbuf),
  520.                      "window.focus();window.resizeTo(%d,%d);",
  521.                      t1,t2); ws=wsbuf;
  522. /*          snprintf(wsbuf,sizeof(wsbuf),
  523.                      "window.focus();window.resizeto(%d,%d);window.moveto(%d,%d);",
  524.                      t1,t2,t3,t4); ws=wsbuf;
  525. */      }
  526.     }
  527.     else {
  528.         if(s1!=NULL && strcmp(s1,"new")==0)
  529.           ws="window.focus();window.resizeTo(800,640);window.moveTo(15,35);";
  530.     }
  531.     if(strstr(session_prefix,"_exam")!=NULL) {
  532. /*      char buf[64]; */
  533.         if(*ws==0) ws="window.focus();";
  534.         else ws= "window.focus();window.moveTo(5,70);";
  535. /*      snprintf(buf,sizeof(buf),"name.phtml.%s",lang);
  536.         phtml_put_base(buf);
  537.         phtml_put_base("jsclock.phtml"); */
  538.     }
  539.     s1=getvar("wims_html_header"); if(s1==NULL) s1="";
  540.     determine_font(getvar("module_language"));
  541.     s2=getvar("module_title"); if(s2!=NULL && *s2!=0) {
  542.         mystrncpy(hbuf,s2,sizeof(hbuf)); calc_detag(hbuf);
  543.         setvar("module_title2",hbuf);
  544.     }
  545.     mystrncpy(hbuf,s1,sizeof(hbuf)); substit(hbuf);
  546.     s2=getvar("wims_htmlbody"); if(s2==NULL) s2="";
  547.     bo=getvar("wims_html_bodyoption"); if(bo==NULL) bo="";
  548.     ws2=getvar("wims_html_onload"); if(ws2==NULL) ws2="";
  549.     snprintf(wsbuf2,sizeof(wsbuf2),"%s%s",ws,ws2);
  550.     setvar("wims_html_onload",wsbuf2);
  551.     if(wsbuf2[0]) ol=" onload="; else ol="";
  552. /*    output("<html xmlns=\"http://www.w3.org/1999/xhtml\"><head>%s\n\
  553. </head><body %s %s%s %s>\n", */
  554. /*    output("<html>\n\
  555. <head>%s\n\
  556. </head><body %s %s%s %s>\n",
  557.            hbuf,s2,ol,wsbuf2,bo);*/
  558.            /*http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd*/
  559.          if(ol[0]) {
  560.             output("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN\" \"http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd\">\
  561.             \n<html xml:lang=\"%s\"\
  562.             xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\"><head>%s\n\
  563.     </head>\n<body %s %s\"%s\" %s>\n",
  564.            lang,hbuf,s2,ol,wsbuf2,bo);}
  565.            else {
  566.            output("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN\" \"http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd\">\
  567.             \n<html xml:lang=\"%s\" xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:mathml=\"http://www.w3.org/1998/Math/MathML\"><head>%s\n\
  568.     </head>\n<body %s %s%s %s>\n",
  569.            lang,hbuf,s2,ol,wsbuf2,bo);
  570.            }
  571.     exec_headmenu(p);
  572.     if(option) exec_title(p);
  573.     if(cmd_type==cmd_help) {
  574.         char *s=getvar("special_parm");
  575.         if(s==NULL) s="";
  576.         m_file.linepointer=m_file.linecnt;
  577.         if(strcmp(s,"about")==0) ovlstrcpy(hbuf,"about.phtml");
  578.         else ovlstrcpy(hbuf,"help.phtml");
  579.         exec_read(hbuf); exec_tail(p); /* param of exec_...() must be readable */
  580.         return;
  581.     }
  582.     header_executed=1;
  583. }
  584.  
  585. void exec_header(char *p) { _header(p,1);}
  586. void exec_header1(char *p) { _header(p,0);}
  587.  
  588. char href_target[128];
  589. char jsbuf[512];
  590. #define jsstr " onclick=\"%s=window.open('','%s','status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes')\""
  591. int ref_mhelp=0;
  592. int follow_list[]={
  593.     ro_session, ro_lang, ro_useropts, ro_module
  594. };
  595. #define follow_no (sizeof(follow_list)/sizeof(follow_list[0]))
  596.  
  597. void _httpfollow(char b1[], char *wn, int new)
  598. {
  599.     int i;
  600.     char *p1, *s, *ss, sb[MAX_LINELEN+1], qbuf[MAX_LINELEN+1];
  601.  
  602.     sb[0]=0;
  603.     for(i=0;i<follow_no;i++) {
  604.         if(robot_access && follow_list[i]==ro_session) continue;
  605.         if(!new && follow_list[i]!=ro_session
  606.            && follow_list[i]!=ro_module && follow_list[i]!=ro_lang)
  607.           continue;
  608.         if(follow_list[i]==ro_module) {
  609.             char *pp;
  610.             if(new) continue;
  611.             pp=strstr(b1,"cmd=");
  612.             if(pp==NULL) continue;
  613.             pp+=strlen("cmd=");
  614.             if(memcmp(pp,"intro",strlen("intro"))==0 ||
  615.                memcmp(pp,"new",strlen("new"))==0) continue;      
  616.         }
  617.         s=getvar(ro_name[follow_list[i]]);
  618.         ss=strstr(b1,ro_name[follow_list[i]]);
  619.         if(s!=NULL && *s!=0 &&
  620.            (ss==NULL || (ss>b1 && *(ss-1)!='&')
  621.             || *(ss+strlen(ro_name[follow_list[i]]))!='=')) {
  622.             if(follow_list[i]==ro_session && memcmp(href_target,"wims_",5)==0) {
  623.                 char st[MAX_LINELEN+1];
  624.                 char *s1;
  625.                 s1=getvar("wims_session");
  626.                 if(s1==NULL) internal_error("exec_href() error.\n");
  627.                 if(ref_mhelp) {
  628.                     if(strstr(s1,"_mhelp")!=0)
  629.                       snprintf(st,sizeof(st),"%s",s1);
  630.                     else
  631.                       snprintf(st,sizeof(st),"%s_mhelp",s1);
  632.                 }
  633.                 else snprintf(st,sizeof(st),"%.10s%s",s1,href_target+4);
  634.                 s=st;
  635.             }
  636.             snprintf(sb+strlen(sb),MAX_LINELEN-strlen(sb),"%s=%s&",
  637.                      ro_name[follow_list[i]],s);
  638.             if(ismhelp && follow_list[i]==ro_session &&
  639.                strstr(sb,"_mhelp")==NULL)
  640.               snprintf(sb+strlen(sb)-1,MAX_LINELEN-strlen(sb)+1,"_mhelp&");
  641.         }
  642.     }
  643.     snprintf(qbuf,MAX_LINELEN,"%s%s%s",wn,sb,b1);
  644.         /* cleaning up query string */
  645.     for(p1=qbuf;*p1;p1++) {
  646.         if(*p1=='"') string_modify(qbuf,p1,p1+1,"%22");
  647.         if(*p1=='&' && isalpha(*(p1+1))) {
  648.             p1++; string_modify(qbuf,p1,p1,"+");
  649.         }
  650.     }
  651.     mystrncpy(b1,qbuf,MAX_LINELEN);
  652. }
  653.  
  654.         /* Restart with a new module, using http code 302. */
  655. void exec_restart(char *p)
  656. {
  657.     char buf[MAX_LINELEN+1], *rfn, buf2[MAX_LINELEN+1];
  658. /*    long int t; */
  659.    
  660.     if(robot_access || outputing || !trusted_module() || is_class_module) return;
  661. /*    accessfile(buf,"r","%s/restart.time",s2_prefix);
  662.     t=atoi(buf); if(t==nowtime) return; */ /* possible looping */
  663.     mystrncpy(buf,find_word_start(p),sizeof(buf));
  664.     *find_word_end(buf)=0;
  665.     _httpfollow(buf,"",0);
  666.     nph_header(301);
  667.     rfn=strchr(ref_name,':'); if(rfn==NULL) {
  668.         usual: snprintf(buf2,sizeof(buf2),"%s?%s",ref_name,buf);
  669.     }
  670.     else {
  671.         char *p;
  672.         p=getvar("wims_protocol");
  673.         if(p!=NULL && strcmp(p,"https")==0) {
  674.             snprintf(buf2,sizeof(buf2),"https%s?%s",rfn,buf);
  675.         }
  676.         else goto usual;
  677.     }
  678.     printf("Location: %s\r\n\r\n\
  679. <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\
  680. <html><body><a href=\"%s\">%s</a></body></html>",buf2,buf2,buf2);
  681.     close_working_file(&m_file,0); write_logs();
  682.     snprintf(buf,sizeof(buf),"%ld",nowtime);
  683. /*    accessfile(buf,"w","%s/restart.time",s2_prefix);
  684. */    delete_pid(); exit(0);
  685. }
  686.  
  687.         /* extract target tag from parm string. */
  688. void href_find_target(char *p)
  689. {
  690.     char *pp, *pe,buf1[MAX_LINELEN+1];
  691.     href_target[0]=0; jsbuf[0]=0; ref_mhelp=0;
  692.     for(pp=find_word_start(p);*pp!=0;pp=find_word_start(pe)) {
  693.         pe=find_word_end(pp);
  694.         if(strncasecmp(pp,"target=wims_",strlen("target=wims_"))!=0) continue;
  695.         memmove(buf1,pp,pe-pp); buf1[pe-pp]=0; substit(buf1);
  696.         if(strncasecmp(buf1,"target=wims_mhelp",strlen("target=wims_mhelp"))==0) {
  697.             if(*pe!=0) *pe++=0; ovlstrcpy(href_target,"wims_help");
  698.             ref_mhelp=1;
  699.         }
  700.         else {
  701.             if(*pe!=0) *pe++=0;
  702.             mystrncpy(href_target,buf1+strlen("target="),sizeof(href_target));
  703.         }
  704.         snprintf(jsbuf,sizeof(jsbuf),jsstr,href_target,href_target);
  705.         ovlstrcpy(pp,pe);return;
  706.     }
  707.     pp=getvar("module_help");
  708.     if(href_target[0]==0 && pp!=NULL && strcmp(pp,"popup")==0 &&
  709.        (pe=strstr(p,"cmd=help"))!=NULL) {
  710.         if(pe==p || *(pe-1)=='&') {
  711.             ovlstrcpy(href_target,"wims_help"); ref_mhelp=1;
  712.             snprintf(jsbuf,sizeof(jsbuf),jsstr,href_target,href_target);
  713.         }
  714.     }
  715. }
  716.  
  717. void _href_getdef(char src[], char vname[], char buf[], int buflen)
  718. {
  719.     char *p1, *p2, *p3;
  720.     buf[0]=0;
  721.     for(p1=strstr(src,vname); p1; p1=strstr(p2,vname)) {
  722.         p2=p1+strlen(vname); if(*p2!='=') continue;
  723.         if(p1>src && *(p1-1)!='&') continue;
  724.         p2++; p3=strchr(p2,'&'); if(p3==NULL) p3=p2+strlen(p2);
  725.         if(p3-p2>=buflen) return; /* too long */
  726.         memmove(buf,p2, p3-p2); buf[p3-p2]=0; return;
  727.     }
  728. }
  729.  
  730.         /* Create href to wims requests. subst() is not done. */
  731. void exec_href(char *p)
  732. {
  733.     char *s, st[128], sti[128], stc[128], stt[128], *p1, *p2, *p3, *wn="";
  734.     char *U="<span style=\"color:#A0A0C0;text-decoration:underline;\">%s</span>";
  735.     char b1[MAX_LINELEN+1], b2[MAX_LINELEN+1];
  736.     int new=0;
  737.     if(!outputing) return;
  738.     href_find_target(p);
  739.     p1=find_word_start(p);
  740.     p2=find_word_end(p1); if(*p2) *(p2++)=0;
  741.     mystrncpy(b1,p1,sizeof(b1));
  742.     mystrncpy(b2,find_word_start(p2),sizeof(b2));
  743.     substit(b1); substit(b2);
  744.         /* standard reference */
  745.     if(*b2==0 && strchr(b1,'=')==NULL) {
  746.         char b[MAX_LINELEN+1], *ll;
  747.         p1=find_word_start(b1); *find_word_end(p1)=0;
  748.         if(*p1==0 || strlen(p1)>64) return;
  749.         ll=getvar("module_language");
  750.         if(ll==NULL || *ll==0 || *(ll+1)==0 || *(ll+2)!=0) ll=lang;
  751.         accessfile(b,"r","html/href.%s",ll);
  752.         memmove(p1+1,p1,64); *p1='\n'; strcat(p1,"      ");
  753.         p2=strstr(b,p1); if(p2==NULL) return;
  754.         p1=find_word_start(p2+strlen(p1)); p2=find_word_end(p1);
  755.         if(*p2) *(p2++)=0;
  756.         p3=strchr(p2,'\n'); if(p3!=NULL) *p3=0;
  757.         mystrncpy(b1,p1,sizeof(b1));
  758.         mystrncpy(b2,find_word_start(p2),sizeof(b2));
  759.         substit(b1); substit(b2);
  760.     }
  761.         /* for robots: only references without defining cmd. */
  762.     if(robot_access && strstr(b1,"cmd=")!=NULL &&
  763.        strstr(b1,"module=adm/doc")==NULL) {
  764.         _output_(b2); return;
  765.     }
  766.     if(robot_access && strstr(aliased_cgi,"yes")!=NULL) {
  767.         char mbuf[256], lbuf[16];
  768.         _href_getdef(b1,"module",mbuf,sizeof(mbuf));
  769.         if(mbuf[0]==0) mystrncpy(mbuf,home_module,sizeof(mbuf));
  770.         _href_getdef(b1,"lang",lbuf,sizeof(lbuf));
  771.         if(strlen(lbuf)!=2) {mystrncpy(lbuf,lang,4);lbuf[2]=0;}
  772.         if(strncmp(mbuf,"adm/doc",strlen("adm/doc"))==0) {
  773.             char dbuf[256], bbuf[256];
  774.             _href_getdef(b1,"doc",dbuf,sizeof(dbuf));
  775.             _href_getdef(b1,"block",bbuf,sizeof(bbuf));
  776.             if(!myisdigit(dbuf[0])) dbuf[0]=0;
  777.             if(dbuf[0]!=0 && bbuf[0]==0) snprintf(bbuf,sizeof(bbuf),"main");
  778.             if(dbuf[0]==0)
  779.               output("<a href=\"%s%s_doc~.html\">%s</a>", ref_base,lbuf,b2);
  780.             else
  781.               output("<a href=\"%s%s_doc~%s~%s.html\">%s</a>",
  782.                      ref_base,lbuf,dbuf,bbuf,b2);
  783.         }
  784.         else {
  785.             for(s=strchr(mbuf,'/'); s!=NULL; s=strchr(s+1,'/')) *s='~';
  786.             output("<a href=\"%s%s_%s.html\">%s</a>", ref_base,lbuf,mbuf,b2);
  787.         }
  788.         return;
  789.     }
  790.     s=getvar("wims_ref_id");
  791.     if(s!=NULL && *s!=0 && !isspace(*s)) {
  792.         snprintf(sti,sizeof(sti)," id=\"%s\"",s);
  793.     }
  794.     else sti[0]=0;
  795.    
  796.     s=getvar("wims_ref_class");
  797.     if(s!=NULL && *s!=0 && !isspace(*s)) {
  798.         snprintf(stc,sizeof(stc)," class=\"%s\"",s);
  799.     }
  800.     else stc[0]=0;
  801.    
  802.     s=getvar("wims_ref_title");
  803.     if(s!=NULL && *s!=0 && !isspace(*s)) {
  804.         snprintf(stt,sizeof(stt)," title=\"%s\"",s);
  805.     }
  806.     else stt[0]=0;
  807.    
  808.     s=getvar("wims_ref_target");
  809.     if(href_target[0]!=0) s=href_target;
  810.     if(s!=NULL && *s!=0 && !isspace(*s)) {
  811.         snprintf(st,sizeof(st)," target=\"%s\"",s);
  812.         if(strcmp(s,"_parent")!=0) {
  813.             new=1; wn="wims_window=new&";
  814.         }
  815.     }
  816.     else st[0]=0;
  817.     _httpfollow(b1,wn,new);
  818.     tohttpquery(b1);
  819.     if(strstr(session_prefix,"_check")!=NULL) {
  820.         if(*b2) output(U,b2);
  821.         else _output_("<a id=\"0\"></a>");
  822.         return;
  823.     }
  824.     if(jsbuf[0]==0 && st[0]==0 && strstr(session_prefix,"_exam")!=NULL) {
  825.         p1=strstr(b1,"cmd="); if(p1!=NULL) {
  826.             p1+=strlen("cmd=");
  827.             if(strncmp(p1,"new",3)==0 || strncmp(p1,"renew",5)==0 ||
  828.                strncmp(p1,"intro",5)==0) {
  829.                 if(*b2) output(U,b2);
  830.                 else _output_("<a id=\"#\"></a>");
  831.                 return;
  832.             }
  833.         }
  834.     }
  835.     if(*b2)
  836.       output("<a href=\"%s?%s\"%s%s %s %s %s>%s</a>",
  837.              ref_name, b1, st, jsbuf,sti,stc,stt,b2);
  838.     else
  839.       output("<a href=\"%s?%s\"%s%s %s %s %s>",ref_name, b1, st, jsbuf,sti,stc,stt);
  840.     setvar("wims_ref_id","");
  841.     setvar("wims_ref_class","");
  842.     setvar("wims_ref_title","");
  843. }
  844.  
  845.         /* Create form refering to the page. */
  846. void exec_form(char *p)
  847. {
  848.     char *s, *p1, *p2, *a, *m, *opt, st[128], *wn="";
  849.     char abuf[128];
  850.     int i, new=0;
  851.     if(!outputing) return;
  852.     href_find_target(p);
  853.     s=getvar("wims_ref_target");
  854.     if(href_target[0]!=0) s=href_target;
  855.     if(s!=NULL && *s!=0 && !isspace(*s)) {
  856.         snprintf(st,sizeof(st)," target=\"%s\"",s);
  857.         if(strcmp(s,"_parent")!=0) {
  858.             new=1; wn="<input type=\"hidden\" name=\"wims_window\" value=\"yes\" />\n";
  859.         }
  860.     }
  861.     else st[0]=0;
  862.     a=getvar("wims_ref_anchor"); if(a==NULL) a="";
  863.     opt=find_word_start(find_word_end(find_word_start(p)));
  864.     m=getvar("wims_form_method");
  865.     if(m!=NULL) {
  866.         m=find_word_start(m);
  867.         if(strncasecmp(m,"post",4)==0) m="post";
  868.         else if(strncasecmp(m,"get",3)==0) m="get";
  869.         else if(strncasecmp(m,"file",4)==0) {
  870.             m="post\" enctype=\"multipart/form-data";
  871.             snprintf(abuf,sizeof(abuf),"?form-data%ld%s",random(),a); a=abuf;
  872.             force_setvar("wims_form_method","");
  873.         }
  874.         else m=default_form_method;
  875.     }
  876.     else m=default_form_method;
  877.     if(strstr(session_prefix,"_check")!=NULL) {
  878.         output("<form action=\"NON_EXISTING_PAGE\" onsubmit=\"window.close();\" %s>\n",
  879.                opt);
  880.         return;
  881.     }
  882.     output("<form action=\"%s%s\"%s method=\"%s\" %s>\n<div>%s",ref_name,a,st,m,opt,wn);
  883.     if(a!=abuf && a[0]) force_setvar("wims_ref_anchor","");
  884.     for(i=0;i<follow_no;i++) {
  885.         if(robot_access && follow_list[i]==ro_session) continue;
  886.         if(!new && follow_list[i]!=ro_session
  887.            && follow_list[i]!=ro_module && follow_list[i]!=ro_lang)
  888.           continue;
  889.         if(follow_list[i]==ro_module) continue;
  890.         s=getvar(ro_name[follow_list[i]]);
  891.         if(s!=NULL && *s!=0) {
  892.             if(follow_list[i]==ro_session && memcmp(href_target,"wims_",5)==0) {
  893.                 char st[MAX_LINELEN+1];
  894.                 char *s1;
  895.                 s1=getvar("wims_session");
  896.                 if(s1==NULL) internal_error("exec_form() error.\n");
  897.                 snprintf(st,sizeof(st),"%.10s%s",s1,href_target+4);
  898.                 s=st;
  899.             }
  900.             output("<input type=\"hidden\" name=\"%s\" value=\"%s\" />\n",
  901.                    ro_name[follow_list[i]],s);
  902.         }
  903.     }
  904.     p1=find_word_start(p);p2=find_word_end(p1);
  905.     if(p2>p1) {
  906.         char buf[64];
  907.         int i;
  908.         i=p2-p1; if(i>60) i=60;
  909.         memmove(buf,p1,i);buf[i]=0;
  910.         for(i=0;i<CMD_NO && strcmp(buf,commands[i]);i++);
  911.         if(i<CMD_NO) {
  912.             output("<input type=\"hidden\" name=\"cmd\" value=\"%s\" />\n",buf);
  913.             if(i!=cmd_intro && i!=cmd_new)
  914.               output("<input type=\"hidden\" name=\"module\" value=\"%s\" />\n",
  915.                      getvar(ro_name[ro_module]));
  916.         }
  917.     }
  918. }
  919.  
  920.         /* Creat link to trap robot access, an internal command
  921.          * which should not be documented */
  922. void exec_robottrap(char *p)
  923. {
  924.     char buf[MAX_LINELEN+1];
  925.     if(robot_access) return;
  926.     ovlstrcpy(buf,"session=$wims_session.1&module=adm/trap");
  927.     _output_("<!-- "); exec_href(buf);
  928.     _output_("Robot trapper, do not click!</a> --><div>");
  929.     exec_href(buf); _output_("<span></span></a></div>");
  930. }
  931.  
  932.         /* set definitions in a file. Trusted modules only. */
  933. void exec_setdef(char *p)
  934. {
  935.     char *p1, *pp;
  936.     char nbuf[MAX_LINELEN+1], fbuf[MAX_LINELEN+1], tbuf[MAX_LINELEN+1];
  937.     if(robot_access || !trusted_module() || is_class_module) return;
  938.     p1=wordchr(p,"in"); if(p1==NULL) module_error("syntax_error");
  939.     *p1=0; p1=find_word_start(p1+strlen("in"));
  940.     ovlstrcpy(nbuf,p);
  941.     mystrncpy(tbuf,p1,sizeof(tbuf));
  942.     substit(nbuf); substit(tbuf);
  943.     if(find_module_file(tbuf,fbuf,1)) return;
  944.     pp=find_word_start(nbuf); p1=find_word_start(fbuf); *find_word_end(p1)=0;
  945.     strip_trailing_spaces(pp);
  946.     setdef(p1,pp);
  947. }
  948.  
  949.         /* Set a variable. */
  950. void exec_set(char *name)
  951. {
  952.     char *p, *defn, *parm;
  953.     char tbuf2[MAX_LINELEN+1], namebuf[MAX_LINELEN+1];
  954.     int i;
  955.  
  956.     p=strchr(name,'=');
  957.     if(p==NULL) return; /* warning or error! */
  958.     *p=0; defn=find_word_start(p+1);
  959.     *find_word_end(name)=0;
  960.     mystrncpy(namebuf,find_word_start(name),sizeof(namebuf));
  961.         /* we allow substit in names, to implement array */
  962.     substit(namebuf); *find_word_end(namebuf)=0;    
  963.     if(*defn!=calc_prefix_char) {
  964.         /* substitute by default */
  965.         mystrncpy(tbuf2,defn,sizeof(tbuf2));
  966.         substit(tbuf2); setvar(namebuf,tbuf2); return;
  967.     }
  968.         /* called from !readdef */
  969.     if((untrust&4)!=0) module_error("not_trusted");
  970.         /* definition is a command  */
  971.     parm=find_word_end(defn+1);
  972.     if( *parm != 0 ) { *parm=0; parm=find_word_start(parm+1); }
  973.     i=m_file.lines[m_file.l].varcode;
  974.     if(i<0) {
  975.         i=search_list(calc_routine,CALC_FN_NO,sizeof(calc_routine[0]),defn+1);
  976.         m_file.lines[m_file.l].varcode=i;
  977.     }
  978.     if(i<0) {
  979.             /* replace by warning? */
  980.         setvar(error_data_string,defn+1); module_error("bad_cmd");
  981.         return;
  982.     }
  983.     mystrncpy(tbuf2,parm,sizeof(tbuf2)); execnt++;
  984.     if(calc_routine[i].tag==0) substit(tbuf2);
  985.     tbuf2[sizeof(tbuf2)-1]=0; calc_routine[i].routine(tbuf2);
  986.                 /* remove trailing new line */
  987.     tbuf2[sizeof(tbuf2)-1]=0;
  988.     if(tbuf2[strlen(tbuf2)-1]=='\n') tbuf2[strlen(tbuf2)-1]=0;
  989.     setvar(namebuf,tbuf2);
  990. }
  991.  
  992.         /* set but do not overwrite. */
  993. void exec_default(char *p)
  994. {
  995.     char *start, *end, c, *pp;
  996.     char namebuf[MAX_LINELEN+1];
  997.     start=find_word_start(p);
  998.     for(end=start;*end!=0 && !isspace(*end) && *end!='='; end++);
  999.     c=*end; *end=0;
  1000.     if(end-start<=MAX_LINELEN-1) {
  1001.         memmove(namebuf,start,end-start+1); substit(namebuf);
  1002.         pp=getvar(namebuf);
  1003.         if(pp!=NULL && *pp!=0) return;
  1004.     }
  1005.     *end=c; exec_set(p);
  1006. }
  1007.  
  1008.         /* Does nothing; just a comment. */
  1009. void exec_comment(char *p)
  1010. {
  1011.     return;
  1012. }
  1013.  
  1014.         /* Exit the file under interpretation */
  1015. void exec_exit(char *p)
  1016. {
  1017.     m_file.linepointer=m_file.linecnt;
  1018.     return;
  1019. }
  1020.  
  1021.         /* output a file. Undocumented. Aliases:
  1022.          * getfile, outfile, fileout */
  1023. void exec_getfile(char *p)
  1024. {
  1025.     char *s, *p1, url[MAX_LINELEN+1];
  1026.     char *prompt;
  1027.    
  1028.     p=find_word_start(p); prompt=find_word_end(p);
  1029.     if(*prompt!=0) *prompt++=0;
  1030.     prompt=find_word_start(prompt);
  1031.     if(*p==0 || !outputing) return;
  1032.     if(!trusted_module() || is_class_module) return;
  1033.     s=getvar(ro_name[ro_session]);
  1034.     if(s==NULL || *s==0 || strstr(s,"robot")!=NULL) return;
  1035.     mystrncpy(url,ref_name,sizeof(url));
  1036.     for(p1=url+strlen(url);p1>url && *(p1-1)!='/'; p1--);
  1037.     if(good_httpd) snprintf(p1,sizeof(url)+p1-url,
  1038.                             "getfile/%s?&+session=%s&+modif=%ld",
  1039.                             p,s,nowtime);
  1040.     else snprintf(url,sizeof(url),
  1041.                   "%s?cmd=getfile&+session=%s&+special_parm=%s&+modif=%ld",
  1042.                   ref_name,s,p,nowtime);
  1043.     snprintf(jsbuf,sizeof(jsbuf),jsstr,"wims_file","wims_file");
  1044.     if(*prompt) output("<a href=\"%s\">%s</a>\n", url,prompt);
  1045.     else output("<a href=\"%s\"></a>",url);
  1046. }
  1047.  
  1048.         /* internal */
  1049. void count_insert(void)
  1050. {
  1051.     insert_no++;
  1052.     if(insert_no>=INS_LIMIT) module_error("too_many_ins");
  1053. }
  1054.  
  1055. int animated_ins=0;
  1056. int grouped_ins=0;
  1057.  
  1058.         /* generic insertion */
  1059. void _exec_ins(char *p, char *script_name,char *format)
  1060. {
  1061.     char *s, *b, *at, *tag, *tag2, *al, *fmt, *mh;
  1062.     char *p1, *pt;
  1063.     char buf[1024],buf2[1024],url[MAX_LINELEN+1],altbuf[1024];
  1064.     char outbuf[1024];
  1065.     int border, middle, vspace;
  1066.     long int tel;
  1067.  
  1068.     if(robot_access) return;
  1069.     count_insert(); outbuf[0]=0;
  1070.     setenv("ins_source",p,1); /* value kept from user tamper */
  1071.     if(animated_ins) fmt=getvar("anim_format"); else fmt=format;
  1072.     if(fmt==NULL) fmt="gif";
  1073.     if(ismhelp) mh="mh"; else mh="";
  1074.     snprintf(buf,sizeof(buf),"%s/insert%s-%d.%s",s2_prefix,mh,insert_no,fmt);
  1075.     if(grouped_ins) {unlink(buf); goto grouped;}
  1076.     exportall();
  1077.     call_ssh("%s/%s %d %s >%s/ins.out 2>%s/ins.err",
  1078.             bin_dir,script_name,insert_no,tmp_dir,tmp_dir,tmp_dir);
  1079.     unlink(buf); wrapexec=1;
  1080.     if(trusted_module()) setenv("trusted_module","yes",1);
  1081.     else if(untrust) setenv("trusted_module","no",1);
  1082.     call_ssh("mv %s/insert%s-%d.%s %s >/dev/null 2>/dev/null",
  1083.              tmp_dir,mh,insert_no,fmt,s2_prefix);
  1084.     tel=filelength("%s", buf);
  1085.     if(tel<=5) {
  1086.         char bbuf[MAX_LINELEN+1];
  1087.         accessfile(bbuf,"r","%s/ins.err",tmp_dir);
  1088.         snprintf(url,sizeof(url),"gifs/badins.gif");
  1089.         for(p1=bbuf;p1<bbuf+512 && *p1;p1++)
  1090.           if(*p1=='<' || *p1=='>') *p1='?';
  1091.         *p1=0;
  1092.         if(bbuf[0]==0) snprintf(bbuf,sizeof(bbuf),"Fail");
  1093.         snprintf(outbuf+strlen(outbuf),sizeof(outbuf)-strlen(outbuf),
  1094.                  " <img src=\"%s\" alt=\"Error\" /> <small><pre>%s</pre></small> <br /> ",
  1095.                  url,bbuf);
  1096.         setvar("ins_warn","fail");
  1097.         setvar("ins_cnt","0");
  1098.         goto reset;
  1099.     }
  1100.     grouped:
  1101.     s=getvar(ro_name[ro_session]);
  1102.     b=getvar("ins_border"); at=getvar("ins_attr");
  1103.     tag=getvar("ins_tag");  al=getvar("ins_align");
  1104.     if(at==NULL) at="";
  1105.     if(tag==NULL) tag="";
  1106.     if(al==NULL) al="";al=find_word_start(al);
  1107.     if(*al!=0) snprintf(buf2,sizeof(buf2),"vertical-align:%s",al); else buf2[0]=0;
  1108.     if(strcasecmp(al,"middle")==0) middle=1; else middle=0;
  1109.     tag2=""; vspace=0;
  1110.     if(*tag!=0) {
  1111.         mystrncpy(buf,tag,sizeof(buf)); tag=find_word_start(buf);
  1112.         tag2=find_word_end(tag);
  1113.         if(*tag2!=0) *tag2++=0;
  1114.         tag2=find_word_start(tag2);
  1115.     }
  1116.     if(b==NULL || *b==0) border=0;
  1117.     else border=atoi(b);
  1118.     if(border<0) border=0; if(border>100) border=100;
  1119.     if(middle) {
  1120.         snprintf(outbuf+strlen(outbuf),
  1121.                  sizeof(outbuf)-strlen(outbuf),"%s",mathalign_sup1);
  1122.         vspace=2;
  1123.     }
  1124.     mystrncpy(url,ref_name,sizeof(url));
  1125.     for(p1=url+strlen(url);p1>url && *(p1-1)!='/'; p1--);
  1126.     snprintf(p1,sizeof(url)+p1-url,
  1127.              "wims.%s?cmd=getins&+session=%s&+special_parm=insert%s-%d.%s&+modif=%ld",
  1128.              fmt,s,mh,insert_no,fmt,nowtime);
  1129.     if(strchr(ins_alt,'"')!=NULL || strlen(ins_alt)>256) ins_alt[0]=0;
  1130.     pt=getvar("wims_ins_alt"); if(pt==NULL) pt="";
  1131.     if(ins_alt[0] && strcmp(pt,"none")!=0)
  1132.       snprintf(altbuf,sizeof(altbuf)," alt=\"%s\"",ins_alt);
  1133.     else snprintf(altbuf,sizeof(altbuf)," alt=\"\"");
  1134.     if(strcasecmp(tag,"form")!=0) {
  1135.         snprintf(outbuf+strlen(outbuf),sizeof(outbuf)-strlen(outbuf),
  1136.                  "<img src=\"%s\" style=\"border:solid;border-width:%dpx;margin-bottom:%dpx;%s\" %s %s />",
  1137.                  url, border, vspace, buf2, at, altbuf);
  1138.     }
  1139.     else {
  1140.         char *n, *nend;
  1141. /* fix: add quotes at name=" " */
  1142.         if(*tag2!=0) {n="name=\"" ; nend="\"";} else {n=""; nend="";}
  1143.         snprintf(outbuf+strlen(outbuf),sizeof(outbuf)-strlen(outbuf),
  1144.                  "<input type=\"image\" %s%s%s src=\"%s\" style=\"border:solid;border-width:%dpx;margin-bottom:%dpx;%s\" %s %s />",
  1145.                  n,tag2,nend,url,border,vspace,buf2,at,altbuf);
  1146.     }
  1147.     if(middle) snprintf(outbuf+strlen(outbuf),
  1148.                         sizeof(outbuf)-strlen(outbuf),"%s",mathalign_sup2);
  1149.     setvar("ins_warn",""); ins_alt[0]=0;
  1150.     setvar("ins_cnt",int2str(insert_no));
  1151.     reset:
  1152.     if(outputing) _output_(outbuf);
  1153.     setvar("ins_out",outbuf);
  1154.     setvar("ins_attr",""); setvar("ins_tag","");
  1155.     setvar("ins_url",url);
  1156.     snprintf(buf2,sizeof(buf2),"insert%s-%d.%s",mh,insert_no,fmt);
  1157.     setvar("ins_filename",buf2);
  1158.     animated_ins=0;
  1159. }
  1160.  
  1161.         /* instex: dynamically insert tex outputs */
  1162. void exec_instex(char *p)
  1163. {
  1164.     char *ts, *tc, *f, *mh, buf[MAX_FNAME+1];
  1165.    
  1166.     if(robot_access) {
  1167.         *p=0; return;
  1168.     }
  1169.     f=instex_check_static(p); substit(p);
  1170.     if(f==NULL) {
  1171.         /* Use static instex if there is no real substitution
  1172.          * and the source file is not in sessions directory. */
  1173.         calc_instexst(p); if(outputing) _output_(p);
  1174.         return;
  1175.     }
  1176.     if(ismhelp) mh="mh"; else mh="";
  1177.     fix_tex_size(); f="gif";
  1178.     setenv("texgif_style",instex_style,1);
  1179.     tc=getvar("instex_texheader"); if (tc) { setenv("texgif_texheader",tc,1);}
  1180.     setenv("texgif_tmpdir",tmp_dir,1);
  1181.     setenv("texgif_src",p,1);
  1182.     if(ins_alt[0]==0) mystrncpy(ins_alt,p,sizeof(ins_alt));
  1183.     mkfname(buf,"%s/insert%s-%d.gif",tmp_dir,mh,insert_no+1);
  1184.     setenv("texgif_outfile",buf,1);
  1185.     ts=getvar("wims_texsize"); tc=getvar("instex_color");
  1186.     if(lastout_file!=-1 && (tc==NULL || *tc==0) &&      
  1187.        (ts==NULL || *ts==0 || strcmp(ts,"0")==0) &&
  1188.        strstr(p,"\\begin{")==NULL) {
  1189.         int ls, ln;
  1190.         char *pagebreak;
  1191.         ls=strlen(instex_src); ln=strlen(instex_fname);
  1192.         if(ls+strlen(p)>=MAX_LINELEN-256 ||
  1193.            ln+strlen(buf)>=MAX_LINELEN-16) {
  1194.             instex_flush(); ls=ln=0;
  1195.         }
  1196.         if(instex_cnt>0) pagebreak="\\pagebreak\n"; else pagebreak="";
  1197.         snprintf(instex_src+ls,MAX_LINELEN-ls,"%s %s %s %s\n",
  1198.                  pagebreak,instex_style,p,instex_style);
  1199.         snprintf(instex_fname+ln,MAX_LINELEN-ln,"%s\n",buf);
  1200.         grouped_ins=1;
  1201.     }
  1202.     mkfname(buf,"%s/texgif.dvi",tmp_dir); unlink(buf);
  1203.     wrapexec=0; _exec_ins(p,instex_processor,f);
  1204.     if(grouped_ins) instex_cnt++;
  1205.     grouped_ins=0;
  1206. }
  1207.  
  1208.         /* patches the gnuplot integer division (mis)feature. */
  1209. void gnuplot_patch(char *p,int oneline)
  1210. {
  1211.     char *pp;
  1212.     for(pp=strchr(p,'/');pp!=NULL;pp=strchr(pp+1,'/')) {
  1213.         char *p1;
  1214.         if(pp<=p || !myisdigit(*(pp-1)) || !myisdigit(*(pp+1))) continue;
  1215.         for(p1=pp-2;p1>=p && myisdigit(*p1);p1--);
  1216.         if(p1>=p && *p1=='.') continue;
  1217.         for(p1=pp+2;*p1 && myisdigit(*p1);p1++);
  1218.         if(*p1=='.') continue;
  1219.         string_modify(p,p1,p1,".0");
  1220.     }
  1221.     for(pp=strchr(p,'^');pp!=NULL;pp=strchr(pp+1,'^'))
  1222.       string_modify(p,pp,pp+1,"**");
  1223.         /* disallow new lines and ';' */
  1224.     if(oneline)
  1225.       for(pp=p;*pp!=0;pp++) if(*pp==';' || *pp=='\n') *pp=' ';
  1226. }
  1227.  
  1228.         /* This is to disable pipe in the gnuplot plotting function.
  1229.          * We do not allow ' followed by < . */
  1230. void prepare_insplot_parm(char *p)
  1231. {
  1232.     int i,j,multanim; char *pp, *s;
  1233.     double d;
  1234.     char setbuf[MAX_LINELEN+10],buf[MAX_LINELEN+1];
  1235.    
  1236.     j=strlen(p);
  1237.       /* pipe in plot command */
  1238.     for(i=0;i<j;i++) {
  1239.         if(*(p+i)!='\'' && *(p+i)!='"') continue;
  1240.         pp=find_word_start(p+i+1); if(*pp=='<') module_error("illegal_plot_cmd");
  1241.     }
  1242.     gnuplot_patch(p,1);
  1243.         /* multiplot */
  1244.     multanim=0;
  1245.     pp=getvar("insplot_split");
  1246.     if(pp!=NULL) i=linenum(pp); else i=0;
  1247.         /* arbitrary limit: 16 multiplots */
  1248.     if(i>16) i=16;
  1249.     if(i>1) {
  1250.         char tbuf[MAX_LINELEN*(i+1)+100], bbuf[MAX_LINELEN+1];
  1251.         tbuf[0]=0;
  1252.         if(*p!=0) snprintf(tbuf,sizeof(tbuf),"%s\n",p);
  1253.         snprintf(buf,sizeof(buf),"%d",i); setenv("multiplot",buf,1);
  1254.         for(j=1;j<=i;j++) {
  1255.             snprintf(buf,sizeof(buf),"insplot_parm_%d",j);
  1256.             pp=getvar(buf);
  1257.             if(pp==NULL || *pp==0) {
  1258.                 if(j==1 && *p!=0) continue;
  1259.                 pp="";
  1260.             }
  1261.             else {
  1262.                 mystrncpy(bbuf,pp,sizeof(bbuf));
  1263.                 gnuplot_patch(bbuf,1);
  1264.             }
  1265.             strcat(tbuf,bbuf);strcat(tbuf,"\n");
  1266.         }
  1267.         setenv("insplot_source",tbuf,1);
  1268.         if(varchr(tbuf,"s")!=NULL) multanim=1;
  1269.     }
  1270.         /* no illegal chaining */
  1271.     pp=getvar("insplot_font"); if(pp!=NULL) {
  1272.         for(s=pp;s<pp+MAX_LINELEN && *s;s++)
  1273.           if(*s==';' || *s=='\n' || *s==' ') *s=0;
  1274.         if(s>=pp+MAX_LINELEN) *s=0;
  1275.         setvar("insplot_font",pp);
  1276.     }
  1277.     pp=getvar("insplot_set"); if(pp!=NULL) {
  1278.         char tbuf[MAX_LINELEN+1];
  1279.         mystrncpy(tbuf,pp,sizeof(tbuf));
  1280.         i=strlen(tbuf)-1;
  1281.         while(i>0 && isspace(tbuf[i])) i--;
  1282.         if(tbuf[i]==';') tbuf[i]=0;
  1283.         gnuplot_patch(tbuf,0);pp=tbuf;
  1284.         ovlstrcpy(setbuf,"set "); j=strlen("set ");
  1285.         for(i=0; *(pp+i)!=0 && j<MAX_LINELEN; i++) {
  1286.             if(*(pp+i)=='\n') {setbuf[j++]=' '; continue;}
  1287.             if(*(pp+i)!=';') {setbuf[j++]=*(pp+i); continue;}
  1288.             ovlstrcpy(setbuf+j,"\nset "); j+=strlen("\nset ");
  1289.         }
  1290.         setbuf[j]=0;
  1291.         setenv("insplot_set",setbuf,1);
  1292.     }
  1293.     else setenv("insplot_set","",1);
  1294.       /* frames of animation */
  1295.     pp=getvar("ins_anim_frames");
  1296.     if(pp!=NULL) i=evalue(pp); else i=1;
  1297.     if(i>=ANIM_LIMIT) i=ANIM_LIMIT-1; if(i<1) i=1;
  1298.     if(strstr(setbuf,"step")==NULL && strstr(p,"step")==NULL
  1299.        && varchr(setbuf,"s")==NULL && varchr(p,"s")==NULL && !multanim) i=1;
  1300.     setenv("ins_anim_frames",int2str(i),1);
  1301.     setvar("ins_anim_frames","");
  1302.     if(i>1) {setvar("ins_animation","yes");animated_ins=1;}
  1303.     else setvar("ins_animation","no");
  1304.       /* delay of animation */
  1305.     pp=getvar("ins_anim_delay");
  1306.     if(pp!=NULL) d=evalue(pp); else d=0;
  1307.     if(d>=10) d=10; if(d<0) d=0;
  1308.     setenv("ins_anim_delay",int2str(d*100),1);
  1309. }
  1310.  
  1311.         /* Insert dynamic 2d plot */
  1312. void exec_insplot(char *p)
  1313. {
  1314.     char *fmt;
  1315.     if(robot_access) {
  1316.         *p=0; return;
  1317.     }
  1318.     fmt=getvar("ins_format"); if(fmt==NULL || *fmt==0) fmt=DEFAULT_INS_FORMAT;
  1319.     prepare_insplot_parm(p); setenv("insplot_method","2D",1);
  1320.     _exec_ins(p,insplot_processor,fmt);
  1321.     wrapexec=1;
  1322. /*    call_ssh("mv %s/insplot_cmd %s 2>/dev/null",tmp_dir,s2_prefix); */
  1323.     unsetenv("multiplot"); setvar("insplot_split","");
  1324. }
  1325.  
  1326.         /* Insert dynamic 3d plot */
  1327. void exec_insplot3d(char *p)
  1328. {
  1329.     char *fmt;
  1330.     if(robot_access) {
  1331.         *p=0; return;
  1332.     }
  1333.     fmt=getvar("ins_format"); if(fmt==NULL || *fmt==0) fmt=DEFAULT_INS_FORMAT;
  1334.     prepare_insplot_parm(p); setenv("insplot_method","3D",1);
  1335.     _exec_ins(p,insplot_processor,fmt);
  1336.     wrapexec=1;
  1337. /*     call_ssh("mv %s/insplot_cmd %s 2>/dev/null",tmp_dir,s2_prefix); */
  1338.     unsetenv("multiplot");setvar("insplot_split","");
  1339. }
  1340.  
  1341.         /* Insert dynamic gif draw. The parm preparation is specific to fly. */
  1342. void exec_insdraw(char *p)
  1343. {
  1344.     char *pp, *fmt;
  1345.     int i;
  1346.     double d;
  1347.    
  1348.     if(robot_access) {
  1349.         *p=0; return;
  1350.     }
  1351. /*    calc_tolower(p);  */
  1352.     fmt=getvar("ins_format"); if(fmt==NULL || *fmt==0) fmt=DEFAULT_INS_FORMAT;
  1353.     while((pp=wordchr(p,"output"))!=NULL) memmove(pp,"zqkwfx",6);
  1354.       /* frames of animation */
  1355.     pp=getvar("ins_anim_frames");
  1356.     if(pp!=NULL) i=evalue(pp); else i=1;
  1357.     if(i>=ANIM_LIMIT) i=ANIM_LIMIT-1; if(i<1) i=1;
  1358.     if(i>1 && varchr(p,"s")==NULL && varchr(p,"animstep")==NULL
  1359.        && varchr(p,"step")==NULL) i=1;
  1360.     setenv("ins_anim_frames",int2str(i),1);
  1361.     setvar("ins_anim_frames","");
  1362.     if(i>1) {setvar("ins_animation","yes");animated_ins=1;}
  1363.     else setvar("ins_animation","no");
  1364.       /* delay of animation */
  1365.     pp=getvar("ins_anim_delay");
  1366.     if(pp!=NULL) d=evalue(pp); else d=0;
  1367.     if(d>=10) d=10; if(d<0) d=0;
  1368.     setenv("ins_anim_delay",int2str(d*100),1);
  1369.     pp=getvar("insdraw_filebase");
  1370.     if(pp!=NULL && strstr(pp,parent_dir_string)!=NULL)
  1371.       setvar("insdraw_filebase","");
  1372.     _exec_ins(p,insdraw_processor,fmt);
  1373. }
  1374.  
  1375. void exec_increase(char *p)
  1376. {
  1377.     char *p1, *p2;
  1378.     p1=find_word_start(p); p2=find_word_end(p1);
  1379.     if(p2<=p1) {
  1380.         *p=0; return;
  1381.     }
  1382.     *p2=0;p2=getvar(p1);
  1383.     if(p2==NULL) p2="";
  1384.     setvar(p1,int2str(atoi(p2)+1)); *p=0;
  1385. }
  1386.  
  1387.         /* bound a variable */
  1388. void exec_bound(char *p)
  1389. {
  1390.     char *p1, *p2, *p3;
  1391.     int doub,i,bcnt,defaulted;
  1392.     double d1,d2,dd,val;
  1393.     char nbuf[MAX_LINELEN+1],lbuf[MAX_LINELEN+1],dbuf[MAX_LINELEN+1];
  1394.     char vbuf[MAX_LINELEN+1];
  1395.     char *blist[2048];
  1396.    
  1397.     p1=find_word_start(p); p2=find_word_end(p1);
  1398.     if(*p2==0) {
  1399.         syntax: module_error("syntax_error");
  1400.     }
  1401.     *p2=0; ovlstrcpy(nbuf,p1);substit(nbuf); p1=find_word_start(p2+1);
  1402.     p2=getvar(nbuf);if(p2==NULL) p2="";
  1403.     mystrncpy(vbuf,find_word_start(p2),sizeof(vbuf));
  1404.     strip_trailing_spaces(vbuf);
  1405.     p2=find_word_end(p1); if(*p2==0) goto syntax;
  1406.     *p2=0;p2++;
  1407.     p3=wordchr(p2,"default");
  1408.     if(p3!=NULL) {
  1409.         *p3=0; defaulted=1;
  1410.         p3=find_word_start(p3+strlen("default"));
  1411.         ovlstrcpy(dbuf,p3); substit(dbuf);
  1412.     }
  1413.     else defaulted=0;
  1414.     if(strcmp(p1,"between")==0) {
  1415.         p1=find_word_start(p2);
  1416.         i=strlen("integer");
  1417.         if(strncmp(p1,"integer",i)==0 &&
  1418.            (isspace(*(p1+i)) || (*(p1+i)=='s' && isspace(*(p1+i+1))))) {
  1419.             doub=0; p1=find_word_start(find_word_end(p1));
  1420.             val=rint(evalue(vbuf));
  1421.             if(vbuf[0]) float2str(val,vbuf);
  1422.         }
  1423.         else {
  1424.             doub=1;val=evalue(vbuf);
  1425.         }
  1426.         p2=wordchr(p1,"and"); p3=p2+strlen("and");
  1427.         if(p2==NULL) {
  1428.           p2=strchr(p1,','); p3=p2+1;
  1429.         }
  1430.         if(p2==NULL) goto syntax;
  1431.         *p2=0;p2=find_word_start(p3);
  1432.         if(*p1==0 || *p2==0) goto syntax;
  1433.         d1=evalue(p1);d2=evalue(p2);
  1434.         if(!finite(d1) || !finite(d2) ||
  1435.            abs(d1)>(double)(1E10) || abs(d2)>(double)(1E10)) goto syntax;
  1436.         if(d1>d2) {
  1437.             dd=d1;d1=d2;d2=dd;
  1438.         }
  1439.         if(vbuf[0] && val<=d2 && val>=d1) {
  1440.             if(!doub) setvar(nbuf,vbuf);
  1441.             *p=0; return;
  1442.         }
  1443.         if(defaulted) ovlstrcpy(p,dbuf);
  1444.         else {
  1445.             if(!doub) {
  1446.                 d1=ceil(d1);d2=floor(d2);
  1447.             }
  1448.             if(vbuf[0]==0 || val<d1) val=d1;
  1449.             else val=d2;
  1450.             float2str(val,p);
  1451.         }
  1452.         setvar(nbuf,p); *p=0; return;
  1453.     }
  1454.     else {
  1455.         if(strcmp(p1,"within")==0 || strcmp(p1,"among")==0) {
  1456.             ovlstrcpy(lbuf,p2);substit(lbuf);
  1457.             bcnt=cutitems(lbuf,blist,2048);
  1458.             if(bcnt<=0) {
  1459.                 *p=0; return;
  1460.             }
  1461.             for(i=0;i<bcnt;i++) {
  1462.                 if(strcmp(blist[i],vbuf)==0) {
  1463.                     *p=0; return;
  1464.                 }
  1465.             }
  1466.             if(defaulted) ovlstrcpy(p,dbuf); else ovlstrcpy(p,blist[0]);
  1467.             setvar(nbuf,p); *p=0;
  1468.             return;
  1469.         }
  1470.         else goto syntax;
  1471.     }
  1472. }
  1473.  
  1474.         /* detrust the module. */
  1475. void exec_detrust(char *p)
  1476. {       untrust|=1; *p=0; }
  1477.  
  1478. void exec_warn(char *p)
  1479. {
  1480.     char *p1,*p2;
  1481.     char buf[MAX_FNAME+1];
  1482.     WORKING_FILE save;
  1483.  
  1484.     if(!outputing) goto end;
  1485.     p1=find_word_start(p);p2=find_word_end(p1);
  1486.     if(p2<=p1) goto end;
  1487.     *p2=0;
  1488.     snprintf(buf,sizeof(buf),"wims_warn_%s",p1);
  1489.     p2=getvar(buf);
  1490.     if(p2==NULL || *p2==0) goto end;
  1491.     p2=getvar("module_language");if(p2==NULL) p2="en";
  1492.     mkfname(buf,"msg/warn_%s.phtml.%s",p1,p2);
  1493.     memmove(&save,&m_file,sizeof(WORKING_FILE));
  1494.     if(open_working_file(&m_file,buf)==0) phtml_put(NULL,0);
  1495.     memmove(&m_file,&save,sizeof(WORKING_FILE));
  1496.     end:
  1497.     *p=0; return;
  1498. }
  1499.  
  1500.         /* write an error message. */
  1501. void exec_msg(char *p)
  1502. {
  1503.     char *p1,*p2, buf[64], *l;
  1504.     secure_exec();
  1505.     p1=find_word_start(p); p2=find_word_end(p1);
  1506.     if(*p2) {
  1507.         *p2=0; p2=find_word_start(p2+1);
  1508.     }
  1509.     force_setvar("wims_error",p1); force_setvar("wims_error_parm",p2);
  1510.     l=getvar("module_language");
  1511.     if(l!=NULL && strlen(l)==2) {
  1512.         snprintf(buf,sizeof(buf),"msg.phtml.%s",l);
  1513.         phtml_put_base(buf,0);
  1514.     }
  1515.     *p=0;
  1516. }
  1517.  
  1518. struct {
  1519.     char *name;
  1520.     int (*routine) (char *p, char *list[], int max);
  1521. } distr_cmd[]={
  1522.       {"char",          NULL},
  1523.       {"charof",        NULL},
  1524.       {"chars",         NULL},
  1525.       {"charsof",       NULL},
  1526.       {"item",          cutitems},
  1527.       {"itemof",        cutitems},
  1528.       {"items",         cutitems},
  1529.       {"itemsof",       cutitems},
  1530.       {"line",          cutlines},
  1531.       {"lineof",        cutlines},
  1532.       {"lines",         cutlines},
  1533.       {"linesof",       cutlines},
  1534.       {"list",          cutitems},
  1535.       {"word",          cutwords},
  1536.       {"wordof",        cutwords},
  1537.       {"words",         cutwords},
  1538.       {"wordsof",       cutwords}
  1539. };
  1540.  
  1541. #define distr_cmd_no (sizeof(distr_cmd)/sizeof(distr_cmd[0]))
  1542.  
  1543.         /* distribute a number of lines, items, etc. into a list of vars. */
  1544. void exec_distribute(char *p)
  1545. {
  1546.     int i,k,n;
  1547.     char *p1, *p2;
  1548.     char bf1[MAX_LINELEN+1],bf2[MAX_LINELEN+1];
  1549.     char *names[4096],*vals[4096];
  1550.     p1=find_word_start(p); p2=find_word_end(p1);
  1551.     if(p2<=p1 || *p2==0) module_error("syntax_error");
  1552.     *p2++=0;
  1553.     i=search_list(distr_cmd,distr_cmd_no,sizeof(distr_cmd[0]),p1);
  1554.     if(i<0) module_error("syntax_error");
  1555.     p2=find_word_start(p2); p1=wordchr(p2,"into");
  1556.     if(p1==NULL) module_error("syntax_error");
  1557.     *p1=0;mystrncpy(bf1,p2,sizeof(bf1));
  1558.     p1=find_word_start(p1+strlen("into"));
  1559.     mystrncpy(bf2,p1,sizeof(bf2));
  1560.     substit(bf1);substit(bf2);
  1561.     strip_trailing_spaces(bf1);
  1562.     items2words(bf2); n=cutwords(bf2,names,4096);
  1563.     if(distr_cmd[i].routine!=NULL) {
  1564.         k=distr_cmd[i].routine(bf1,vals,n);
  1565.         for(i=0;i<k;i++) setvar(names[i],vals[i]);
  1566.         for(;i<n;i++) setvar(names[i],"");
  1567.     }
  1568.     else {
  1569.         char buf[2];
  1570.         buf[1]=0;
  1571.         for(p1=bf1,i=0;i<n;i++) {
  1572.             buf[0]=*p1; if(*p1) p1++;
  1573.             setvar(names[i],buf);
  1574.         }
  1575.     }
  1576. }
  1577.  
  1578.         /* reset variables */
  1579. void exec_reset(char *p)
  1580. {
  1581.     char *p1, *p2;
  1582.  
  1583.     items2words(p);
  1584.     for(p1=find_word_start(p); *p1; p1=find_word_start(p2)) {
  1585.         p2=find_word_end(p1); if(*p2) *p2++=0;
  1586.         setvar(p1,"");
  1587.     }
  1588. }
  1589.  
  1590.         /* exchange the values of two variables */
  1591. void exec_exchange(char *p)
  1592. {
  1593.     char buf[MAX_LINELEN+1],b1[MAX_LINELEN+1],b2[MAX_LINELEN+1];
  1594.     char *p1,*p2,*pb;
  1595.     p1=wordchr(p,"and");
  1596.     if(p1!=NULL) {
  1597.         *p1=0; p2=find_word_start(p1+strlen("and"));
  1598.     }
  1599.     else {
  1600.         p1=strchr(p,',');
  1601.         if(p1==NULL) module_error("syntax_error");
  1602.         *p1=0; p2=find_word_start(p1+1);
  1603.     }
  1604.     p1=find_word_start(p);
  1605.     mystrncpy(b1,p1,sizeof(b1)); substit(b1); *find_word_end(b1)=0;
  1606.     mystrncpy(b2,p2,sizeof(b2)); substit(b2); *find_word_end(b2)=0;
  1607.     if(*b1==0 || *b2==0) module_error("syntax_error");
  1608.     pb=getvar(b1);if(pb==NULL) pb="";
  1609.     mystrncpy(buf,pb,sizeof(buf));
  1610.     pb=getvar(b2);if(pb==NULL) pb="";
  1611.     setvar(b1,pb); setvar(b2,buf);
  1612. }
  1613.  
  1614.         /* Send a mail */
  1615. void exec_mailto(char *p)
  1616. {
  1617.     char *p1,*p2,*pp;
  1618.  
  1619.     if(!trusted_module() || is_class_module) return;
  1620.     p1=strchr(p,'\n'); if(p1==NULL) return;
  1621.     *p1++=0; p=find_word_start(p);
  1622.     if(*p==0) return;
  1623.     p2=strchr(p1,'\n'); if(p2==NULL) return;
  1624.     *p2++=0;
  1625.     for(pp=p1;*pp;pp++) if(*pp=='"' || *pp=='\n') *pp=' ';
  1626.     accessfile(p2,"w","%s/mail.body",tmp_dir);
  1627.     wrapexec=1;
  1628.     call_sh("mail %s -s \" %s \" %s <%s/mail.body; chmod og-rwx %s/mail.body",
  1629.             mail_opt, p1,p,tmp_dir,tmp_dir);
  1630.     mail_log(p);
  1631.     *p=0;
  1632. }
  1633.  
  1634.         /* Generates a user error. Internal and undocumented. */
  1635. void exec_usererror(char *p)
  1636. {
  1637.     if(trusted_module()) user_error(p);
  1638. }
  1639.  
  1640.         /* stop output. */
  1641. void exec_directout(char *p)
  1642. {
  1643.     if(outputing || !trusted_module()) return;
  1644.     printf("%s",p);
  1645.     noout=1;
  1646. }
  1647.  
  1648. enum {
  1649.       EXEC_IF, EXEC_JUMP, EXEC_ELSE, EXEC_ENDIF, EXEC_EXEC,
  1650.       EXEC_WHILE, EXEC_ENDWHILE,
  1651.       EXEC_FOR, EXEC_VAR, EXEC_DEBUG, EXEC_DAEMON,
  1652.       EXEC_SET, EXEC_DEFAULT, EXEC_COMMENT, EXEC_READ, EXEC_HREF,
  1653.       EXEC_INS, EXEC_STRING, EXEC_PEDIA, EXEC_DIR,
  1654.       EXEC_TRUST, EXEC_WARN, EXEC_ERROR, EXEC_SQL, EXEC_SCORE,
  1655.       EXEC_MAIL, EXEC_OTHER
  1656. } EXEC_TYPES;
  1657. #define EXEC_SUBST 0x1000
  1658. #define EXEC_USECALC 0x2000
  1659. #define EXEC_PROCTOO 0x4000
  1660. MYFUNCTION exec_routine[]={
  1661.       {"!",             EXEC_COMMENT,           exec_comment},
  1662.       {"TeXmath",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,texmath},
  1663.       {"add",           EXEC_STRING|EXEC_USECALC,calc_sum},
  1664.       {"advance",       EXEC_VAR|EXEC_SUBST,    exec_increase},
  1665.       {"append",        EXEC_STRING|EXEC_USECALC,calc_append},
  1666.       {"appendfile",    EXEC_DIR|EXEC_SUBST,    fileappend},
  1667.       {"bound",         EXEC_STRING,            exec_bound},
  1668.       {"break",         EXEC_FOR,               exec_break},
  1669.       {"call",          EXEC_EXEC|EXEC_SUBST|EXEC_PROCTOO|EXEC_USECALC, calc_exec},
  1670.       {"changeto",      EXEC_READ|EXEC_SUBST,   exec_changeto},
  1671.       {"char",          EXEC_STRING|EXEC_USECALC,calc_charof},
  1672.       {"chars",         EXEC_STRING|EXEC_USECALC,calc_charof},
  1673.       {"checkhost",     EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_checkhost},
  1674.       {"column",        EXEC_STRING|EXEC_USECALC,calc_columnof},
  1675.       {"columns",       EXEC_STRING|EXEC_USECALC,calc_columnof},
  1676.       {"comment",       EXEC_COMMENT,           exec_comment},
  1677.       {"daemon",        EXEC_DAEMON|EXEC_USECALC|EXEC_SUBST,calc_daemon},
  1678.       {"date",          EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_date},
  1679.       {"deaccent",      EXEC_STRING|EXEC_USECALC|EXEC_SUBST,deaccent},
  1680.       {"debug",         EXEC_DEBUG,             calc_debug},
  1681.       {"declosing",     EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_declosing},
  1682.       {"def",           EXEC_SET,               exec_set},
  1683.       {"default",       EXEC_SET,               exec_default},
  1684.       {"define",        EXEC_SET,               exec_set},
  1685.       {"definitionof",  EXEC_SCORE|EXEC_USECALC,calc_defof},
  1686.       {"defof",         EXEC_SCORE|EXEC_USECALC,calc_defof},
  1687.       {"defread",       EXEC_READ|EXEC_SUBST,   exec_defread},
  1688.       {"detag",         EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_detag},
  1689.       {"detrust",       EXEC_TRUST,             exec_detrust},
  1690. /*      {"dictionary",  EXEC_STRING|EXEC_USECALC,calc_dictionary},      */
  1691.       {"dir",           EXEC_DIR|EXEC_SUBST|EXEC_USECALC,calc_listfile},
  1692.       {"distribute",    EXEC_STRING,            exec_distribute},
  1693.       {"distrust",      EXEC_TRUST,             exec_detrust},
  1694.       {"else",          EXEC_ELSE,              exec_else},
  1695.       {"embraced",      EXEC_STRING|EXEC_USECALC,calc_embraced},
  1696.       {"encyclo",       EXEC_PEDIA|EXEC_SUBST|EXEC_USECALC,pedia},
  1697.       {"encyclopedia",  EXEC_PEDIA|EXEC_SUBST|EXEC_USECALC,pedia},
  1698.       {"endif",         EXEC_ENDIF,             exec_endif},
  1699.       {"endwhile",      EXEC_ENDWHILE,          exec_endwhile},
  1700.       {"evalsubst",     EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1701.       {"evalsubstit",   EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1702.       {"evalsubstitute",EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1703.       {"evaluesubst",   EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1704.       {"evaluesubstit", EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1705.       {"evaluesubstitute",EXEC_STRING|EXEC_USECALC,calc_evalsubst},
  1706.       {"examscore",     EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_examscore},
  1707.       {"exchange",      EXEC_STRING,            exec_exchange},
  1708.       {"exec",          EXEC_EXEC|EXEC_SUBST|EXEC_PROCTOO|EXEC_USECALC, calc_exec},
  1709.       {"execute",       EXEC_EXEC|EXEC_SUBST|EXEC_PROCTOO|EXEC_USECALC, calc_exec},
  1710.       {"exit",          EXEC_JUMP,              exec_exit},
  1711.       {"fileappend",    EXEC_DIR|EXEC_SUBST,    fileappend},
  1712.       {"filelist",      EXEC_DIR|EXEC_SUBST|EXEC_USECALC,calc_listfile},
  1713.       {"fileout",       EXEC_HREF|EXEC_SUBST,   exec_getfile},
  1714.       {"filewrite",     EXEC_DIR|EXEC_SUBST,    filewrite},
  1715.       {"for",           EXEC_FOR,               exec_for},
  1716.       {"form",          EXEC_HREF|EXEC_SUBST,   exec_form},
  1717.       {"formbar",       EXEC_HREF,              exec_formbar},
  1718.       {"formcheckbox",  EXEC_HREF,              exec_formcheckbox},
  1719.       {"formend",       EXEC_STRING,    exec_formend},
  1720.       {"formradio",     EXEC_HREF,              exec_formradio},
  1721.       {"formradiobar",  EXEC_HREF,              exec_formbar},
  1722.       {"formselect",    EXEC_HREF,              exec_formselect},
  1723.       {"getdef",        EXEC_SCORE|EXEC_USECALC,calc_defof},
  1724.       {"getfile",       EXEC_HREF|EXEC_SUBST,   exec_getfile},
  1725.       {"getscore",      EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscore},
  1726.       {"getscoremean",  EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscoremean},
  1727.       {"getscorepercent",EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscorepercent},
  1728.       {"getscoreremain",EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscoreremain},
  1729.       {"getscorerequire",EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscorerequire},
  1730.       {"getscoreweight",EXEC_SCORE|EXEC_SUBST|EXEC_USECALC,calc_getscoreweight},
  1731.       {"goto",          EXEC_JUMP|EXEC_SUBST,   exec_goto},
  1732.       {"header",        EXEC_HREF,              exec_header},
  1733.       {"header1",       EXEC_HREF,              exec_header1},
  1734.       {"headmenu",      EXEC_HREF,              exec_headmenu},
  1735.       {"hex",           EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_hex},
  1736.       {"homeref",       EXEC_HREF,              exec_homeref},
  1737.       {"href",          EXEC_HREF,              exec_href},
  1738.       {"htmlbar",       EXEC_HREF,              exec_formbar},
  1739.       {"htmlcheckbox",  EXEC_HREF,              exec_formcheckbox},
  1740.       {"htmlheader",    EXEC_HREF,              exec_header},
  1741.       {"htmlmath",      EXEC_STRING|EXEC_SUBST|EXEC_USECALC,htmlmath},
  1742.       {"htmlradio",     EXEC_HREF,              exec_formradio},
  1743.       {"htmlradiobar",  EXEC_HREF,              exec_formbar},
  1744.       {"htmlselect",    EXEC_HREF,              exec_formselect},
  1745.       {"htmltail",      EXEC_HREF,              exec_tail},
  1746.       {"htmltitle",     EXEC_HREF,              exec_title},
  1747.       {"if",            EXEC_IF,                exec_if},
  1748.       {"ifval",         EXEC_IF,                exec_ifval},
  1749.       {"ifvalue",       EXEC_IF,                exec_ifval},
  1750.       {"imgrename",     EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_imgrename},
  1751.       {"include",       EXEC_READ|EXEC_SUBST,   exec_read},
  1752.       {"increase",      EXEC_VAR|EXEC_SUBST,    exec_increase},
  1753.       {"input",         EXEC_READ|EXEC_SUBST,   exec_read},
  1754.       {"insdraw",       EXEC_INS|EXEC_SUBST,    exec_insdraw},
  1755.       {"insmath",       EXEC_INS,               insmath},
  1756.       {"inspaint",      EXEC_INS|EXEC_SUBST,    exec_insdraw},
  1757.       {"insplot",       EXEC_INS|EXEC_SUBST,    exec_insplot},
  1758.       {"insplot3d",     EXEC_INS|EXEC_SUBST,    exec_insplot3d},
  1759.       {"instex",        EXEC_INS,               exec_instex},
  1760.       {"instexst",      EXEC_INS|EXEC_USECALC,  calc_instexst},
  1761.       {"instexstatic",  EXEC_INS|EXEC_USECALC,  calc_instexst},
  1762.       {"item",          EXEC_STRING|EXEC_USECALC,calc_itemof},
  1763.       {"items",         EXEC_STRING|EXEC_USECALC,calc_itemof},
  1764.       {"items2lines",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2lines},
  1765.       {"items2words",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2words},
  1766.       {"itemstolines",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2lines},
  1767.       {"itemstowords",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2words},
  1768.       {"let",           EXEC_SET,               exec_set},
  1769.       {"leveldata",     EXEC_STRING|EXEC_USECALC,calc_leveldata},
  1770.       {"levelpoints",   EXEC_STRING|EXEC_USECALC,calc_leveldata},
  1771.       {"line",          EXEC_STRING|EXEC_USECALC,calc_lineof},
  1772.       {"lines",         EXEC_STRING|EXEC_USECALC,calc_lineof},
  1773.       {"lines2items",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2items},
  1774.       {"lines2list",    EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2items},
  1775.       {"lines2words",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2words},
  1776.       {"linestoitems",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2items},
  1777.       {"linestolist",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2items},
  1778.       {"linestowords",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,lines2words},
  1779.       {"list2lines",    EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2lines},
  1780.       {"list2words",    EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2words},
  1781.       {"listfile",      EXEC_DIR|EXEC_SUBST|EXEC_USECALC,calc_listfile},
  1782.       {"listfiles",     EXEC_DIR|EXEC_SUBST|EXEC_USECALC,calc_listfile},
  1783.       {"listintersect", EXEC_STRING|EXEC_USECALC,calc_listintersect},
  1784.       {"listintersection", EXEC_STRING|EXEC_USECALC,calc_listintersect},
  1785.       {"listtolines",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2lines},
  1786.       {"listtowords",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,items2words},
  1787.       {"listunion",     EXEC_STRING|EXEC_USECALC,calc_listunion},
  1788.       {"listuniq",      EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_listuniq},
  1789.       {"listunique",    EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_listuniq},
  1790.       {"listvar",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,mathvarlist},
  1791.       {"lookup",        EXEC_STRING|EXEC_USECALC,       calc_lookup},
  1792.       {"lower",         EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_tolower},
  1793.       {"lowercase",     EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_tolower},
  1794.       {"ls",            EXEC_DIR|EXEC_SUBST|EXEC_USECALC,calc_listfile},
  1795.       {"mailto",        EXEC_MAIL|EXEC_SUBST,   exec_mailto},
  1796.       {"mailurl",       EXEC_MAIL|EXEC_SUBST|EXEC_USECALC,calc_mailurl},
  1797.       {"makelist",      EXEC_STRING|EXEC_USECALC,calc_makelist},
  1798.       {"math2html",     EXEC_STRING|EXEC_SUBST|EXEC_USECALC,htmlmath},
  1799.       {"math2mathml",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,mathmlmath},
  1800.       {"math2tex",      EXEC_STRING|EXEC_SUBST|EXEC_USECALC,texmath},
  1801.       {"mathmlmath",    EXEC_STRING|EXEC_SUBST|EXEC_USECALC,mathmlmath},
  1802.       {"mathsubst",     EXEC_STRING|EXEC_USECALC,calc_mathsubst},
  1803.       {"mathsubstit",   EXEC_STRING|EXEC_USECALC,calc_mathsubst},
  1804.       {"mathsubstitute",EXEC_STRING|EXEC_USECALC,calc_mathsubst},
  1805.       {"mexec",         EXEC_EXEC|EXEC_SUBST,   exec_mexec},
  1806.       {"module",        EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_module},
  1807.       {"msg",           EXEC_EXEC|EXEC_SUBST    ,exec_msg},
  1808.       {"multiply",      EXEC_STRING|EXEC_USECALC,calc_product},
  1809.       {"next",          EXEC_FOR,               exec_next},
  1810.       {"nocache",       EXEC_READ,              exec_nocache},
  1811.       {"non_empty",     EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_nonempty},
  1812.       {"nonempty",      EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_nonempty},
  1813.       {"nospace",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,nospace},
  1814.       {"outfile",       EXEC_HREF|EXEC_SUBST,   exec_getfile},
  1815.       {"pedia",         EXEC_PEDIA|EXEC_SUBST|EXEC_USECALC,pedia},
  1816.       {"perl",          EXEC_EXEC|EXEC_PROCTOO|EXEC_SUBST,exec_perl},
  1817.       {"position",      EXEC_STRING|EXEC_USECALC,calc_pos},
  1818.       {"positionof",    EXEC_STRING|EXEC_USECALC,calc_pos},
  1819.       {"positions",     EXEC_STRING|EXEC_USECALC,calc_pos},
  1820.       {"prod",          EXEC_STRING|EXEC_USECALC,calc_product},
  1821.       {"product",       EXEC_STRING|EXEC_USECALC,calc_product},
  1822.       {"rawmath",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,rawmath},
  1823.       {"rawmatrix",     EXEC_STRING|EXEC_SUBST|EXEC_USECALC,rawmatrix},
  1824.       {"reaccent",      EXEC_STRING|EXEC_USECALC|EXEC_SUBST,reaccent},
  1825.       {"read",          EXEC_READ|EXEC_SUBST,   exec_read},
  1826.       {"readdef",       EXEC_READ|EXEC_SUBST,   exec_defread},
  1827.       {"readproc",      EXEC_READ|EXEC_SUBST,   exec_readproc},
  1828.       {"record",        EXEC_STRING|EXEC_USECALC,calc_recordof},
  1829.       {"records",       EXEC_STRING|EXEC_USECALC,calc_recordof},
  1830.       {"recursion",     EXEC_STRING|EXEC_USECALC,calc_recursion},
  1831.       {"reinput",       EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_reinput},
  1832.       {"rem",           EXEC_COMMENT,           exec_comment},
  1833.       {"remark",        EXEC_COMMENT,           exec_comment},
  1834.       {"replace",       EXEC_STRING|EXEC_USECALC,calc_replace},
  1835.       {"reset",         EXEC_SET|EXEC_SUBST,    exec_reset},
  1836.       {"restart",       EXEC_JUMP|EXEC_SUBST,   exec_restart},
  1837.       {"return",        EXEC_JUMP,              exec_exit},
  1838.       {"robotrap",      EXEC_HREF|EXEC_SUBST,   exec_robottrap},
  1839.       {"robottrap",     EXEC_HREF|EXEC_SUBST,   exec_robottrap},
  1840.       {"rootof",        EXEC_STRING|EXEC_USECALC,calc_solve},
  1841.       {"row",           EXEC_STRING|EXEC_USECALC,calc_rowof},
  1842.       {"rows",          EXEC_STRING|EXEC_USECALC,calc_rowof},
  1843.       {"rows2lines",    EXEC_STRING|EXEC_USECALC|EXEC_SUBST,calc_rows2lines},
  1844.       {"run",           EXEC_EXEC|EXEC_SUBST|EXEC_PROCTOO|EXEC_USECALC, calc_exec},
  1845.       {"select",        EXEC_STRING|EXEC_USECALC,calc_select},
  1846.       {"set",           EXEC_SET,               exec_set},
  1847.       {"setdef",        EXEC_OTHER,             exec_setdef},
  1848.       {"sh",            EXEC_EXEC|EXEC_PROCTOO|EXEC_SUBST,exec_sh},
  1849.       {"shortout",      EXEC_JUMP|EXEC_SUBST,   exec_directout},
  1850.       {"singlespace",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,singlespace},
  1851.       {"solve",         EXEC_STRING|EXEC_USECALC,calc_solve},
  1852.       {"sort",          EXEC_STRING|EXEC_USECALC, calc_sort},
  1853. /*      {"sql",         EXEC_SQL|EXEC_SUBST|EXEC_USECALC, calc_sql}, */
  1854.       {"staticinstex",  EXEC_INS|EXEC_USECALC,  calc_instexst},
  1855.       {"stinstex",      EXEC_INS|EXEC_USECALC,  calc_instexst},
  1856.       {"sum",           EXEC_STRING|EXEC_USECALC,calc_sum},
  1857.       {"system",        EXEC_EXEC|EXEC_PROCTOO|EXEC_SUBST,exec_sh},
  1858.       {"tail",          EXEC_HREF,              exec_tail},
  1859.       {"test",          EXEC_DEBUG,             exec_test},
  1860.       {"texmath",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,texmath},
  1861.       {"text",          EXEC_STRING|EXEC_USECALC,text},
  1862.       {"title",         EXEC_HREF,              exec_title},
  1863.       {"tohex",         EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_hex},
  1864.       {"tolower",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_tolower},
  1865.       {"toupper",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_toupper},
  1866.       {"translate",     EXEC_STRING|EXEC_USECALC,calc_translate},
  1867.       {"trim",          EXEC_STRING|EXEC_USECALC,calc_trim},
  1868.       {"upper",         EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_toupper},
  1869.       {"uppercase",     EXEC_STRING|EXEC_SUBST|EXEC_USECALC,calc_toupper},
  1870.       {"usererror",     EXEC_WARN|EXEC_SUBST,   exec_usererror},
  1871.       {"values",        EXEC_STRING|EXEC_USECALC,calc_values},
  1872.       {"varlist",       EXEC_STRING|EXEC_SUBST|EXEC_USECALC,mathvarlist},
  1873.       {"warn",          EXEC_WARN|EXEC_SUBST,   exec_warn},
  1874.       {"warning",       EXEC_WARN|EXEC_SUBST,   exec_warn},
  1875.       {"while",         EXEC_WHILE,             exec_while},
  1876.       {"whileval",      EXEC_WHILE,             exec_whileval},
  1877.       {"whilevalue",    EXEC_WHILE,             exec_whileval},
  1878.       {"wimsheader",    EXEC_HREF,              exec_header},
  1879.       {"wimsref",       EXEC_HREF,              exec_homeref},
  1880.       {"wimstail",      EXEC_HREF,              exec_tail},
  1881.       {"wimstitle",     EXEC_HREF,              exec_title},
  1882.       {"word",          EXEC_STRING|EXEC_USECALC,calc_wordof},
  1883.       {"words",         EXEC_STRING|EXEC_USECALC,calc_wordof},
  1884.       {"words2items",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2items},
  1885.       {"words2lines",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2lines},
  1886.       {"words2list",    EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2items},
  1887.       {"wordstoitems",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2items},
  1888.       {"wordstolines",  EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2lines},
  1889.       {"wordstolist",   EXEC_STRING|EXEC_SUBST|EXEC_USECALC,words2items},
  1890.       {"writefile",     EXEC_DIR|EXEC_SUBST,    filewrite},
  1891. };
  1892. #define EXEC_FN_NO (sizeof(exec_routine)/sizeof(exec_routine[0]))
  1893.  
  1894.         /* internal: to skip the content of a false if/while. */
  1895. static void _skip_contents(int isif)
  1896. {
  1897.     char buf[MAX_NAMELEN+8], *p1;
  1898.     int i,j,loop;
  1899.     loop=0;
  1900.     while(m_file.linepointer<m_file.linecnt) {
  1901.         j=m_file.linepointer;
  1902.         if((m_file.lines[j].isstart&2)==0) {
  1903.             m_file.linepointer++; continue;
  1904.         }
  1905.         i=m_file.lines[j].execcode; if(i<0) {
  1906.             if(wgetline(buf,MAX_NAMELEN+4,&m_file)==EOF) return;
  1907.             p1=buf+1; if(*p1!='i' && *p1!='e' && *p1!='w') continue;
  1908.             *find_word_end(p1)=0;
  1909.             i=search_list(exec_routine,EXEC_FN_NO,sizeof(exec_routine[0]),p1);
  1910.             if(i>=0) m_file.lines[j].execcode=i;
  1911.         }
  1912.         else m_file.linepointer++;
  1913.         if(i<0) continue;
  1914.         switch(exec_routine[i].tag & 0xffff) {
  1915.             case EXEC_WHILE:
  1916.                 if(!isif) loop++; break;
  1917.             case EXEC_IF:
  1918.                 if(isif) loop++; break;
  1919.             case EXEC_ELSE: {
  1920.                 if(!isif) break;
  1921.                 if(loop<=0) return; else break;
  1922.             }
  1923.             case EXEC_ENDIF: {
  1924.                 if(!isif) break;
  1925.                 if(loop>0) {
  1926.                     loop--; break;
  1927.                 }
  1928.                 else return;
  1929.             }
  1930.             case EXEC_ENDWHILE: {
  1931.                 if(isif) break;
  1932.                 if(loop>0) {
  1933.                     loop--; break;
  1934.                 }
  1935.                 else return;
  1936.             }
  1937.             default: break;
  1938.         }
  1939.     }
  1940. }
  1941.  
  1942.         /* Execute a command defined by !. Returns 0 if OK. */
  1943. void exec_main(char *p)
  1944. {
  1945.     int i,j;
  1946.     char *pp;
  1947.     char tbuf2[MAX_LINELEN+1];
  1948.  
  1949.     pp=find_word_end(p);
  1950.     if(*pp!=0) {
  1951.         *(pp++)=0; pp=find_word_start(pp);
  1952.     }
  1953.     i=m_file.lines[m_file.l].execcode;
  1954.     if(i<0) {
  1955.         i=search_list(exec_routine,EXEC_FN_NO,sizeof(exec_routine[0]),p);
  1956.         m_file.lines[m_file.l].execcode=i;
  1957.     }
  1958.     if(i<0) {
  1959.         setvar(error_data_string,p); module_error("bad_cmd");
  1960.     }
  1961.         /* called from !readdef, no right other than set; bail out */
  1962.     execnt++;
  1963.     if((untrust&4)!=0 && (j=(exec_routine[i].tag&0xffff))!=EXEC_SET) {
  1964.         tbuf2[0]=0; exec_exit(tbuf2);
  1965.     }
  1966.     ovlstrcpy(tbuf2,pp); j=exec_routine[i].tag;
  1967.     if(j&EXEC_SUBST) substit(tbuf2);
  1968.     if(j&EXEC_USECALC) {
  1969.         if(!outputing && (j&EXEC_PROCTOO)==0) return;
  1970.         exec_routine[i].routine(tbuf2); if(outputing) output0(tbuf2);
  1971.     }
  1972.     else exec_routine[i].routine(tbuf2);
  1973.     return;
  1974. }
  1975.  
  1976.