mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-09 17:18:42 +00:00
This commit is contained in:
parent
3ce886327f
commit
6ad6eb2048
@ -452,12 +452,14 @@ int compile(const compile_config &conf) {
|
|||||||
|
|
||||||
std::string lang = upgraded_lang(conf.lang);
|
std::string lang = upgraded_lang(conf.lang);
|
||||||
|
|
||||||
if (lang == "C++" || lang == "C++03") {
|
if (lang == "C++" || lang == "C++14") {
|
||||||
|
return compile_cpp(conf, "c++14");
|
||||||
|
} else if (lang == "C++98") {
|
||||||
|
return compile_cpp(conf, "c++98");
|
||||||
|
} else if (lang == "C++03") {
|
||||||
return compile_cpp(conf, "c++03");
|
return compile_cpp(conf, "c++03");
|
||||||
} else if (lang == "C++11") {
|
} else if (lang == "C++11") {
|
||||||
return compile_cpp(conf, "c++11");
|
return compile_cpp(conf, "c++11");
|
||||||
} else if (lang == "C++14") {
|
|
||||||
return compile_cpp(conf, "c++14");
|
|
||||||
} else if (lang == "C++17") {
|
} else if (lang == "C++17") {
|
||||||
return compile_cpp(conf, "c++17");
|
return compile_cpp(conf, "c++17");
|
||||||
} else if (lang == "C++20") {
|
} else if (lang == "C++20") {
|
||||||
|
@ -512,10 +512,13 @@ function echoSubmissionContent($submission, $requirement) {
|
|||||||
case 'C++':
|
case 'C++':
|
||||||
case 'C++11':
|
case 'C++11':
|
||||||
case 'C++17':
|
case 'C++17':
|
||||||
|
case 'C++20':
|
||||||
case 'C++98':
|
case 'C++98':
|
||||||
|
case 'C++03':
|
||||||
$sh_class = 'sh_cpp';
|
$sh_class = 'sh_cpp';
|
||||||
break;
|
break;
|
||||||
case 'Python2':
|
case 'Python2':
|
||||||
|
case 'Python2.7':
|
||||||
case 'Python3':
|
case 'Python3':
|
||||||
$sh_class = 'sh_python';
|
$sh_class = 'sh_python';
|
||||||
break;
|
break;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
global $uojSupportedLanguages, $uojMainJudgerWorkPath;
|
global $uojSupportedLanguages, $uojMainJudgerWorkPath;
|
||||||
$uojSupportedLanguages = array('C', 'C++', 'C++11', 'C++17', 'C++98', 'Pascal', 'Python2', 'Python3');
|
$uojSupportedLanguages = array('C', 'C++', 'C++98', 'C++03', 'C++11', 'C++17', 'C++20', 'Pascal', 'Python2.7', 'Python3');
|
||||||
$uojMainJudgerWorkPath = "/opt/uoj/judger/uoj_judger";
|
$uojMainJudgerWorkPath = "/opt/uoj/judger/uoj_judger";
|
||||||
|
|
||||||
function authenticateJudger() {
|
function authenticateJudger() {
|
||||||
|
@ -606,11 +606,14 @@ function get_codemirror_mode(lang) {
|
|||||||
case 'C++':
|
case 'C++':
|
||||||
case 'C++11':
|
case 'C++11':
|
||||||
case 'C++17':
|
case 'C++17':
|
||||||
|
case 'C++20':
|
||||||
case 'C++98':
|
case 'C++98':
|
||||||
|
case 'C++03':
|
||||||
return 'text/x-c++src';
|
return 'text/x-c++src';
|
||||||
case 'C':
|
case 'C':
|
||||||
return 'text/x-csrc';
|
return 'text/x-csrc';
|
||||||
case 'Python2':
|
case 'Python2':
|
||||||
|
case 'Python2.7':
|
||||||
case 'Python3':
|
case 'Python3':
|
||||||
return 'text/x-python';
|
return 'text/x-python';
|
||||||
case 'Pascal':
|
case 'Pascal':
|
||||||
|
Loading…
Reference in New Issue
Block a user