Annotation of capa/capa51/GUITools/grader.init.c, revision 1.3

1.2       albertel    1: /* initialization routines for Grader
                      2:    Copyright (C) 1992-2000 Michigan State University
                      3: 
                      4:    The CAPA system is free software; you can redistribute it and/or
1.3     ! albertel    5:    modify it under the terms of the GNU General Public License as
1.2       albertel    6:    published by the Free Software Foundation; either version 2 of the
                      7:    License, or (at your option) any later version.
                      8: 
                      9:    The CAPA system is distributed in the hope that it will be useful,
                     10:    but WITHOUT ANY WARRANTY; without even the implied warranty of
                     11:    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1.3     ! albertel   12:    General Public License for more details.
1.2       albertel   13: 
1.3     ! albertel   14:    You should have received a copy of the GNU General Public
1.2       albertel   15:    License along with the CAPA system; see the file COPYING.  If not,
                     16:    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
                     17:    Boston, MA 02111-1307, USA.
                     18: 
                     19:    As a special exception, you have permission to link this program
                     20:    with the TtH/TtM library and distribute executables, as long as you
                     21:    follow the requirements of the GNU GPL in regard to all of the
                     22:    software in the executable aside from TtH/TtM.
                     23: */
                     24: 
1.1       albertel   25: /*
                     26:  * grader.init.c
1.2       albertel   27:  * Guy Albertelli II 1996
1.1       albertel   28:  */
                     29: #include <stdio.h>
                     30: #include <tk.h>
                     31: #include <stdlib.h>
                     32: #include <signal.h>
                     33: #include <unistd.h>
                     34: #include <grader.h>
                     35: #include <common.h>
                     36: 
                     37: Tcl_Interp *gInterp;
                     38: 
                     39: int Grader_Init(Tcl_Interp *interp)
                     40: {
                     41:   char buf[BUFFER_SIZE],*argv;
                     42: 
                     43:   gInterp=interp;
                     44:   Tcl_CreateCommand( interp, "getHeader", capaGetHeader, (ClientData)NULL, 
                     45: 		     (Tcl_CmdDeleteProc *)NULL); 
                     46:   Tcl_CreateCommand( interp, "getStudents", capaGetStudents, 
                     47: 		     (ClientData)NULL,(Tcl_CmdDeleteProc *)NULL); 
                     48:   Tcl_CreateCommand( interp, "dateUpdate", capaDateUpdate, (ClientData)NULL, 
                     49: 		     (Tcl_CmdDeleteProc *)NULL); 
                     50:   Tcl_CreateCommand( interp, "findSection", capaFindSection, 
                     51: 		     (ClientData)NULL,(Tcl_CmdDeleteProc *)NULL); 
                     52:   Tcl_CreateCommand( interp, "getReportInfo", capaGetReportInfo, 
                     53: 		     (ClientData)NULL,(Tcl_CmdDeleteProc *)NULL); 
                     54:   Tcl_CreateCommand( interp, "getSetSummary", capaGetSetSummary, 
                     55: 		     (ClientData)NULL,(Tcl_CmdDeleteProc *)NULL); 
                     56:   Tcl_CreateCommand( interp, "getTermSummary", capaGetTermSummary,
                     57: 		     (ClientData)NULL,(Tcl_CmdDeleteProc *)NULL); 
                     58:   Tcl_CreateCommand( interp, "enscriptParse", capaTclParse, (ClientData)NULL, 
                     59: 		     (Tcl_CmdDeleteProc *)NULL); 
                     60:   Tcl_CreateCommand( interp, "setupGAnswer", capaSetupGAnswer,
                     61: 		     (ClientData)NULL,(Tcl_CmdDeleteProc *)NULL);
                     62:   Tcl_CreateCommand( interp, "saveGAnswer", capaSaveGAnswer, 
                     63: 		     (ClientData)NULL,(Tcl_CmdDeleteProc *)NULL); 
                     64:   Tcl_CreateCommand( interp, "capaExcuse", capaExcuse, (ClientData)NULL, 
                     65: 		     (Tcl_CmdDeleteProc *)NULL); 
                     66:   Tcl_CreateCommand( interp, "createSummary", capaCreateSummary,
                     67: 		     (ClientData)NULL,(Tcl_CmdDeleteProc *)NULL); 
                     68:   Tcl_CreateCommand( interp, "getQuestionTypes", capaGetQuestionTypes,
                     69: 		     (ClientData)NULL,(Tcl_CmdDeleteProc *)NULL); 
                     70:   Tcl_CreateCommand( interp, "setHandGrade", capaSetHandGrade,
                     71: 		     (ClientData)NULL,(Tcl_CmdDeleteProc *)NULL); 
                     72:   Tcl_CreateCommand( interp, "setScore", capaSetScore, 
                     73: 		     (ClientData)NULL,(Tcl_CmdDeleteProc *)NULL); 
                     74: 
                     75:   sprintf(buf,"%s.%s",MAJORVER,GRADERMINORVER);
                     76:   Tcl_SetVar(interp,"gVer",buf,TCL_GLOBAL_ONLY);
                     77:   sprintf(buf,"Compiled on %s",COMPILE_DATE);
                     78:   Tcl_SetVar(interp,"gCompileDate",buf,TCL_GLOBAL_ONLY);
                     79: 
                     80:   argv=Tcl_GetVar(interp,"argv", TCL_GLOBAL_ONLY);
                     81:   if (argv!=NULL && strlen(argv) > 9 && 
                     82:       argv[0]=='-' && 
                     83:       argv[1]=='c' && 
                     84:       argv[2]=='o' && 
                     85:       argv[3]=='p' && 
                     86:       argv[4]=='y' && 
                     87:       argv[5]=='r' && 
                     88:       argv[6]=='i' && 
                     89:       argv[7]=='g' && 
                     90:       argv[8]=='h' && 
                     91:       argv[9]=='t' ) message();
                     92: 
                     93:   return TCL_OK;
                     94: }
                     95: 
                     96: int Grader_InitStandAlone(Tcl_Interp *interp)
                     97: {
                     98:   return Grader_Init(interp);
                     99: }
                    100: 
                    101: int Grader_SafeInit(Tcl_Interp *interp)
                    102: {
                    103:   return Grader_Init(interp);
                    104: }
                    105: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>