Corrections :

Choose conference (re)marche ... merci de ne plus faire de modifs du genre de la suppression de AddOrUpdatePreference sans en discuter avec les personnes concernées
Correction de submitArticle quand aucun fichier n'est envoyé
Autres modifications mineures
This commit is contained in:
2008-02-12 12:34:04 +00:00
parent 1cc6b4ba22
commit 78edfde2aa
8 changed files with 36 additions and 25 deletions
@@ -97,6 +97,7 @@ form.submission.listauthor=Article's author
form.submission.mainauthor=Main author
form.submission.secondaryauthor=Secondary authors
form.submission.file=File
form.submitArticle.noFile=You have to send the file of the article.
form.addConference.invitationsHeader=Invitations
@@ -1,4 +1,5 @@
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="authz" uri="http://acegisecurity.org/authz" %>
@@ -8,11 +8,9 @@
<h4 class="title"><fmt:message key="preference.title" /></h4>
<c:if test="${message}">
<fmt:message key="message"/>
</c:if>
<form:form method="post" commandName="choosePreference">
<form:form method="post" commandName="choosePreference">
<spring:message var="message"/>
<c:if test="${not empty articleList}">
<table>
<c:forEach items="${articleList}" var="article" varStatus="i">
@@ -14,11 +14,11 @@
<form:form method="post" enctype="multipart/form-data" commandName="submissionArticle">
<fieldset>
<form:label path="title"><fmt:message key="form.submission.article.title" /></form:label> <form:input path="title"/> <font color="red"><form:errors path="title"/></font> <br/><br />
<form:label path="title"><fmt:message key="form.submission.article.title" /></form:label> <form:input path="title"/> <span class="formError"><form:errors path="title"/></span> <br/><br />
<form:label path="theme"><fmt:message key="form.submission.article.theme" /></form:label> <form:input path="theme"/> <font color="red"><form:errors path="theme"/></font><br/><br />
<form:label path="theme"><fmt:message key="form.submission.article.theme" /></form:label> <form:input path="theme"/> <span class="formError"><form:errors path="theme"/></span><br/><br />
<form:label path="abstractText"><fmt:message key="form.submission.article.abstractText" /></form:label> <form:textarea path="abstractText" /><font color="red"><form:errors path="abstractText"/></font><br/><br/>
<form:label path="abstractText"><fmt:message key="form.submission.article.abstractText" /></form:label> <form:textarea path="abstractText" /><span class="formError"><form:errors path="abstractText"/></span><br/><br/>
<hr/> <br/>
@@ -44,6 +44,7 @@
<hr />
<fieldset>
<br />
<div class="formError"><form:errors path="file"/></div>
File <input type="file" name="file"/>