Diverse modif
Policy failures: Code warning - failed on resource ValidateSubmission.java. Reason: Class is a raw type. References to generic type Class<T> should be parameterized, line 10 - failed on resource DispatchArticleController.java. Reason: HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized, line 72 - failed on resource DispatchArticleController.java. Reason: Map is a raw type. References to generic type Map<K,V> should be parameterized, line 70 - failed on resource DispatchArticleController.java. Reason: Map is a raw type. References to generic type Map<K,V> should be parameterized, line 72 - failed on resource DispatchArticleController.java. Reason: The import java.util.ArrayList is never used, line 3 ... and more. Override reason: hu
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
|
||||
<c:if test="${message}">
|
||||
<fmt:message key="message"/>
|
||||
huhu
|
||||
</c:if>
|
||||
|
||||
<form:form method="post" commandName="choosePreference">
|
||||
|
||||
@@ -6,11 +6,14 @@
|
||||
|
||||
<c:forEach items="${listArticle}" var="article">
|
||||
<ul class="article">
|
||||
<li class="title">${article.title}</li>
|
||||
<li class="author">Author: ${article.mainAuthor}</li>
|
||||
<li class="topic">Topic: ${article.topic}</li>
|
||||
<li class="title"><b>${article.title}</b></li>
|
||||
<li class="author">Author: <b>${article.mainAuthor.firstName} ${article.mainAuthor.lastName}</b></li>
|
||||
<li class="topic">Topic: <b>${article.topic}</b></li>
|
||||
<li class="article_url"><a href="<c:url value="${article.URL_article}"/>">Download the article</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
<br />
|
||||
<hr />
|
||||
<br />
|
||||
</c:forEach>
|
||||
|
||||
|
||||
|
||||
@@ -29,9 +29,8 @@ function Supprimer(form) {
|
||||
<hr/> <br/>
|
||||
|
||||
<label for="listauthor"><fmt:message key="form.submission.listauthor" /></label> <br /><br />
|
||||
<form:label path="mainauthor"><fmt:message key="form.submission.mainauthor" /></form:label> <form:input path="mainauthor" />
|
||||
<font color="red"><form:errors path="mainauthor"/></font>
|
||||
<br/> <br/>
|
||||
<form:label path="mainauthor"><fmt:message key="form.submission.mainauthor" /></form:label>: <b>${currentUser.firstName} ${currentUser.lastName}</b>
|
||||
<br/> <br/>
|
||||
<form:label path="secondaryauthor"><fmt:message key="form.submission.secondaryauthor" /></form:label> <form:input path="secondaryauthor" />
|
||||
<input type="button" name="addSecondary" onClick="Ajouter(this.form)" value=<fmt:message key="button.add" />> <br/><br />
|
||||
|
||||
|
||||
@@ -25,9 +25,6 @@
|
||||
<prop key="/submissionArticleOK.htm">
|
||||
SArticleControllerOK
|
||||
</prop>
|
||||
<prop key="/choosePreferenceOK.htm">
|
||||
ChoosePreferenceControllerOK
|
||||
</prop>
|
||||
<prop key="/listArticle.htm">
|
||||
ListArticleController
|
||||
</prop>
|
||||
@@ -43,18 +40,6 @@
|
||||
<prop key="/dispatchArticle.htm">
|
||||
DispatchArticleController
|
||||
</prop>
|
||||
<!-- <prop key="/addConference5.htm">
|
||||
AddConferenceController5
|
||||
</prop>
|
||||
<prop key="/addConference4.htm">
|
||||
AddConferenceController4
|
||||
</prop>
|
||||
<prop key="/addConference3.htm">
|
||||
AddConferenceController3
|
||||
</prop>
|
||||
<prop key="/addConference2.htm">
|
||||
AddConferenceController2
|
||||
</prop> -->
|
||||
<prop key="/addConference.htm">
|
||||
AddConferenceController
|
||||
</prop>
|
||||
@@ -87,9 +72,6 @@
|
||||
<bean id="SArticleControllerOK"
|
||||
class="org.yacos.web.author.controller.SArticleControllerOK" />
|
||||
|
||||
<bean id="ChoosePreferenceControllerOK"
|
||||
class="org.yacos.web.PCmember.controller.ChoosePreferenceControllerOK" />
|
||||
|
||||
<bean id="ListArticleController"
|
||||
class="org.yacos.web.PCmember.controller.ListArticleController">
|
||||
<property name="articleManager" ref="articleManager" />
|
||||
|
||||
Reference in New Issue
Block a user