-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cb6d90
commit 2a4f98c
Showing
38 changed files
with
88 additions
and
92 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Qingdao University Online Judge | ||
|
||
- Based on Docker; One-click deployment | ||
- ACM/OI rule support; realtime/non-realtime rank support | ||
- Multi-language support | ||
- Markdown & MathJax support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Qingdao University Online Judge | ||
|
||
> An open source online judge system based on Python and Vue | ||
[GitHub](https://github.com/QingdaoU/OnlineJudge) | ||
[Demo](https://qduoj.com) | ||
[Get Started](/en/guide/installation) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
- 用户指南 | ||
- [部署](onlinejudge/guide/deploy.md) | ||
- [测试用例格式](onlinejudge/guide/test_case.md) | ||
- [比赛模式](onlinejudge/guide/contest_rule_type.md) | ||
- [用户导入](onlinejudge/guide/import_users.md) | ||
- [Special Judge](onlinejudge/guide/special_judge.md) | ||
- [MathJax](onlinejudge/guide/mathjax.md) | ||
- [多个评测机](onlinejudge/guide/multi_judge_server.md) | ||
- [代码升级说明](onlinejudge/guide/upgrade.md) | ||
- [HTTPS相关问题](onlinejudge/guide/https.md) | ||
- [使用CDN](onlinejudge/guide/using_cdn.md) | ||
- [数据备份和恢复](onlinejudge/guide/backup.md) | ||
- [修改前端](onlinejudge/guide/update_fe.md) | ||
- [修改编译选项](onlinejudge/guide/update_compile_options.md) | ||
- JudgeServer | ||
- [API](judgeserver/api.md) | ||
- [Deploy](judgeserver/deploy.md) | ||
- [TestCase](judgeserver/testcase.md) | ||
- Judger | ||
- [API](judger/api.md) | ||
- [工作原理](judger/how_it_works.md) | ||
- [常见问题](onlinejudge/faq.md) | ||
- [交流群](onlinejudge/guide/qq_group.md) | ||
- [从旧版迁移](onlinejudge/from_old.md) | ||
- [开发团队](onlinejudge/dev-team.md) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
<meta charset="UTF-8" /> | ||
<title>Qingdao University Online Judge</title> | ||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/lib/themes/vue.min.css" /> | ||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/themes/prism.min.css" /> | ||
<style> | ||
.sidebar li > p { | ||
font-size: 16px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script src="//cdn.jsdelivr.net/npm/[email protected]/dist/mermaid.min.js"></script> | ||
<script> | ||
let num = 0; | ||
mermaid.initialize({ startOnLoad: false }); | ||
|
||
window.$docsify = { | ||
name: 'OnlineJudge', | ||
loadSidebar: true, | ||
coverpage: true, | ||
alias: { | ||
'/.*/_sidebar.md': '/_sidebar.md', | ||
}, | ||
markdown: { | ||
renderer: { | ||
code: function(code, lang) { | ||
if (lang === "mermaid") { | ||
return ( | ||
'<div class="mermaid">' + mermaid.render('mermaid-svg-' + num++, code) + "</div>" | ||
); | ||
} | ||
return this.origin.code.apply(this, arguments); | ||
} | ||
} | ||
}, | ||
}; | ||
</script> | ||
<script defer src="//cdn.jsdelivr.net/npm/[email protected]/lib/docsify.min.js"></script> | ||
<script defer src="//cdn.jsdelivr.net/npm/[email protected]/lib/plugins/zoom-image.min.js"></script> | ||
<script defer src="//cdn.jsdelivr.net/npm/[email protected]/components/prism-bash.min.js"></script> | ||
<script defer src="//cdn.jsdelivr.net/npm/[email protected]/components/prism-yaml.min.js"></script> | ||
<script defer src="//cdn.jsdelivr.net/npm/[email protected]/components/prism-c.min.js"></script> | ||
</body> | ||
</html> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.