修改逻辑

This commit is contained in:
2024-11-23 17:27:26 +08:00
parent 0c6f7521fc
commit 166945c1e7
2 changed files with 210 additions and 202 deletions

View File

@@ -1,13 +1,14 @@
<?php <?php
require_once("../include/db_info.inc.php"); require_once("../include/db_info.inc.php");
require_once("admin-header.php"); require_once("admin-header.php");
if (!(isset($_SESSION[$OJ_NAME.'_'.'administrator']) || isset($_SESSION[$OJ_NAME.'_'.'contest_creator']) || isset($_SESSION[$OJ_NAME.'_'.'problem_editor']))) { if (!(isset($_SESSION[$OJ_NAME . '_' . 'administrator']) || isset($_SESSION[$OJ_NAME . '_' . 'contest_creator']) || isset($_SESSION[$OJ_NAME . '_' . 'problem_editor']))) {
echo "<a href='../loginpage.php'>Please Login First!</a>"; echo "<a href='../loginpage.php'>Please Login First!</a>";
exit(1); exit(1);
} }
?> ?>
<html> <html>
<head> <head>
<meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache"> <meta http-equiv="Cache-Control" content="no-cache">
@@ -15,15 +16,16 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Problem Add</title> <title>Problem Add</title>
</head> </head>
<pre?php <pre?php echo "<center><h3>" .$MSG_PROBLEM."-".$MSG_ADD."</h3>
echo "<center><h3>".$MSG_PROBLEM."-".$MSG_ADD."</h3></center>"; </center>";
include_once("kindeditor.php") ; include_once("kindeditor.php") ;
$source=pdo_query("select source from problem order by problem_id desc limit 1"); //默认续用最后一次的分类标签 $source=pdo_query("select source from problem order by problem_id desc limit 1"); //默认续用最后一次的分类标签
if(!empty($source)&&isset($source[0]))$source=$source[0][0];else $source=""; if(!empty($source)&&isset($source[0]))$source=$source[0][0];else $source="";
?> ?>
<hr> <hr>
<body leftmargin="30" >
<body leftmargin="30">
<div id="main" class="container"> <div id="main" class="container">
<form method=POST action=problem_add.php> <form method=POST action=problem_add.php>
<input type=hidden name=problem_id value="New Problem"> <input type=hidden name=problem_id value="New Problem">
@@ -32,110 +34,114 @@
<input type="checkbox" id="preview-toggle"> <input type="checkbox" id="preview-toggle">
<label for="preview-toggle">题目预览</label> <label for="preview-toggle">题目预览</label>
</div> </div>
<?php echo "<h3>".$MSG_TITLE."</h3>"?> <?php echo "<h3>" . $MSG_TITLE . "</h3>" ?>
<input class="input input-large" style="width:100%;" type=text name='title' > <input type=submit value='<?php echo $MSG_SAVE?>' name=submit> <input class="input input-large" style="width:100%;" type=text name='title'> <input type=submit
value='<?php echo $MSG_SAVE ?>' name=submit>
</p> </p>
<p align=left> <p align=left>
<?php echo $MSG_Time_Limit?> <?php echo $MSG_Time_Limit ?>
<input class="input input-mini" type=number min="0.001" max="300" step="0.001" name=time_limit size=20 value=1> sec <input class="input input-mini" type=number min="0.001" max="300" step="0.001" name=time_limit size=20
<?php echo $MSG_Memory_Limit?> value=1> sec
<input class="input input-mini" type=number min="1" max="2048" step="1" name=memory_limit size=20 value=128> MiB<br><br> <?php echo $MSG_Memory_Limit ?>
<input class="input input-mini" type=number min="1" max="2048" step="1" name=memory_limit size=20 value=128>
MiB<br><br>
</p> </p>
<p align=left> < align=left>
<?php echo "<h4>".$MSG_Description."(<64kB)</h4>"?> <?php echo "<h4>" . $MSG_Description . "(<64kB)</h4>" ?>
<textarea class="kindeditor" rows=13 name=description cols=80><span class='md auto_select'><pre> <textarea class="kindeditor" rows=13 name=description cols=80><span class='md auto_select'>
<br><br> <br><br>
</pre></span></textarea><br> </span></textarea><br>
</p> </p>
<p align=left> <p align=left>
<?php echo "<h4>".$MSG_Input."(<64kB)</h4>"?> <?php echo "<h4>" . $MSG_Input . "(<64kB)</h4>" ?>
<textarea class="kindeditor" rows=13 name=input cols=80><span class='md'> <textarea class="kindeditor" rows=13 name=input cols=80><span class='md'>
</span></textarea><br></textarea><br> </span></textarea><br></textarea><br>
</p> </p>
<p align=left> <p align=left>
<?php echo "<h4>".$MSG_Output."(<64kB)</h4>"?> <?php echo "<h4>" . $MSG_Output . "(<64kB)</h4>" ?>
<textarea class="kindeditor" rows=13 name=output cols=80><span class='md'> <textarea class="kindeditor" rows=13 name=output cols=80><span class='md'>
</span></textarea><br></textarea><br> </span></textarea><br></textarea><br>
</p> </p>
<p align=left> <p align=left>
<?php echo "<h4>".$MSG_Sample_Input."(<64kB)</h4>"?> <?php echo "<h4>" . $MSG_Sample_Input . "(<64kB)</h4>" ?>
<textarea class="input input-large" style="width:100%;" rows=13 name=sample_input></textarea><br><br> <textarea class="input input-large" style="width:100%;" rows=13 name=sample_input></textarea><br><br>
</p> </p>
<p align=left> <p align=left>
<?php echo "<h4>".$MSG_Sample_Output."(<64kB)</h4>"?> <?php echo "<h4>" . $MSG_Sample_Output . "(<64kB)</h4>" ?>
<textarea class="input input-large" style="width:100%;" rows=13 name=sample_output></textarea><br><br> <textarea class="input input-large" style="width:100%;" rows=13 name=sample_output></textarea><br><br>
</p> </p>
<p align=left> <p align=left>
<?php echo "<h4>".$MSG_Test_Input."</h4>"?> <?php echo "<h4>" . $MSG_Test_Input . "</h4>" ?>
<?php echo "(".$MSG_HELP_MORE_TESTDATA_LATER.")"?><br> <?php echo "(" . $MSG_HELP_MORE_TESTDATA_LATER . ")" ?><br>
<textarea class="input input-large" style="width:100%;" rows=13 name=test_input></textarea><br><br> <textarea class="input input-large" style="width:100%;" rows=13 name=test_input></textarea><br><br>
</p> </p>
<p align=left> <p align=left>
<?php echo "<h4>".$MSG_Test_Output."</h4>"?> <?php echo "<h4>" . $MSG_Test_Output . "</h4>" ?>
<?php echo "(".$MSG_HELP_MORE_TESTDATA_LATER.")"?><br> <?php echo "(" . $MSG_HELP_MORE_TESTDATA_LATER . ")" ?><br>
<textarea class="input input-large" style="width:100%;" rows=13 name=test_output></textarea><br><br> <textarea class="input input-large" style="width:100%;" rows=13 name=test_output></textarea><br><br>
</p> </p>
<p align=left> <p align=left>
<?php echo "<h4>".$MSG_HINT."(<64kB)</h4>"?> <?php echo "<h4>" . $MSG_HINT . "(<64kB)</h4>" ?>
<textarea class="kindeditor" rows=13 name=hint cols=80><span class='md'> <textarea class="kindeditor" rows=13 name=hint cols=80><span class='md'>
</span></textarea><br></textarea><br> </span></textarea><br></textarea><br>
</p> </p>
<p> <p>
<?php echo "<h4>".$MSG_SPJ."</h4>"?> <?php echo "<h4>" . $MSG_SPJ . "</h4>" ?>
<input type=radio name=spj value='0' checked ><?php echo $MSG_NJ?> 更多测试数据,在题目添加后补充。<br> <input type=radio name=spj value='0' checked><?php echo $MSG_NJ ?> 更多测试数据,在题目添加后补充。<br>
<input type=radio name=spj value='1' ><?php echo $MSG_SPJ?> <?php echo "(".$MSG_HELP_SPJ.")"?><br> <input type=radio name=spj value='1'><?php echo $MSG_SPJ ?> <?php echo "(" . $MSG_HELP_SPJ . ")" ?><br>
<input type=radio name=spj value='2' ><?php echo $MSG_RTJ?>(用于选择判断填空题,用法见<a target='_blank' href='http://hustoj.com'>hustoj.com</a>)<br> <input type=radio name=spj value='2'><?php echo $MSG_RTJ ?>(用于选择判断填空题,用法见<a target='_blank'
href='http://hustoj.com'>hustoj.com</a>)<br>
</p> </p>
<p align=left> <p align=left>
<?php echo "<h4>".$MSG_SOURCE." 用空格分隔"."</h4>"?> <?php echo "<h4>" . $MSG_SOURCE . " 用空格分隔" . "</h4>" ?>
<textarea name=source style="width:100%;" rows=1><?php echo htmlentities($source,ENT_QUOTES,'UTF-8') ?></textarea><br><br> <textarea name=source style="width:100%;"
rows=1><?php echo htmlentities($source, ENT_QUOTES, 'UTF-8') ?></textarea><br><br>
</p> </p>
<p align=left><?php echo "<h4>".$MSG_CONTEST."</h4>"?> <p align=left><?php echo "<h4>" . $MSG_CONTEST . "</h4>" ?>
<select name=contest_id> <select name=contest_id>
<?php <?php
$sql="SELECT `contest_id`,`title` FROM `contest` WHERE `start_time`>NOW() order by `contest_id`"; $sql = "SELECT `contest_id`,`title` FROM `contest` WHERE `start_time`>NOW() order by `contest_id`";
$result=pdo_query($sql); $result = pdo_query($sql);
echo "<option value=''>none</option>"; echo "<option value=''>none</option>";
if (count($result)==0) { if (count($result) == 0) {
} } else {
else {
foreach ($result as $row) { foreach ($result as $row) {
echo "<option value='{$row['contest_id']}'>{$row['contest_id']} {$row['title']}</option>"; echo "<option value='{$row['contest_id']}'>{$row['contest_id']} {$row['title']}</option>";
} }
}?> } ?>
</select> </select>
</p> </p>
<div align=center> <div align=center>
<?php require_once("../include/set_post_key.php");?> <?php require_once("../include/set_post_key.php"); ?>
<input type=submit value='<?php echo $MSG_SAVE?>' name=submit> <input type=submit value='<?php echo $MSG_SAVE ?>' name=submit>
</div> </div>
</form> </form>
</div> </div>
<script src="<?php echo $OJ_CDN_URL."/template/bs3/"?>marked.min.js"></script> <script src="<?php echo $OJ_CDN_URL . "/template/bs3/" ?>marked.min.js"></script>
<script> <script>
function transform(){ function transform() {
let height=document.body.clientHeight; let height = document.body.clientHeight;
let width=parseInt(document.body.clientWidth*0.6); let width = parseInt(document.body.clientWidth * 0.6);
let width2=parseInt(document.body.clientWidth*0.4); let width2 = parseInt(document.body.clientWidth * 0.4);
if(width<500) width2=300; if (width < 500) width2 = 300;
let submitURL="../problem.php?id=1000"; let submitURL = "../problem.php?id=1000";
console.log(width); console.log(width);
let main=$("#main"); let main = $("#main");
let problem=main.html(); let problem = main.html();
main.removeClass("container"); main.removeClass("container");
main.css("width",width2); main.css("width", width2);
main.css("margin-left","10px"); main.css("margin-left", "10px");
main.parent().append("<div id='preview' class='container' style='opacity:0.95;position:fixed;z-index:1000;top:49px;right:-"+width2+"px'></div>"); main.parent().append("<div id='preview' class='container' style='opacity:0.95;position:fixed;z-index:1000;top:49px;right:-" + width2 + "px'></div>");
$("#preview").html("<iframe id='previewFrame' src='"+submitURL+"&spa' width='"+width+"px' height='"+height+"px' ></iframe>"); $("#preview").html("<iframe id='previewFrame' src='" + submitURL + "&spa' width='" + width + "px' height='" + height + "px' ></iframe>");
$("#submit").remove(); $("#submit").remove();
setTimeout('hide()',1500); setTimeout('hide()', 1500);
$("input").keyup(sync); $("input").keyup(sync);
$("textarea").keyup(sync); $("textarea").keyup(sync);
} }
function hide(){ function hide() {
let preview=$("#previewFrame").contents(); let preview = $("#previewFrame").contents();
preview.find(".ui.buttons").hide(); preview.find(".ui.buttons").hide();
preview.find("span.ui.label").eq(2).hide(); preview.find("span.ui.label").eq(2).hide();
preview.find("span.ui.label").eq(3).hide(); preview.find("span.ui.label").eq(3).hide();
@@ -143,54 +149,55 @@
preview.find("span.ui.label").eq(5).hide(); preview.find("span.ui.label").eq(5).hide();
preview.find("#show_tag_div").parent().hide(); preview.find("#show_tag_div").parent().hide();
sync(); sync();
// preview.find("h1:first").parent().parent().hide(); // preview.find("h1:first").parent().parent().hide();
} }
function sync(){ function sync() {
console.log("sync..."); console.log("sync...");
let preview=$("#previewFrame").contents(); let preview = $("#previewFrame").contents();
let title=$("input[name=title]").val(); let title = $("input[name=title]").val();
preview.find("h1:first").html(title); preview.find("h1:first").html(title);
let time=$("input[name=time_limit]").val(); let time = $("input[name=time_limit]").val();
preview.find("span.ui.label").eq(0).html("<?php echo $MSG_Time_Limit ?>"+time); preview.find("span.ui.label").eq(0).html("<?php echo $MSG_Time_Limit ?>" + time);
let memory=$("input[name=memory_limit]").val(); let memory = $("input[name=memory_limit]").val();
preview.find("span.ui.label").eq(1).html("<?php echo $MSG_Memory_Limit ?>"+memory); preview.find("span.ui.label").eq(1).html("<?php echo $MSG_Memory_Limit ?>" + memory);
let description=$("textarea").eq(1).val(); let description = $("textarea").eq(1).val();
preview.find("#description").html(description); preview.find("#description").html(description);
preview.find("#description .md").each(function(){ preview.find("#description .md").each(function () {
$(this).html(marked.parse($(this).html())); $(this).html(marked.parse($(this).html()));
}); });
let input=$("textarea").eq(3).val(); let input = $("textarea").eq(3).val();
preview.find("#input").html(input); preview.find("#input").html(input);
preview.find("#input .md").each(function(){ preview.find("#input .md").each(function () {
$(this).html(marked.parse($(this).html())); $(this).html(marked.parse($(this).html()));
}); });
let output=$("textarea").eq(5).val(); let output = $("textarea").eq(5).val();
preview.find("#output").html(output); preview.find("#output").html(output);
preview.find("#output .md").each(function(){ preview.find("#output .md").each(function () {
$(this).html(marked.parse($(this).html())); $(this).html(marked.parse($(this).html()));
}); });
let sinput=$("textarea").eq(6).val(); let sinput = $("textarea").eq(6).val();
preview.find("#sinput").html(sinput); preview.find("#sinput").html(sinput);
let soutput=$("textarea").eq(7).val(); let soutput = $("textarea").eq(7).val();
preview.find("#soutput").html(soutput); preview.find("#soutput").html(soutput);
let hint=$("textarea").eq(11).val(); let hint = $("textarea").eq(11).val();
preview.find("#hint").html(hint); preview.find("#hint").html(hint);
preview.find("#hint .md").each(function(){ preview.find("#hint .md").each(function () {
$(this).html(marked.parse($(this).html())); $(this).html(marked.parse($(this).html()));
}); });
if($("#previewFrame")[0] != undefined) $("#previewFrame")[0].contentWindow.MathJax.typeset(); if ($("#previewFrame")[0] != undefined) $("#previewFrame")[0].contentWindow.MathJax.typeset();
} }
$(document).ready(function(){ $(document).ready(function () {
// 默认开启预览功能 // 默认开启预览功能
// <?php if (!(isset($OJ_OLD_FASHINED) && $OJ_OLD_FASHINED )) echo " transform();" ?> // <?php if (!(isset($OJ_OLD_FASHINED) && $OJ_OLD_FASHINED))
echo " transform();" ?>
// 监听checkbox的点击事件 // 监听checkbox的点击事件
$('#preview-toggle').change(function() { $('#preview-toggle').change(function () {
if(this.checked) { if (this.checked) {
transform(); transform();
} else { } else {
// 假设这里是关闭预览的函数 // 假设这里是关闭预览的函数
@@ -198,7 +205,7 @@
} }
}); });
}); });
function untransform() { function untransform() {
console.log("预览关闭"); console.log("预览关闭");
// 恢复原始的 #main 元素样式 // 恢复原始的 #main 元素样式
let main = $("#main"); let main = $("#main");
@@ -213,8 +220,9 @@ function untransform() {
// 移除同步事件 // 移除同步事件
$("input").off('keyup', sync); $("input").off('keyup', sync);
$("textarea").off('keyup', sync); $("textarea").off('keyup', sync);
} }
</script> </script>
</body> </body>
</html>
</html>

View File

@@ -61,7 +61,7 @@ include_once("kindeditor.php") ;
</p> </p>
<p align=left> <p align=left>
<?php echo "<h4>".$MSG_Description."</h4>"?> <?php echo "<h4>".$MSG_Description."</h4>"?>
<textarea class="kindeditor" rows=13 name=description cols=80><?php echo htmlentities($row['description'],ENT_QUOTES,"UTF-8")?></textarea><br> <textarea class="kindeditor" rows=13 name=description cols=80><?php echo $row['description']?></textarea><br>
</p> </p>
<p align=left> <p align=left>