You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by vg...@apache.org on 2004/09/24 01:49:35 UTC

svn commit: rev 47131 - cocoon/trunk/src/confpatch

Author: vgritsenko
Date: Thu Sep 23 16:49:34 2004
New Revision: 47131

Modified:
   cocoon/trunk/src/confpatch/cocoon-reload.xweb
   cocoon/trunk/src/confpatch/enable-instrumentation.xweb
   cocoon/trunk/src/confpatch/enable-uploads.xweb
Log:
add missing unless statement


Modified: cocoon/trunk/src/confpatch/cocoon-reload.xweb
==============================================================================
--- cocoon/trunk/src/confpatch/cocoon-reload.xweb	(original)
+++ cocoon/trunk/src/confpatch/cocoon-reload.xweb	Thu Sep 23 16:49:34 2004
@@ -15,6 +15,7 @@
   limitations under the License.
 -->
 <xweb xpath="/web-app/servlet/init-param[param-name='allow-reload']/param-value"
-	if-prop="config.allow-reloads"
-	remove="/web-app/servlet/init-param[param-name='allow-reload']/param-value/text()"
+      if-prop="config.allow-reloads"
+      remove="/web-app/servlet/init-param[param-name='allow-reload']/param-value/text()"
+      unless="self::node()[. = 'yes']"
 >yes</xweb>

Modified: cocoon/trunk/src/confpatch/enable-instrumentation.xweb
==============================================================================
--- cocoon/trunk/src/confpatch/enable-instrumentation.xweb	(original)
+++ cocoon/trunk/src/confpatch/enable-instrumentation.xweb	Thu Sep 23 16:49:34 2004
@@ -15,6 +15,7 @@
   limitations under the License.
 -->
 <xweb xpath="/web-app/servlet/init-param[param-name='enable-instrumentation']/param-value"
-	if-prop="config.enable-instrumentation"
-	remove="/web-app/servlet/init-param[param-name='enable-instrumentation']/param-value/text()"
+      if-prop="config.enable-instrumentation"
+      remove="/web-app/servlet/init-param[param-name='enable-instrumentation']/param-value/text()"
+      unless="self::node()[. = 'true']"
 >true</xweb>

Modified: cocoon/trunk/src/confpatch/enable-uploads.xweb
==============================================================================
--- cocoon/trunk/src/confpatch/enable-uploads.xweb	(original)
+++ cocoon/trunk/src/confpatch/enable-uploads.xweb	Thu Sep 23 16:49:34 2004
@@ -15,6 +15,7 @@
   limitations under the License.
 -->
 <xweb xpath="/web-app/servlet/init-param[param-name='enable-uploads']/param-value"
-	if-prop="config.enable-uploads"
-	remove="/web-app/servlet/init-param[param-name='enable-uploads']/param-value/text()"
+      if-prop="config.enable-uploads"
+      remove="/web-app/servlet/init-param[param-name='enable-uploads']/param-value/text()"
+      unless="self::node()[. = 'true']"
 >true</xweb>