...
Code Block |
---|
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "classpath:org/sipfoundry/sipxconfig/site/spring-beans.dtd"> <beans> <!-- Optional definition to override any bean property --> <bean id="propsOverrider" class="org.springframework.beans.factory.config.PropertyOverrideConfigurer"> <property name="properties"> <props> <!-- value=myResources correlates with the bean myResources defined below --> <prop key="skin.messageSourceBeanId">myResources</prop> </props> </property> </bean> <bean id="skinProperties" class="org.sipfoundry.sipxconfig.site.skin.SkinProperties"> <property name="properties"> <props> <!-- key=X.png correlates to /sipxconfig/skin/X.png (typically referenced in CSS) --> <prop key="logo.png">my-logo.png</prop> <prop key="login.jpg">my-login.jpg</prop> <prop key="custom.css">custom.css</prop> < <prop key="favicon.ico">my-favicon.ico</prop> </props> </property> </bean> <!-- Optional definition to override any string resource --> <bean id="myResources" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basename" value="myres"/> </bean> </beans> |
...