je sais plus
This commit is contained in:
Nicolas Michard
2008-02-25 10:04:37 +00:00
parent ec8d2c4d18
commit ffefb6f229
11 changed files with 62 additions and 32 deletions

View File

@@ -216,6 +216,7 @@ step=Step ({0}/{1})
conference.remainingTokens=You have {0} tokens left to create new conferences.<br/>\n You can ask to the admin if you need more.
conference.help.step1=
conference.help.step2=This step is used to define some dates like the starting date for the conference.<br/>\nYou just have to click on a field and the calendar will appear.
conference.help.step2datelimit=Warning : in fact, the articles could not be subjected one day before the limiting date.
conference.help.step3=Here you can add some constraints at your conference like the number of pages by articles (just for indication) or the type of file you want the authors to use.<br/>If you don't select any file types, any file types will be authorized.
conference.help.step4=This step allows you to add criterion which will be used when someone will evaluate an article.<br/>\nYou can add a new criterion using the form, or simply add an existing criterion using the list.
conference.help.step5=This step allows you to add PC Member to the conference.<br/>\nYou can add a Program Committee Member using the list below, or invite someone using his email address.

View File

@@ -19,7 +19,12 @@
<div class="cbb button to-right">
<a href="<c:url value="listConference.htm"/>"><fmt:message key="conference.linkMenu.change" /></a>
</div>
<h1>${currentConference.title}</h1>
<h1>
${fn:substring(currentConference.title, 0, 135)}
<c:if test="${fn:length(currentConference.title) > 136}">
...
</c:if>
</h1>
</c:when>
<c:otherwise>
<div class="cbb button to-right">

View File

@@ -23,6 +23,7 @@
</fmt:message>
<p class="formHelp"><fmt:message key="conference.help.step2" /></p>
<p class="formHelp"><fmt:message key="conference.help.step2datelimit" /></p>
<form:form commandName="formConference">
<table class="form">
<tbody>

View File

@@ -8,7 +8,13 @@
<c:choose>
<c:when test="${currentConferenceId != null}">
<!-- Main page for current conference -->
<h4 class="title">${currentConference.title}</h4>
<h4 class="title">
${fn:substring(currentConference.title, 0, 90)}
<c:if test="${fn:length(currentConference.title) > 91}">
...
</c:if>
</h4>
<c:if test="${end != null}">
<div class="warningBox">
@@ -16,7 +22,14 @@
</div>
</c:if>
<center><h1 class="maintitle">${currentConference.title}</h1></center>
<center><h1 class="maintitleconf" title="${currentConference.title}">
${fn:substring(currentConference.title, 0, 40)}
<c:if test="${fn:length(currentConference.title) > 41}">
...
</c:if>
</h1></center>
<h3 class="descriptionTitle"><fmt:message key="conference.detail.description" /></h3>
<div class="textBox">
${currentConference.description }

View File

@@ -33,6 +33,7 @@
<form:form method="post" enctype="multipart/form-data" commandName="submissionArticle" id="account_data">
<p class="legend"><fmt:message key="form.article.information" /></p>
<p class="formHelp"><fmt:message key="conference.help.step2datelimit" /></p>
<fieldset>
<span class="info"><fmt:message key="form.field.necessary" /></span>

View File

@@ -148,6 +148,14 @@ form > table > thead th {
margin-bottom: 20px;
color: #ff5600;
}
.maintitleconf{
font-weight: bold;
font-size: 30px;
margin-top: 30px;
margin-bottom: 20px;
color: #ff5600;
}
.subtitle{
font-weight: bold;