-
Demande d'amélioration
-
Résolution: Résolu
-
Mineur
-
6.06.00-BETA-02
-
Aucune
Actuellement :
<bean id="ckeditorConfiguration" name="configurationMapping" class="com.kosmos.toolbox.config.CkeditorConfigurer"> <property name="ignoreUnresolvablePlaceholders" value="true"/> <property name="ignoreResourceNotFound" value="true"/> <property name="locations"> <list> <value>classpath*:ckeditor.properties</value> <value>classpath*:application_ckeditor.properties</value> </list> </property> <property name="fileEncoding" value="UTF-8"/> </bean>
Ce qu'il faudrait :
<bean id="ckeditorConfiguration" name="configurationMapping" class="com.kosmos.toolbox.config.CkeditorConfigurer"> <property name="ignoreUnresolvablePlaceholders" value="true"/> <property name="ignoreResourceNotFound" value="true"/> <property name="locations"> <list> <value>classpath*:ckeditor.properties</value> <value>classpath*:application_ckeditor.properties</value> <value>classpath*:application_*_ckeditor.properties</value> </list> </property> <property name="fileEncoding" value="UTF-8"/> </bean>
Pourquoi ?
Parce que, dans le cadre de la modularisation du PSK, nous souhaiterions apporter des configurations de CKEditor par défaut, en plus de celles du produit, sans devoir faire de patch, mais laisser la possibilité, au niveau du projet, d'apporter des configurations supplémentaires.