Corrections travail en groupe
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<!-- Doctype -->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
|
||||
<html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<link rel="icon" type="image/png" href="./images/favicon.png" />
|
||||
<title><fmt:message key="title" /></title>
|
||||
@@ -14,7 +14,7 @@
|
||||
<script type='text/javascript' src='./javascripts/prototype.js'></script>
|
||||
<script type='text/javascript' src='./javascripts/rounded_boxes.js'></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
//<![CDATA[
|
||||
var LoginManager = Class.create({
|
||||
initialize: function(inputField, inputField2){
|
||||
$(inputField).observe("keypress", this.KeyPressHandler.bindAsEventListener(this));
|
||||
@@ -30,7 +30,7 @@ var LoginManager = Class.create({
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
//]]>
|
||||
</script>
|
||||
<decorator:head />
|
||||
</head>
|
||||
|
||||
@@ -15,20 +15,21 @@
|
||||
|
||||
<!-- MENU : ROLE_USER for general option -->
|
||||
<authz:authorize ifAllGranted="ROLE_USER">
|
||||
<div id="mainmenubloc">
|
||||
<div class="mainmenubloc">
|
||||
<h4><fmt:message key="menu.general.title" /></h4>
|
||||
<ul>
|
||||
<li><a href="<c:url value="userBoard.htm"/>"><fmt:message key="menu.general.userBoard" /></a></li>
|
||||
<li><a href="<c:url value="main.htm"/>"><fmt:message key="menu.general.confInfo" /></a></li>
|
||||
<li><a href="<c:url value="listConference.htm"/>"><fmt:message key="conference.linkMenu.choose" /></a></li>
|
||||
</ul>
|
||||
<div id="footer"></div>
|
||||
<div class="footer"></div>
|
||||
</div>
|
||||
</authz:authorize>
|
||||
|
||||
|
||||
<!-- MENU : CHAIRMAN -->
|
||||
<authz:authorize ifAllGranted="ROLE_CHAIRMAN">
|
||||
<div id="mainmenubloc">
|
||||
<authz:authorize ifAnyGranted="ROLE_CHAIRMAN,ROLE_CONFERENCE_CREATOR">
|
||||
<div class="mainmenubloc">
|
||||
<h4><fmt:message key="menu.chairman.title" /></h4>
|
||||
<ul>
|
||||
<authz:authorize ifAllGranted="ROLE_CONFERENCE_CREATOR">
|
||||
@@ -41,13 +42,13 @@
|
||||
<li><a href="<c:url value="conflictList.htm"/>"><fmt:message key="menu.chairman.article.conflict" /></a></li>
|
||||
<li><a href="<c:url value="forum.htm?role=chairman"/>"><fmt:message key="menu.chairman.article.discussion" /></a></li>
|
||||
</ul>
|
||||
<div id="footer"></div>
|
||||
<div class="footer"></div>
|
||||
</div>
|
||||
</authz:authorize>
|
||||
|
||||
<!-- MENU : ROLE_PCMEMBER -->
|
||||
<authz:authorize ifAllGranted="ROLE_PCMEMBER">
|
||||
<div id="mainmenubloc">
|
||||
<div class="mainmenubloc">
|
||||
<h4><fmt:message key="menu.pcmember.title" /></h4>
|
||||
<ul>
|
||||
<li><a href="<c:url value="choosePreference.htm"/>"><fmt:message key="menu.pcmember.article.preference" /></a></li>
|
||||
@@ -55,24 +56,24 @@
|
||||
<li><a href="<c:url value="listEvaluation.htm?role=pcmember"/>"><fmt:message key="menu.pcmember.article.evaluation.modify" /></a></li>
|
||||
<li><a href="<c:url value="forum.htm?role=pcmember"/>"><fmt:message key="menu.pcmember.article.discussion" /></a></li>
|
||||
</ul>
|
||||
<div id="footer"></div>
|
||||
<div class="footer"></div>
|
||||
</div>
|
||||
</authz:authorize>
|
||||
|
||||
<!-- MENU : ROLE_REFEREE -->
|
||||
<authz:authorize ifAllGranted="ROLE_REFEREE">
|
||||
<div id="mainmenubloc">
|
||||
<div class="mainmenubloc">
|
||||
<h4><fmt:message key="menu.referee.title" /></h4>
|
||||
<ul>
|
||||
<li><a href="<c:url value="listEvaluation.htm?role=referee"/>"><fmt:message key="menu.referee.article.evaluation.modify" /></a></li>
|
||||
</ul>
|
||||
<div id="footer"></div>
|
||||
<div class="footer"></div>
|
||||
</div>
|
||||
</authz:authorize>
|
||||
|
||||
<!-- MENU : ROLE_AUTHOR for articles management and ROLE_USER for submission -->
|
||||
<authz:authorize ifAllGranted="ROLE_USER">
|
||||
<div id="mainmenubloc">
|
||||
<div class="mainmenubloc">
|
||||
<h4><fmt:message key="menu.author.title" /></h4>
|
||||
<ul>
|
||||
<li><a href="<c:url value="submissionArticle.htm"/>"><fmt:message key="menu.author.article.submission" /></a></li>
|
||||
@@ -80,18 +81,18 @@
|
||||
<li><a href="<c:url value="manageArticle.htm"/>"><fmt:message key="menu.author.article.modify" /></a></li>
|
||||
</authz:authorize>
|
||||
</ul>
|
||||
<div id="footer"></div>
|
||||
<div class="footer"></div>
|
||||
</div>
|
||||
</authz:authorize>
|
||||
|
||||
<!-- MENU : ROLE_ANONYMOUS -->
|
||||
<authz:authorize ifNotGranted="ROLE_USER">
|
||||
<div id="mainmenubloc">
|
||||
<div class="mainmenubloc">
|
||||
<h4><fmt:message key="menu.anonymous.title" /></h4>
|
||||
<ul>
|
||||
<li><a href="<c:url value="submissionArticle.htm"/>"><fmt:message key="menu.anonymous.article.submission" /></a></li>
|
||||
</ul>
|
||||
<div id="footer"></div>
|
||||
<div class="footer"></div>
|
||||
</div>
|
||||
</authz:authorize>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user