You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2008/01/11 13:38:20 UTC

svn commit: r611158 - in /lenya/trunk/src: resources/test/changePublicationConfig.xsl targets/test-build.xml

Author: andreas
Date: Fri Jan 11 04:38:15 2008
New Revision: 611158

URL: http://svn.apache.org/viewvc?rev=611158&view=rev
Log:
Don't allow to create instances of the test publication

Added:
    lenya/trunk/src/resources/test/changePublicationConfig.xsl
Modified:
    lenya/trunk/src/targets/test-build.xml

Added: lenya/trunk/src/resources/test/changePublicationConfig.xsl
URL: http://svn.apache.org/viewvc/lenya/trunk/src/resources/test/changePublicationConfig.xsl?rev=611158&view=auto
==============================================================================
--- lenya/trunk/src/resources/test/changePublicationConfig.xsl (added)
+++ lenya/trunk/src/resources/test/changePublicationConfig.xsl Fri Jan 11 04:38:15 2008
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
+  xmlns:pub="http://apache.org/cocoon/lenya/publication/1.1">
+  
+  <xsl:param name="pubName"/>
+  
+  <xsl:template match="pub:publication/pub:name">
+    <xsl:copy><xsl:value-of select="$pubName"/></xsl:copy>
+  </xsl:template>
+  
+  <!-- remove template instantiator declaration -->
+  <xsl:template match="pub:template-instantiator"/>
+  
+  <xsl:template match="@*|node()" priority="-1">
+    <xsl:copy>
+      <xsl:apply-templates select="@*|node()"/>
+    </xsl:copy>
+  </xsl:template>
+
+</xsl:stylesheet>
\ No newline at end of file

Modified: lenya/trunk/src/targets/test-build.xml
URL: http://svn.apache.org/viewvc/lenya/trunk/src/targets/test-build.xml?rev=611158&r1=611157&r2=611158&view=diff
==============================================================================
--- lenya/trunk/src/targets/test-build.xml (original)
+++ lenya/trunk/src/targets/test-build.xml Fri Jan 11 04:38:15 2008
@@ -70,11 +70,15 @@
     <copy todir="${test.pub.dir}">
       <fileset dir="${build.webapp}/lenya/pubs/${test.pub.source.id}">
         <exclude name="content/**"/>
+        <exclude name="config/publication.xml"/>
       </fileset>
     </copy>
-    <replace encoding="utf-8"
-      file="${build.webapp}/lenya/pubs/${test.pub.id}/config/publication.xml"
-      token="Default Publication" value="Test Publication"/>
+  	<xslt
+  	  in="${build.webapp}/lenya/pubs/${test.pub.source.id}/config/publication.xml"
+      out="${build.webapp}/lenya/pubs/${test.pub.id}/config/publication.xml"
+  	  style="${src.resource.dir}/test/changePublicationConfig.xsl">
+  	  <param name="pubName" expression="Test Publication"/>
+    </xslt>
     <replace encoding="utf-8"
       file="${build.webapp}/lenya/pubs/${test.pub.id}/config/search/lucene_index.xml"
       token="default" value="test"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org