Correction générale

This commit is contained in:
Frederic Debuire
2008-02-25 23:22:25 +00:00
parent 90f615cbab
commit 87e8364511
32 changed files with 372 additions and 242 deletions

View File

@@ -117,100 +117,109 @@ function filterUser(el, value) {
<c:otherwise>
<fmt:message key="conference.titleAdd" />
</c:otherwise>
</c:choose></h4>
<fmt:message key="step">
<fmt:param value="5" />
<fmt:param value="5" />
</fmt:message>
<p class="formHelp"><fmt:message key="conference.help.step5" /></p>
<form:form commandName="formConference">
<table>
<tbody>
<tr>
<td class="formLabel"><img alt="<fmt:message key="conference5.findUsers" />" src="./images/search.png"/>
</td>
<td><form:input id="myfilter" path="myfilter" /> <br />
<br />
<table border="1" id="tableName" style="display: none;">
<thead>
<tr>
<th>Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="personbody">
<tr id="pattern" style="display: none;">
<td><span id="tablePerson">Person</span></td>
<td><a id="addNew" href="#" onclick="addPerson(this.id)">Add</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message key="conference5.usersList" />
</td>
<td><br />
<table border="1" id="tableNameAdded" style="display: none;">
<thead>
<tr>
<th>Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="personbodyadded">
<tr id="patternadded" style="display: none;">
<td><span id="tablePersonadded">Person</span></td>
<td><a id="supprPerson" href="#"
onclick="deletePerson(this.id)">Remove</a></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message
key="conference5.invitation.send" /></td>
<td><input id="emailAddress" type="text" /> <input
type="button" name="inviteButton" id="inviteButton" value="Invite" />
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message
key="conference5.invitationList" /></td>
<td>
<div id="invitationList" class="dynamicList">
<div class="dynamicListHeader"><fmt:message
key="form.addConference.invitationsHeader" /></div>
</div>
<input type="button" id="removeInvitationButton"
name="removeInvitation"
value="<fmt:message key="button.removeSelected" />" /> <br />
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>&nbsp;</td>
<td><input type="submit" name="_target3" value="Back">
<input type="submit" name="_finish" value="Finish" /></td>
</tr>
</tfoot>
</table>
</form:form>
<script type="text/javascript">
init();
</script>
<br />
<br />
<a href="<c:url value="main.htm"/>">Home</a>
</c:choose></h4>
<c:choose>
<c:when test="${currentConference != null and currentConference.currentPhase != 'CALL_FOR_PAPER'}">
<div class="warningBox">
Sorry, you can't modify anymore this part of the conference because the call for paper is already over.
</div>
<form:form commandName="formConference">
<input type="submit" name="_target3" value="Back">
<input type="submit" name="_finish" value="Finish" />
</form:form>
</c:when>
<c:otherwise>
<fmt:message key="step">
<fmt:param value="5" />
<fmt:param value="5" />
</fmt:message>
<p class="formHelp"><fmt:message key="conference.help.step5" /></p>
<form:form commandName="formConference">
<table>
<tbody>
<tr>
<td class="formLabel"><img alt="<fmt:message key="conference5.findUsers" />" src="./images/search.png"/>
</td>
<td><form:input id="myfilter" path="myfilter" /> <br />
<br />
<table border="1" id="tableName" style="display: none;">
<thead>
<tr>
<th>Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="personbody">
<tr id="pattern" style="display: none;">
<td><span id="tablePerson">Person</span></td>
<td><a id="addNew" href="#" onclick="addPerson(this.id)">Add</a>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message key="conference5.usersList" />
</td>
<td><br />
<table border="1" id="tableNameAdded" style="display: none;">
<thead>
<tr>
<th>Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="personbodyadded">
<tr id="patternadded" style="display: none;">
<td><span id="tablePersonadded">Person</span></td>
<td><a id="supprPerson" href="#"
onclick="deletePerson(this.id)">Remove</a></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message
key="conference5.invitation.send" /></td>
<td><input id="emailAddress" type="text" /> <input
type="button" name="inviteButton" id="inviteButton" value="Invite" />
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message
key="conference5.invitationList" /></td>
<td>
<div id="invitationList" class="dynamicList">
<div class="dynamicListHeader"><fmt:message
key="form.addConference.invitationsHeader" /></div>
</div>
<input type="button" id="removeInvitationButton"
name="removeInvitation"
value="<fmt:message key="button.removeSelected" />" /> <br />
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>&nbsp;</td>
<td><input type="submit" name="_target3" value="Back">
<input type="submit" name="_finish" value="Finish" /></td>
</tr>
</tfoot>
</table>
</form:form>
<script type="text/javascript">
init();
</script>
</c:otherwise>
</c:choose>
</body>
</html>