Merge branch 'virusdefender-dev' of git.coding.net:virusdefender/qduoj into dev-s

This commit is contained in:
sxw 2015-11-29 11:21:52 +08:00
commit 2b8203e119
7 changed files with 24 additions and 6 deletions

View File

@ -8,9 +8,10 @@ demo: https://qduoj.com
TODO
- 将判题服务器改为 rpc 通信
- 重构消息队列
- 完善测试
- 完善小组功能
- 后台重构
![oj_previewindex.png][1]

View File

@ -62,10 +62,9 @@ def index_page(request):
if not request.user.is_authenticated():
return render(request, "oj/index.html")
try:
if request.META['HTTP_REFERER']:
if request.META.get('HTTP_REFERER') or request.GET.get("index"):
return render(request, "oj/index.html")
except KeyError:
else:
return http.HttpResponseRedirect('/problems/')

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 530 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

View File

@ -100,6 +100,15 @@
max-width: 300px;
}
.section{
background-size: cover;
}
#section0{
background-image: url(/static/img/index/bg/bg3.jpg);
padding: 0 0 0 0;
}
</style>
<link rel="stylesheet" href="/static/css/animate/animate.css">
@ -110,12 +119,21 @@
<script type="text/javascript">
$(document).ready(function () {
$('#fullpage').fullpage({
sectionsColor: ['#28ac72', '#2f7ddb', '#FAC832', '#B01414'],
sectionsColor: ['#ffffff', '#2f7ddb', '#FAC832', '#B01414'],
css3: true,
navigation: true,
loopBottom: true
});
});
/*
var c = 0;
setInterval(function(){
//alert(1);
$("#section0").css("background-image", "url(/static/img/index/bg/bg" + (c++ % 4).toString() + ".jpg)")
}, 1000)
*/
</script>
</head>
@ -172,7 +190,7 @@
<div class="section-text">
<img class="icon" id="img3" src="/static/img/index/m.png">
<h1>自由举办小组赛(10月上线)</h1>
<h1>自由举办小组赛(12月上线)</h1>
<h3>内部比赛,日常作业,期末考试,通通搞定</h3>
</div>