Subversion Repositories wimsdev

Rev

Rev 7515 | Rev 8185 | 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. /* html form simplification routines */
  19.  
  20. #define MAX_MENU_ITEMS 256
  21.  
  22. enum {
  23.     FORM_SELECT, FORM_RADIO, FORM_BAR, FORM_CHECKBOX
  24. };
  25.  
  26. /* Produces <select> and <option>s.
  27.  * Parameter string: name from n1 to n2 [prompt plist]
  28.  * or name, list slist [prompt plist]
  29.  * Using script to do this is too slow. */
  30. void _form_menus(char *p,int kind)
  31. {
  32.     char *n, *li, *pp, *val, *p0, *p1, *p2, *pc, *s, *pfre="";
  33.     char *vlist[MAX_MENU_ITEMS], *plist[MAX_MENU_ITEMS];
  34.     char nbuf[MAX_LINELEN+1],vbuf[MAX_LINELEN+1],pbuf[MAX_LINELEN+1];
  35.     char buf[256], pfrb[256];
  36.     int i,i1=0,i2,itemcnt,type;
  37.     if(!outputing) return;
  38.     n=find_word_start(p); if(*n==0) return;
  39.     pp=find_word_end(n);
  40.     if(*pp!=0) *(pp++)=0;
  41.     else {
  42.       syntax: module_error("syntax_error"); return;
  43.     }
  44.     li=find_word_start(pp); pp=find_word_end(li);
  45.     if(*pp!=0) *(pp++)=0; else goto syntax;
  46.     itemcnt=0;
  47.     if(strcmp(li,"from")==0) {
  48.       p1=find_word_start(pp);
  49.       p2=wordchr(p1,"to"); if(p2==NULL || p2<=p1) goto syntax;
  50.       *(p2-1)=0; p2=find_word_start(p2+strlen("to"));
  51.       pp=wordchr(p2,"prompt"); if(pp!=NULL) *(pp-1)=0;
  52.       i1=evalue(p1); i2=evalue(p2);
  53.       if(i1<-100000000 || i1>100000000 || i2<-100000000 || i2>100000000)
  54.         goto syntax;
  55.       if(i2<i1) return;
  56.       if(i2>i1+MAX_MENU_ITEMS-1) i2=i1+MAX_MENU_ITEMS-1;
  57.       itemcnt=i2-i1+1;
  58.       type=0;
  59.     }
  60.     else {
  61.       if(strcmp(li,"list")==0) {
  62.          p1=find_word_start(pp);
  63.          pp=wordchr(p1,"prompt"); if(pp!=NULL && pp>p1) *(pp-1)=0;
  64.          ovlstrcpy(vbuf,p1);substit(vbuf);
  65.          itemcnt=cutitems(vbuf,vlist,MAX_MENU_ITEMS);
  66.          type=1;
  67.       }
  68.       else goto syntax;
  69.     }
  70.     for(i=0;i<itemcnt;i++) plist[i]=NULL;
  71.     if(pp!=NULL) {
  72.       p1=find_word_start(pp+strlen("prompt"));
  73.       ovlstrcpy(pbuf,p1);substit(pbuf);
  74.       cutitems(pbuf,plist,MAX_MENU_ITEMS);
  75.     }
  76.     ovlstrcpy(nbuf,n);substit(nbuf);
  77.     if(kind==FORM_SELECT) {
  78.       char *pp;
  79.       pp=getvar("wims_formselect_switch"); if(pp==NULL) pp="";
  80.       output("<select %s name=\"%s\" id=\"%s\">\n",pp,nbuf,nbuf);
  81.     }
  82.     if(kind==FORM_BAR) {
  83.       s=getvar("wims_ref_class");
  84.       if(s!=NULL && *s!=0 && !isspace(*s)) {
  85.        snprintf(pfrb,sizeof(pfrb)," <span class=\"%s\">",s); pfre="</span>";
  86.       } else { pfrb[0]=0; pfre=""; }
  87.       output("%s<span style=\"font-weight:bold;\">-</span>",pfrb);
  88.     }
  89.     val=getvar(nbuf);if(val==NULL) val="";
  90.     for(i=0;i<itemcnt;i++) {
  91.       if(type==0) {
  92.          snprintf(buf,sizeof(buf),"%d",i+i1);
  93.          p0=buf;
  94.       }
  95.       else p0=vlist[i];
  96.       if(*find_word_start(p0)==0) continue;
  97.       if(plist[i]==NULL) plist[i]=p0;
  98.       if(*val!=0 &&
  99.         (strcmp(p0,val)==0 ||
  100.          ( (kind==FORM_SELECT || kind==FORM_CHECKBOX)
  101.           && itemchr(val,p0)!=NULL))) {
  102.          if(kind==FORM_SELECT) pc=" selected=\"selected\"";
  103.          else pc=" checked=\"checked\"";
  104.       }
  105.       else pc="";
  106.       s=getvar("wims_ref_class");
  107.      if(s!=NULL && *s!=0 && !isspace(*s)) {
  108.        snprintf(pfrb,sizeof(pfrb)," <span class=\"%s\">",s); pfre="</span>";
  109.      }
  110.      else { pfrb[0]=0; pfre=""; }
  111.       switch(kind) {
  112.          case FORM_SELECT:
  113.          output("<option value=\"%s\"%s>%s</option>\n",p0,pc,plist[i]);
  114.          break;
  115.  
  116.          case FORM_RADIO:
  117.          output("%s<input type=\"radio\" name=\"%s\" id=\"%s%d\" value=\"%s\"%s/><label for=\"%s%d\">%s</label>%s",
  118.              pfrb,nbuf,nbuf,i,p0,pc,nbuf,i,plist[i],pfre);
  119.          if(i<itemcnt-1 && itemcnt>2) _output_(",");
  120.          _output_("\n");
  121.          break;
  122.  
  123.          case FORM_CHECKBOX:
  124.          output("%s<input type=\"checkbox\" name=\"%s\" id=\"%s%d\" value=\"%s\"%s/><label for=\"%s%d\">%s</label>%s",
  125.              pfrb,nbuf,nbuf,i,p0,pc,nbuf,i,plist[i],pfre);
  126.          if(i<itemcnt-1 && itemcnt>2) _output_(",");
  127.          _output_("\n");
  128.          break;
  129.  
  130.          case FORM_BAR:
  131.          output("<input type=\"radio\" name=\"%s\" id=\"%s%d\" value=\"%s\"%s/>",
  132.              nbuf,nbuf,i,p0,pc);
  133.          break;
  134.  
  135.       }
  136.     }
  137.     setvar("wims_formradio_class","");
  138.     if(kind==FORM_SELECT) _output_("</select>");
  139.     if(kind==FORM_BAR) output("<span style=\"font-weight:bold;\">+</span>%s",pfre);
  140. }
  141.  
  142. void exec_formselect(char *p)
  143. {
  144.     _form_menus(p,FORM_SELECT);
  145. }
  146.  
  147. void exec_formradio(char *p)
  148. {
  149.     _form_menus(p,FORM_RADIO);
  150. }
  151.  
  152. void exec_formcheckbox(char *p)
  153. {
  154.     _form_menus(p,FORM_CHECKBOX);
  155. }
  156.  
  157. void exec_formbar(char *p)
  158. {
  159.     _form_menus(p,FORM_BAR);
  160. }
  161.  
  162.