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

@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jst.server.core.container/org.eclipse.jst.server.generic.runtimeTarget/JBoss v4.2"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
<classpathentry combineaccessrules="false" kind="src" path="/YACOSCore"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jst.server.core.container/org.eclipse.jst.server.generic.runtimeTarget/JBoss v4.2"/>
<classpathentry kind="output" path="build/classes"/>
</classpath>

View File

@@ -1,7 +1,7 @@
#Wed Feb 20 12:50:07 CET 2008
#Sun Feb 24 14:14:49 CET 2008
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
org.eclipse.jdt.core.compiler.source=1.5

View File

@@ -1,4 +1,4 @@
#Wed Feb 20 12:50:07 CET 2008
classpath.helper/org.eclipse.jdt.launching.JRE_CONTAINER/owners=jst.java\:6.0
#Sun Feb 24 14:14:49 CET 2008
classpath.helper/org.eclipse.jdt.launching.JRE_CONTAINER/owners=jst.java\:5.0
classpath.helper/org.eclipse.jst.server.core.container\:\:org.eclipse.jst.server.generic.runtimeTarget\:\:JBoss\ v4.2/owners=jst.web\:2.5
eclipse.preferences.version=1

View File

@@ -4,5 +4,5 @@
<fixed facet="jst.java"/>
<fixed facet="jst.web"/>
<installed facet="jst.web" version="2.5"/>
<installed facet="jst.java" version="6.0"/>
<installed facet="jst.java" version="5.0"/>
</faceted-project>

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

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

View File

@@ -36,4 +36,5 @@ public class UserDetailsService implements
return new UserDetails(user);
}
}