Commit des corrections UC Submit Article

Gestionnaire de telechargement
Liste des auteurs secondaires
Quelques corrections javascripts
This commit is contained in:
2008-02-07 18:02:06 +00:00
parent 0308c822c6
commit 1740c0275b
15 changed files with 4040 additions and 228 deletions

View File

@@ -63,6 +63,10 @@
<prop key="/listEvaluation.htm">
ListEvaluationController
</prop>
<prop key="/download.htm">
ArticleDownloadController
</prop>
<prop key="/listReport.htm">
ListReportController
@@ -80,6 +84,11 @@
<bean id="ListArticleController"
class="org.yacos.web.PCmember.controller.ListArticleController">
<property name="articleManager" ref="articleManager" />
</bean>
<bean id="ArticleDownloadController" class="org.yacos.web.system.controller.ArticleDownloadController">
<property name="articleManager" ref="articleManager" />
<property name="downloadDirPath" value="${download.dir.path}"/>
</bean>
<bean id="SUserRegistrationController"
@@ -107,7 +116,8 @@
<property name="formView" value="submissionArticle" />
<property name="successView" value="listArticle.htm" />
<property name="articleManager" ref="articleManager" />
<property name="validator" ref="submissionCheck" />
<property name="validator" ref="submissionCheck" />
<property name="downloadDirPath" value="${download.dir.path}"/>
</bean>
<bean id="submissionCheck"
@@ -278,5 +288,16 @@
<jee:jndi-lookup id="conferenceManager"
jndi-name="ConferenceManagerBean/remote" cache="true" />
<jee:jndi-lookup id="evaluationManager"
jndi-name="EvaluationManagerBean/remote" cache="true" />
jndi-name="EvaluationManagerBean/remote" cache="true" />
<!-- Configuration Properties-->
<bean id="configproperties"
class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="location" value="classpath:config.properties"/>
</bean>
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="properties" ref="configproperties"/>
</bean>
</beans>