[BACK]Return to cgi-polymake.sh CVS log [TXT][DIR] Up to [local] / OpenXM / src / polymake / cgi

Diff for /OpenXM/src/polymake/cgi/cgi-polymake.sh between version 1.1 and 1.4

version 1.1, 2004/09/27 01:20:46 version 1.4, 2013/09/22 02:28:42
Line 1 
Line 1 
 #!/bin/bash  #!/bin/bash
 # $OpenXM$  # $OpenXM: OpenXM/src/polymake/cgi/cgi-polymake.sh,v 1.3 2004/11/23 04:34:31 takayama Exp $
   PATH=/usr/local/polymake/bin:$PATH
   export TMP=/tmp
   # Set OpenXM_HOME with your absolute path
   # Ex. OpenXM_HOME=/home/taka/OpenXM
 source $(OpenXM_HOME)/rc/dot.bashrc  source $(OpenXM_HOME)/rc/dot.bashrc
 sm1 -q -s "[(parse) (oxs.sm1) pushfile] extension oxNoX [(parse) (cgi.sm1) pushfile] extension cgiPolymake quit "  
   
   WFILE=/tmp/tmp-post-$$.txt
   oxdecode_post >${WFILE}
   env CONTENT_LENGTH=`wc -m ${WFILE} | awk '{print $1}'` sm1 -q -s "[(parse) (cgi.sm1) pushfile] extension cgiPolymake quit " <${WFILE}
   rm -f ${WFILE}
   exit 0
   : rm -f ${WFILE}

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.4

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