/ec/ECSpooler/backends/cl/ |
H A D | config.py | 8 from os.path import join, dirname, abspath namespace 10 #INTERPRETER = join(abspath(dirname(__file__)), 'sbcl+systrace') 11 INTERPRETER = join(abspath(dirname(__file__)), 'sbcl.sh')
|
/ec/ECSpooler/backends/haskell/ |
H A D | config.py | 8 from os.path import join, dirname, abspath namespace 10 #INTERPRETER = join(abspath(dirname(__file__)), 'runhugs+systrace') 11 INTERPRETER = join(abspath(dirname(__file__)), 'runhugs.sh')
|
/ec/ECSpooler/backends/haskellext/ |
H A D | config.py | 7 from os.path import join, dirname, abspath namespace 9 #INTERPRETER = join(abspath(dirname(__file__)), 'runhugs+systrace') 10 INTERPRETER = join(abspath(dirname(__file__)), 'runhugs.sh')
|
/ec/ECSpooler/backends/haskellio/ |
H A D | config.py | 8 from os.path import join, dirname, abspath namespace 10 INTERPRETER = join(abspath(dirname(__file__)), 'runhugs.sh') 11 #INTERPRETER = join(abspath(dirname(__file__)), 'runhugs+systrace')
|
/ec/ECSpooler/backends/haskellqc/ |
H A D | config.py | 20 from os.path import join, dirname, abspath namespace 22 INTERPRETER = join(abspath(dirname(__file__)), 'runhugs.sh') 23 #INTERPRETER = join(abspath(dirname(__file__)), 'runhugs+systrace')
|
/ec/ECSpooler/backends/python/ |
H A D | config.py | 7 from os.path import join, dirname, abspath namespace 9 #INTERPRETER = join(abspath(dirname(__file__)), 'python+systrace') 10 INTERPRETER = join(abspath(dirname(__file__)), 'python.sh')
|
/ec/ECSpooler/backends/pyunit/ |
H A D | config.py | 8 from os.path import join, dirname, abspath namespace 10 #INTERPRETER = join(abspath(dirname(__file__)), 'python+systrace') 11 INTERPRETER = join(abspath(dirname(__file__)), 'python.sh')
|
/ec/ECSpooler/backends/sql/ |
H A D | config.py | 7 from os.path import join, dirname, abspath namespace 9 INTERPRETER = join(abspath(dirname(__file__)), 'sql.sh')
|
H A D | SQL.py | 12 #from os.path import join, dirname 175 execDir = os.path.join(tempfile.gettempdir(), job.getId()) 178 dbcqFile = os.path.join(execDir, 'DatabaseCreationQueries.txt') 181 tsFile = os.path.join(execDir, 'TeacherSubmission.txt') 184 ssFile = os.path.join(execDir, 'StudentSubmission.txt') 187 apFile = os.path.join(execDir, 'AdditionalProperties.txt')
|
/ec/ECSpooler/backends/erlang/ |
H A D | config.py | 7 from os.path import join, dirname, abspath namespace 9 #COMPILER = join(abspath(dirname(__file__)), 'erlc') 10 COMPILER = join(abspath(dirname(__file__)), 'erlc.sh') 12 #INTERPRETER = join(abspath(dirname(__file__)), 'erl+systrace') 13 INTERPRETER = join(abspath(dirname(__file__)), 'erl.sh')
|
/ec/ECSpooler/backends/java/ |
H A D | config.py | 7 from os.path import join, dirname, abspath namespace 9 #COMPILER = join(abspath(dirname(__file__)), 'javac') 10 COMPILER = join(abspath(dirname(__file__)), 'javac.sh') 12 #INTERPRETER = join(abspath(dirname(__file__)), 'java+systrace') 13 INTERPRETER = join(abspath(dirname(__file__)), 'java.sh')
|
/ec/ECSpooler/backends/javare/ |
H A D | config.py | 7 from os.path import join, dirname, abspath namespace 9 #COMPILER = join(abspath(dirname(__file__)), 'javac') 10 COMPILER = join(abspath(dirname(__file__)), 'javac.sh') 12 #INTERPRETER = join(abspath(dirname(__file__)), 'java+systrace') 13 INTERPRETER = join(abspath(dirname(__file__)), 'java.sh')
|
/ec/ECSpooler/backends/scheme/ |
H A D | config.py | 8 from os.path import join, dirname, abspath namespace 11 #INTERPRETER = join(abspath(dirname(__file__)), 'mzscheme+systrace') 12 INTERPRETER = join(abspath(dirname(__file__)), 'mzscheme.sh') 16 STREAM_LIB_PATH = join(abspath(dirname(__file__)), 'scheme_libs', STREAM_LIB)
|
/ec/ECSpooler/backends/xml/ |
H A D | config.py | 8 from os.path import join, dirname, abspath namespace 11 XMLLINT = join(abspath(dirname(__file__)), 'xmllint.sh') 14 SAXON = join(abspath(dirname(__file__)), 'saxon.sh'
|
/ec/ECSpooler/backends/prolog/ |
H A D | config.py | 7 from os.path import join, dirname, abspath namespace 9 INTERPRETER = join(abspath(dirname(__file__)), 'pl+systrace') 10 #INTERPRETER = join(abspath(dirname(__file__)), 'pl.sh')
|
/ec/ECSpooler/ |
H A D | config.py | 21 DATA_DIR = os.path.join(os.path.dirname(__file__), 'var') 23 JOB_QUEUE_STORAGE = os.path.join(DATA_DIR, 'data.fs') 24 RESULT_QUEUE_STORAGE = os.path.join(DATA_DIR, 'result.fs') 25 RETRY_QUEUE_STORAGE = os.path.join(DATA_DIR, 'retry.fs') 27 ETC_DIR = os.path.join(os.path.dirname(__file__), 'etc') 28 PASSWD_FILE = os.path.join( ETC_DIR, 'passwd') 32 LOG_DIR = os.path.join(os.path.dirname(__file__), 'logs')
|
/ec/ECSpooler/backends/junit/ |
H A D | config.py | 35 from os.path import join, dirname, abspath namespace 44 #compiler = join(abspath(dirname(__file__)), 'javac') 45 compiler = join(abspath(dirname(__file__)), 'javac.sh') 46 #interpreter = join(abspath(dirname(__file__)), 'java+systrace') 47 interpreter = join(abspath(dirname(__file__)), 'java.sh') 53 compiler = join(abspath(dirname(__file__)), comp) 57 interpreter = join(abspath(dirname(__file__)), intp) 77 LIBRARY_PATH = join(CURRENT_PATH, JUNIT_LIBS) 97 paths += CLASSPATH_SEPARATOR + join(LIBRARY_PATH, lib)
|
/ec/ECAssignmentBox/Products/ECAssignmentBox/PlagDetector/Normalize/ |
H A D | normNormal.py | 54 return ' '.join(list) #return string
|
/ec/ECSpooler/lib/ |
H A D | SecureXMLRPCServer.py | 15 __CERT_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), '..', 'certs') 17 KEYFILE = os.path.join(__CERT_PATH, 'key.pem') 18 CERTFILE = os.path.join(__CERT_PATH, 'cert.pem')
|
/ec/ECAssignmentBox/ |
H A D | setup.py | 12 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
/ec/ECAutoAssessmentBox/ |
H A D | setup.py | 9 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
/ec/ECLecture/ |
H A D | setup.py | 10 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
/ec/ECQuiz/ |
H A D | setup.py | 9 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
/ec/ECSpooler/tests/ |
H A D | runalltests | 19 sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)), os.pardir)) 25 os.chdir(os.path.join(os.path.abspath(os.path.dirname(__file__))))
|
H A D | runtests | 19 sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)), os.pardir)) 24 os.chdir(os.path.join(os.path.abspath(os.path.dirname(__file__))))
|