You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2007/02/26 15:17:01 UTC

svn commit: r511812 [2/2] - in /cocoon/trunk/blocks/cocoon-portal: cocoon-portal-api/ cocoon-portal-bridges-impl/src/main/resources/ cocoon-portal-impl/src/main/java/org/apache/cocoon/portal/profile/impl/ cocoon-portal-impl/src/main/java/org/apache/coc...

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/main/java/org/apache/cocoon/portal/services/impl/links/PrefixParameterMatcher.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/main/java/org/apache/cocoon/portal/services/impl/links/PrefixParameterMatcher.java?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/main/java/org/apache/cocoon/portal/services/impl/links/PrefixParameterMatcher.java (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/main/java/org/apache/cocoon/portal/services/impl/links/PrefixParameterMatcher.java Mon Feb 26 06:16:59 2007
@@ -1,38 +1,38 @@
-/*
- * 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.
- */
-package org.apache.cocoon.portal.services.impl.links;
-
-/**
- * 
- * @version $Id$
- */
-public final class PrefixParameterMatcher implements ParameterMatcher {
-
-    protected final String prefix;
-
-    public PrefixParameterMatcher(String prefix) {
-        if ( prefix.endsWith("*") ) {
-            this.prefix = prefix.substring(0, prefix.length()-1);
-        } else {
-            this.prefix = prefix;
-        }
-    }
-
-    public boolean match(String name) {
-        return name.startsWith(this.prefix);
-    }
+/*
+ * 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.
+ */
+package org.apache.cocoon.portal.services.impl.links;
+
+/**
+ * 
+ * @version $Id$
+ */
+public final class PrefixParameterMatcher implements ParameterMatcher {
+
+    protected final String prefix;
+
+    public PrefixParameterMatcher(String prefix) {
+        if ( prefix.endsWith("*") ) {
+            this.prefix = prefix.substring(0, prefix.length()-1);
+        } else {
+            this.prefix = prefix;
+        }
+    }
+
+    public boolean match(String name) {
+        return name.startsWith(this.prefix);
+    }
 }

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/main/java/org/apache/cocoon/portal/services/impl/links/PrefixParameterMatcher.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/main/java/org/apache/cocoon/portal/services/impl/links/PrefixParameterMatcher.java
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/test/java/org/apache/cocoon/portal/MockProcessInfoProvider.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/test/java/org/apache/cocoon/portal/MockProcessInfoProvider.java?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/test/java/org/apache/cocoon/portal/MockProcessInfoProvider.java (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/test/java/org/apache/cocoon/portal/MockProcessInfoProvider.java Mon Feb 26 06:16:59 2007
@@ -1,44 +1,44 @@
-package org.apache.cocoon.portal;
-
-import java.util.HashMap;
-import java.util.Map;
-
-import javax.servlet.ServletContext;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-import org.apache.cocoon.processing.ProcessInfoProvider;
-
-public class MockProcessInfoProvider implements ProcessInfoProvider {
-
-    protected Map objectModel = new HashMap();
-
-    /**
-     * @see org.apache.cocoon.processing.ProcessInfoProvider#getObjectModel()
-     */
-    public Map getObjectModel() {
-        return this.objectModel;
-    }
-
-    /**
-     * @see org.apache.cocoon.processing.ProcessInfoProvider#getRequest()
-     */
-    public HttpServletRequest getRequest() {
-        return null;
-    }
-
-    /**
-     * @see org.apache.cocoon.processing.ProcessInfoProvider#getResponse()
-     */
-    public HttpServletResponse getResponse() {
-        return null;
-    }
-
-    /**
-     * @see org.apache.cocoon.processing.ProcessInfoProvider#getServletContext()
-     */
-    public ServletContext getServletContext() {
-        return null;
-    }
-
-}
+package org.apache.cocoon.portal;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import javax.servlet.ServletContext;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+import org.apache.cocoon.processing.ProcessInfoProvider;
+
+public class MockProcessInfoProvider implements ProcessInfoProvider {
+
+    protected Map objectModel = new HashMap();
+
+    /**
+     * @see org.apache.cocoon.processing.ProcessInfoProvider#getObjectModel()
+     */
+    public Map getObjectModel() {
+        return this.objectModel;
+    }
+
+    /**
+     * @see org.apache.cocoon.processing.ProcessInfoProvider#getRequest()
+     */
+    public HttpServletRequest getRequest() {
+        return null;
+    }
+
+    /**
+     * @see org.apache.cocoon.processing.ProcessInfoProvider#getResponse()
+     */
+    public HttpServletResponse getResponse() {
+        return null;
+    }
+
+    /**
+     * @see org.apache.cocoon.processing.ProcessInfoProvider#getServletContext()
+     */
+    public ServletContext getServletContext() {
+        return null;
+    }
+
+}

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/test/java/org/apache/cocoon/portal/MockProcessInfoProvider.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-impl/src/test/java/org/apache/cocoon/portal/MockProcessInfoProvider.java
------------------------------------------------------------------------------
    svn:keywords = Id

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-portlet-impl/src/main/resources/org/apache/cocoon/portal/pluto/deployment/portlet.tld
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/avalon/cocoon-portal-sample.xconf
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/avalon/cocoon-portal-sample.xconf?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/avalon/cocoon-portal-sample.xconf (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/avalon/cocoon-portal-sample.xconf Mon Feb 26 06:16:59 2007
@@ -17,7 +17,7 @@
 -->
 <!--+
     |
-    | @version $Id: cocoon-portal-samples.xconf 125443 2005-01-17 20:39:52Z cziegeler $
+    | @version $Id$
     +-->
 <components>
   <!--+

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/avalon/cocoon-portal-sample.xconf
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-borderless-window.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-borderless-window.xml?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-borderless-window.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-borderless-window.xml Mon Feb 26 06:16:59 2007
@@ -1,47 +1,47 @@
-<?xml version="1.0"?>
-<!--
-  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.
--->
-<!--+
-    |
-    | @version $Id: borderless-window.xml 509214 2007-02-19 14:42:03Z cziegeler $
-    +-->
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:portal="http://cocoon.apache.org/schema/portal"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
-
-  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.borderless-window"
-        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
-        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
-    <property name="aspectChain">
-      <portal:renderer-aspects>
-        <portal:aspect type="xslt">
-          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/borderless-window.xsl"/>
-        </portal:aspect>
-        <portal:aspect type="parameter">
-          <portal:property name="tag-name" value="window"/>
-        </portal:aspect>
-        <portal:aspect type="window">
-          <portal:property name="root-tag" value="false"/>
-        </portal:aspect>
-        <portal:aspect type="coplet-cinclude"/>      
-      </portal:renderer-aspects>
-    </property>
-  </bean>
-</beans>
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<!--+
+    |
+    | @version $Id$
+    +-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:portal="http://cocoon.apache.org/schema/portal"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
+
+  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.borderless-window"
+        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
+        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
+    <property name="aspectChain">
+      <portal:renderer-aspects>
+        <portal:aspect type="xslt">
+          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/borderless-window.xsl"/>
+        </portal:aspect>
+        <portal:aspect type="parameter">
+          <portal:property name="tag-name" value="window"/>
+        </portal:aspect>
+        <portal:aspect type="window">
+          <portal:property name="root-tag" value="false"/>
+        </portal:aspect>
+        <portal:aspect type="coplet-cinclude"/>      
+      </portal:renderer-aspects>
+    </property>
+  </bean>
+</beans>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-borderless-window.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-borderless-window.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-column.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-column.xml?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-column.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-column.xml Mon Feb 26 06:16:59 2007
@@ -1,46 +1,46 @@
-<?xml version="1.0"?>
-<!--
-  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.
--->
-<!--+
-    |
-    | @version $Id: column.xml 509214 2007-02-19 14:42:03Z cziegeler $
-    +-->
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:portal="http://cocoon.apache.org/schema/portal"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
-  
-  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.column"
-        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
-        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
-    <property name="aspectChain">
-      <portal:renderer-aspects>
-        <portal:aspect type="xslt">
-          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/column.xsl"/>
-        </portal:aspect>
-        <portal:aspect type="parameter">
-          <portal:property name="tag-name" value="column-layout"/>
-        </portal:aspect>
-        <portal:aspect type="composite-content">
-          <portal:property name="root-tag" value="false"/>
-        </portal:aspect>
-      </portal:renderer-aspects>
-    </property>
-  </bean>
-</beans>
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<!--+
+    |
+    | @version $Id$
+    +-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:portal="http://cocoon.apache.org/schema/portal"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
+  
+  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.column"
+        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
+        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
+    <property name="aspectChain">
+      <portal:renderer-aspects>
+        <portal:aspect type="xslt">
+          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/column.xsl"/>
+        </portal:aspect>
+        <portal:aspect type="parameter">
+          <portal:property name="tag-name" value="column-layout"/>
+        </portal:aspect>
+        <portal:aspect type="composite-content">
+          <portal:property name="root-tag" value="false"/>
+        </portal:aspect>
+      </portal:renderer-aspects>
+    </property>
+  </bean>
+</beans>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-column.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-column.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-decorated-frame.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-decorated-frame.xml?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-decorated-frame.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-decorated-frame.xml Mon Feb 26 06:16:59 2007
@@ -1,46 +1,46 @@
-<?xml version="1.0"?>
-<!--
-  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.
--->
-<!--+
-    |
-    | @version $Id: decorated-frame.xml 509214 2007-02-19 14:42:03Z cziegeler $
-    +-->
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:portal="http://cocoon.apache.org/schema/portal"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
-  
-  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.decorated-frame"
-        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
-        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
-    <property name="aspectChain">
-      <portal:renderer-aspects>
-        <portal:aspect type="xslt">
-          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/frame.xsl"/>
-        </portal:aspect>
-        <portal:aspect type="parameter">
-          <portal:property name="tag-name" value="frame"/>
-        </portal:aspect>
-        <portal:aspect type="frame">
-           <portal:property name="store" value="request"/>
-        </portal:aspect>
-      </portal:renderer-aspects>
-    </property>
-  </bean>
-</beans>
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<!--+
+    |
+    | @version $Id$
+    +-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:portal="http://cocoon.apache.org/schema/portal"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
+  
+  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.decorated-frame"
+        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
+        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
+    <property name="aspectChain">
+      <portal:renderer-aspects>
+        <portal:aspect type="xslt">
+          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/frame.xsl"/>
+        </portal:aspect>
+        <portal:aspect type="parameter">
+          <portal:property name="tag-name" value="frame"/>
+        </portal:aspect>
+        <portal:aspect type="frame">
+           <portal:property name="store" value="request"/>
+        </portal:aspect>
+      </portal:renderer-aspects>
+    </property>
+  </bean>
+</beans>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-decorated-frame.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-decorated-frame.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-frame.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-frame.xml?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-frame.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-frame.xml Mon Feb 26 06:16:59 2007
@@ -1,40 +1,40 @@
-<?xml version="1.0"?>
-<!--
-  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.
--->
-<!--+
-    |
-    | @version $Id: frame.xml 509214 2007-02-19 14:42:03Z cziegeler $
-    +-->
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:portal="http://cocoon.apache.org/schema/portal"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
-  
-  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.frame"
-        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
-        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
-    <property name="aspectChain">
-      <portal:renderer-aspects>
-        <portal:aspect type="frame">
-          <portal:property name="store" value="request"/>
-        </portal:aspect>
-      </portal:renderer-aspects>
-    </property>
-  </bean>
-</beans>
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<!--+
+    |
+    | @version $Id$
+    +-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:portal="http://cocoon.apache.org/schema/portal"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
+  
+  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.frame"
+        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
+        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
+    <property name="aspectChain">
+      <portal:renderer-aspects>
+        <portal:aspect type="frame">
+          <portal:property name="store" value="request"/>
+        </portal:aspect>
+      </portal:renderer-aspects>
+    </property>
+  </bean>
+</beans>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-frame.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-frame.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-link.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-link.xml?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-link.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-link.xml Mon Feb 26 06:16:59 2007
@@ -1,34 +1,34 @@
-<?xml version="1.0"?>
-<!--
-  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.
--->
-<!--+
-    |
-    | @version $Id: link.xml 509214 2007-02-19 14:42:03Z cziegeler $
-    +-->
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:portal="http://cocoon.apache.org/schema/portal"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
-  
-  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.link"
-        class="org.apache.cocoon.portal.layout.renderer.impl.DefaultLinkRenderer"
-        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
-
-  </bean>
-</beans>
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<!--+
+    |
+    | @version $Id$
+    +-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:portal="http://cocoon.apache.org/schema/portal"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
+  
+  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.link"
+        class="org.apache.cocoon.portal.layout.renderer.impl.DefaultLinkRenderer"
+        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
+
+  </bean>
+</beans>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-link.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-link.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-linktab.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-linktab.xml?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-linktab.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-linktab.xml Mon Feb 26 06:16:59 2007
@@ -1,47 +1,47 @@
-<?xml version="1.0"?>
-<!--
-  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.
--->
-<!--+
-    |
-    | @version $Id: linktab.xml 509214 2007-02-19 14:42:03Z cziegeler $
-    +-->
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:portal="http://cocoon.apache.org/schema/portal"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
-
-  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.linktab"
-        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
-        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
-    <property name="aspectChain">
-      <portal:renderer-aspects>
-        <portal:aspect type="xslt">
-          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/linktab.xsl"/>
-        </portal:aspect>
-        <portal:aspect type="parameter">
-          <portal:property name="tag-name" value="linktab-layout"/>
-        </portal:aspect>
-        <portal:aspect type="tab-content">
-          <portal:property name="root-tag" value="false"/>
-          <portal:property name="store" value="session"/>
-        </portal:aspect>
-      </portal:renderer-aspects>
-    </property>
-  </bean>
-</beans>
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<!--+
+    |
+    | @version $Id$
+    +-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:portal="http://cocoon.apache.org/schema/portal"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
+
+  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.linktab"
+        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
+        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
+    <property name="aspectChain">
+      <portal:renderer-aspects>
+        <portal:aspect type="xslt">
+          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/linktab.xsl"/>
+        </portal:aspect>
+        <portal:aspect type="parameter">
+          <portal:property name="tag-name" value="linktab-layout"/>
+        </portal:aspect>
+        <portal:aspect type="tab-content">
+          <portal:property name="root-tag" value="false"/>
+          <portal:property name="store" value="session"/>
+        </portal:aspect>
+      </portal:renderer-aspects>
+    </property>
+  </bean>
+</beans>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-linktab.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-linktab.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-nowindow.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-nowindow.xml?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-nowindow.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-nowindow.xml Mon Feb 26 06:16:59 2007
@@ -1,42 +1,42 @@
-<?xml version="1.0"?>
-<!--
-  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.
--->
-<!--+
-    |
-    | @version $Id: nowindow.xml 509214 2007-02-19 14:42:03Z cziegeler $
-    +-->
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:portal="http://cocoon.apache.org/schema/portal"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
-  
-  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.nowindow"
-        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
-        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
-    <property name="aspectChain">
-      <portal:renderer-aspects>
-        <portal:aspect type="xslt">
-          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/nowindow.xsl"/>
-        </portal:aspect>
-        <portal:aspect type="window"/>
-        <portal:aspect type="coplet-cinclude"/>      
-      </portal:renderer-aspects>
-    </property>
-  </bean>
-</beans>
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<!--+
+    |
+    | @version $Id$
+    +-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:portal="http://cocoon.apache.org/schema/portal"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
+  
+  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.nowindow"
+        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
+        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
+    <property name="aspectChain">
+      <portal:renderer-aspects>
+        <portal:aspect type="xslt">
+          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/nowindow.xsl"/>
+        </portal:aspect>
+        <portal:aspect type="window"/>
+        <portal:aspect type="coplet-cinclude"/>      
+      </portal:renderer-aspects>
+    </property>
+  </bean>
+</beans>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-nowindow.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-nowindow.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-rawtab.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-rawtab.xml?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-rawtab.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-rawtab.xml Mon Feb 26 06:16:59 2007
@@ -1,44 +1,44 @@
-<?xml version="1.0"?>
-<!--
-  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.
--->
-<!--+
-    |
-    | @version $Id: rawtab.xml 509214 2007-02-19 14:42:03Z cziegeler $
-    +-->
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:portal="http://cocoon.apache.org/schema/portal"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
-  
-  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.rawtab"
-        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
-        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
-    <property name="aspectChain">
-      <portal:renderer-aspects>
-        <portal:aspect type="parameter">
-          <portal:property name="tag-name" value="tab-layout"/>
-        </portal:aspect>
-        <portal:aspect type="tab-content">
-          <portal:property name="root-tag" value="false"/>
-          <portal:property name="store" value="session"/>
-        </portal:aspect>
-      </portal:renderer-aspects>
-    </property>
-  </bean>
-</beans>
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<!--+
+    |
+    | @version $Id$
+    +-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:portal="http://cocoon.apache.org/schema/portal"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
+  
+  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.rawtab"
+        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
+        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
+    <property name="aspectChain">
+      <portal:renderer-aspects>
+        <portal:aspect type="parameter">
+          <portal:property name="tag-name" value="tab-layout"/>
+        </portal:aspect>
+        <portal:aspect type="tab-content">
+          <portal:property name="root-tag" value="false"/>
+          <portal:property name="store" value="session"/>
+        </portal:aspect>
+      </portal:renderer-aspects>
+    </property>
+  </bean>
+</beans>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-rawtab.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-rawtab.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-row.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-row.xml?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-row.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-row.xml Mon Feb 26 06:16:59 2007
@@ -1,46 +1,46 @@
-<?xml version="1.0"?>
-<!--
-  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.
--->
-<!--+
-    |
-    | @version $Id: row.xml 509214 2007-02-19 14:42:03Z cziegeler $
-    +-->
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:portal="http://cocoon.apache.org/schema/portal"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
-  
-  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.row"
-        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
-        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
-    <property name="aspectChain">
-      <portal:renderer-aspects>
-        <portal:aspect type="xslt">
-          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/row.xsl"/>
-        </portal:aspect>
-        <portal:aspect type="parameter">
-          <portal:property name="tag-name" value="row-layout"/>
-        </portal:aspect>
-        <portal:aspect type="composite-content">
-          <portal:property name="root-tag" value="false"/>
-        </portal:aspect>
-      </portal:renderer-aspects>
-    </property>
-  </bean>
-</beans>
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<!--+
+    |
+    | @version $Id$
+    +-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:portal="http://cocoon.apache.org/schema/portal"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
+  
+  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.row"
+        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
+        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
+    <property name="aspectChain">
+      <portal:renderer-aspects>
+        <portal:aspect type="xslt">
+          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/row.xsl"/>
+        </portal:aspect>
+        <portal:aspect type="parameter">
+          <portal:property name="tag-name" value="row-layout"/>
+        </portal:aspect>
+        <portal:aspect type="composite-content">
+          <portal:property name="root-tag" value="false"/>
+        </portal:aspect>
+      </portal:renderer-aspects>
+    </property>
+  </bean>
+</beans>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-row.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-row.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-tab.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-tab.xml?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-tab.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-tab.xml Mon Feb 26 06:16:59 2007
@@ -1,47 +1,47 @@
-<?xml version="1.0"?>
-<!--
-  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.
--->
-<!--+
-    |
-    | @version $Id: tab.xml 509214 2007-02-19 14:42:03Z cziegeler $
-    +-->
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:portal="http://cocoon.apache.org/schema/portal"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
-  
-  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.tab"
-        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
-        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
-    <property name="aspectChain">
-      <portal:renderer-aspects>
-        <portal:aspect type="xslt">
-          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/tab.xsl"/>
-        </portal:aspect>
-        <portal:aspect type="parameter">
-          <portal:property name="tag-name" value="tab-layout"/>
-        </portal:aspect>
-        <portal:aspect type="tab-content">
-          <portal:property name="root-tag" value="false"/>
-          <portal:property name="store" value="session"/>
-        </portal:aspect>
-      </portal:renderer-aspects>
-    </property>
-  </bean>
-</beans>
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<!--+
+    |
+    | @version $Id$
+    +-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:portal="http://cocoon.apache.org/schema/portal"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
+  
+  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.tab"
+        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
+        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
+    <property name="aspectChain">
+      <portal:renderer-aspects>
+        <portal:aspect type="xslt">
+          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/tab.xsl"/>
+        </portal:aspect>
+        <portal:aspect type="parameter">
+          <portal:property name="tag-name" value="tab-layout"/>
+        </portal:aspect>
+        <portal:aspect type="tab-content">
+          <portal:property name="root-tag" value="false"/>
+          <portal:property name="store" value="session"/>
+        </portal:aspect>
+      </portal:renderer-aspects>
+    </property>
+  </bean>
+</beans>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-tab.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-tab.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-window.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-window.xml?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-window.xml (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-window.xml Mon Feb 26 06:16:59 2007
@@ -1,47 +1,47 @@
-<?xml version="1.0"?>
-<!--
-  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.
--->
-<!--+
-    |
-    | @version $Id: window.xml 509214 2007-02-19 14:42:03Z cziegeler $
-    +-->
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:portal="http://cocoon.apache.org/schema/portal"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
-                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
-
-  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.window"
-        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
-        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
-    <property name="aspectChain">
-      <portal:renderer-aspects>
-        <portal:aspect type="xslt">
-          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/window.xsl"/>
-        </portal:aspect>
-        <portal:aspect type="parameter">
-          <portal:property name="tag-name" value="window"/>
-        </portal:aspect>
-        <portal:aspect type="window">
-          <portal:property name="root-tag" value="false"/>
-        </portal:aspect>
-        <portal:aspect type="coplet-cinclude"/>      
-      </portal:renderer-aspects>
-    </property>
-  </bean>
-</beans>
+<?xml version="1.0"?>
+<!--
+  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.
+-->
+<!--+
+    |
+    | @version $Id$
+    +-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:portal="http://cocoon.apache.org/schema/portal"
+       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+                           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+                           http://cocoon.apache.org/schema/portal http://cocoon.apache.org/schema/portal/cocoon-portal-1.0.xsd">
+
+  <bean id="org.apache.cocoon.portal.layout.renderer.Renderer.window"
+        class="org.apache.cocoon.portal.layout.renderer.impl.AspectRenderer"
+        parent="org.apache.cocoon.portal.util.AbstractBean" scope="singleton">
+    <property name="aspectChain">
+      <portal:renderer-aspects>
+        <portal:aspect type="xslt">
+          <portal:property name="style" value="{portal-skin:skin.basepath}/styles/window.xsl"/>
+        </portal:aspect>
+        <portal:aspect type="parameter">
+          <portal:property name="tag-name" value="window"/>
+        </portal:aspect>
+        <portal:aspect type="window">
+          <portal:property name="root-tag" value="false"/>
+        </portal:aspect>
+        <portal:aspect type="coplet-cinclude"/>      
+      </portal:renderer-aspects>
+    </property>
+  </bean>
+</beans>

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-window.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/config/spring/renderer-window.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/portal-sample.xsamples
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/portal-sample.xsamples?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/portal-sample.xsamples (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/portal-sample.xsamples Mon Feb 26 06:16:59 2007
@@ -15,7 +15,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 -->
-<!-- SVN $Id: portal.xsamples 126208 2005-01-23 11:03:50Z cziegeler $ -->
+<!-- SVN $Id$ -->
 <xsamples xpath="/samples" unless="group[@name='Portal Engine']">
 
   <group name="Portal Block">

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sample/src/main/resources/COB-INF/portal-sample.xsamples
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sitemap/src/main/java/org/apache/cocoon/portal/acting/helpers/FullScreenMapping.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sitemap/src/main/java/org/apache/cocoon/portal/acting/helpers/FullScreenMapping.java?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sitemap/src/main/java/org/apache/cocoon/portal/acting/helpers/FullScreenMapping.java (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sitemap/src/main/java/org/apache/cocoon/portal/acting/helpers/FullScreenMapping.java Mon Feb 26 06:16:59 2007
@@ -25,7 +25,7 @@
 /**
  * Helper class for a full screen event.
  *
- * @version $Id: CopletMapping.java 30941 2004-07-29 19:56:58Z vgritsenko $
+ * @version $Id$
  */
 public class FullScreenMapping extends Mapping {
 

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sitemap/src/main/java/org/apache/cocoon/portal/acting/helpers/FullScreenMapping.java
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sitemap/src/main/java/org/apache/cocoon/portal/generation/AbstractCopletGenerator.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sitemap/src/main/java/org/apache/cocoon/portal/generation/AbstractCopletGenerator.java?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sitemap/src/main/java/org/apache/cocoon/portal/generation/AbstractCopletGenerator.java (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sitemap/src/main/java/org/apache/cocoon/portal/generation/AbstractCopletGenerator.java Mon Feb 26 06:16:59 2007
@@ -42,7 +42,7 @@
  * 	&lt;map:parameter name="copletId" type="examplecoplet"/&gt;
  * &lt;/map:generator&gt;</pre>
  *
- * @version $Id: AbstractCopletTransformer.java 30941 2004-07-29 19:56:58Z vgritsenko $
+ * @version $Id$
  */
 public abstract class AbstractCopletGenerator 
 extends ServiceableGenerator {

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-sitemap/src/main/java/org/apache/cocoon/portal/generation/AbstractCopletGenerator.java
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-tools-impl/src/main/java/org/apache/cocoon/portal/tools/service/UserRightsService.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-portal/cocoon-portal-tools-impl/src/main/java/org/apache/cocoon/portal/tools/service/UserRightsService.java?view=diff&rev=511812&r1=511811&r2=511812
==============================================================================
--- cocoon/trunk/blocks/cocoon-portal/cocoon-portal-tools-impl/src/main/java/org/apache/cocoon/portal/tools/service/UserRightsService.java (original)
+++ cocoon/trunk/blocks/cocoon-portal/cocoon-portal-tools-impl/src/main/java/org/apache/cocoon/portal/tools/service/UserRightsService.java Mon Feb 26 06:16:59 2007
@@ -33,7 +33,7 @@
 /**
  * Service, that provides access to the user rights configuration.
  *
- * @version $Id: UserRightsService.java 151233 2005-02-03 21:28:27Z cziegeler $
+ * @version $Id$
  */
 public class UserRightsService {
 

Propchange: cocoon/trunk/blocks/cocoon-portal/cocoon-portal-tools-impl/src/main/java/org/apache/cocoon/portal/tools/service/UserRightsService.java
------------------------------------------------------------------------------
    svn:keywords = Id