Author: smilek Date: Thu Nov 15 12:11:26 2007 New Revision: 595414 URL: http://svn.apache.org/viewvc?rev=595414&view=rev Log: org.apache.jetspeed.decoration.DecorationFactoryImpl now with decorationConfigurationCache arg
Modified: portals/jetspeed-2/branches/JETSPEED-2.1.3/src/webapp/WEB-INF/assembly/theme-engine.xml Modified: portals/jetspeed-2/branches/JETSPEED-2.1.3/src/webapp/WEB-INF/assembly/theme-engine.xml URL: http://svn.apache.org/viewvc/portals/jetspeed-2/branches/JETSPEED-2.1.3/src/webapp/WEB-INF/assembly/theme-engine.xml?rev=595414&r1=595413&r2=595414&view=diff ============================================================================== --- portals/jetspeed-2/branches/JETSPEED-2.1.3/src/webapp/WEB-INF/assembly/theme-engine.xml (original) +++ portals/jetspeed-2/branches/JETSPEED-2.1.3/src/webapp/WEB-INF/assembly/theme-engine.xml Thu Nov 15 12:11:26 2007 @@ -1,36 +1,39 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> -<!-- +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> +<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. ---> - -<beans> - <bean id="ResourceValidator" class="org.apache.jetspeed.decoration.validators.WebApplicationResourceValidator"/> - - <bean id="DecorationFactory" - class="org.apache.jetspeed.decoration.DecorationFactoryImpl"> - <constructor-arg index="0"> - <ref bean="org.apache.jetspeed.components.portletregistry.PortletRegistry" /> - </constructor-arg> - <constructor-arg index="1"> - <value>/decorations</value> - </constructor-arg> - <constructor-arg index="2"> - <ref bean="ResourceValidator" /> - </constructor-arg> - </bean> - -</beans> +the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +--> + +<beans> + <bean id="ResourceValidator" class="org.apache.jetspeed.decoration.validators.WebApplicationResourceValidator"/> + + <bean id="DecorationFactory" + class="org.apache.jetspeed.decoration.DecorationFactoryImpl"> + <constructor-arg index="0"> + <ref bean="org.apache.jetspeed.components.portletregistry.PortletRegistry" /> + </constructor-arg> + <constructor-arg index="1"> + <value>/decorations</value> + </constructor-arg> + <constructor-arg index="2"> + <ref bean="ResourceValidator" /> + </constructor-arg> + <constructor-arg index="3"> + <ref bean="decorationConfigurationCache" /> + </constructor-arg> + </bean> + +</beans> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]