Annotation of capa/capa51/CapaTools/tscore.cgi, revision 1.2

1.1       albertel    1: #!/usr/local/bin/perl
1.2     ! albertel    2: #  Copyright (C) 1992-2000 Michigan State University
        !             3: #
        !             4: #  The CAPA system is free software; you can redistribute it and/or
        !             5: #  modify it under the terms of the GNU Library General Public License as
        !             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
        !            12: #  Library General Public License for more details.
        !            13: #
        !            14: #  You should have received a copy of the GNU Library General Public
        !            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: 
1.1       albertel   24: require "./cgi-lib.pl";
                     25: ## TO DO: file with zero length
                     26: ##
                     27: $cgi_lib'maxdata = 512000; 
                     28: $cgi_lib'writefiles = "/tmp";
                     29: 
                     30: 
                     31: ## This cgi is called through a form like 
                     32: ## <FORM METHOD="POST"
                     33:          ACTION="http://capa2.nscl.msu.edu/capa-bin/tscore.cgi">
                     34:         <NAME="CAPAID"> <NAME="CAPAID">
                     35: 
                     36: 
                     37: 
                     38: $ret = &ReadParse;
                     39: &CgiDie("Error in reading and parsing of CGI input") if !defined $ret;
                     40: &CgiDie("No data uploaded",	"Please enter it in <a href='fup.html'>fup.html</a>.") if !$ret;
                     41: 
                     42: $in{'paperfile'} =~ s/</&lt;/g;
                     43: $in{'paperfile'} =~ s/>/&gt;/g;
                     44: 
                     45: 
                     46: 
                     47: 
                     48: 
                     49: 
                     50: # Now produce the result: an HTML page...
                     51: 
                     52: 
                     53: print &PrintHeader;
                     54: print &HtmlTop("Term Score");
                     55: 
                     56: 
                     57: 
                     58: 
                     59: 
                     60: 
                     61: 
                     62: 
                     63: 
                     64: print <<EOT;
                     65: 
                     66: 
                     67: 
                     68: 
                     69: EOT
                     70: print &HtmlBot;
                     71: 

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