Author: gnodet
Date: Wed Sep 27 11:03:53 2006
New Revision: 450526
URL: http://svn.apache.org/viewvc?view=rev&rev=450526
Log:
SM-601: Xslt / XQuery SESM-601: Xslt / XQuery SE
Change xbean namespace to the standard one
Modified:
incubator/servicemix/trunk/servicemix-saxon/pom.xml
incubator/servicemix/trunk/servicemix-saxon/src/test/resources/spring.xml
Modified: incubator/servicemix/trunk/servicemix-saxon/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-saxon/pom.xml?view=diff&rev=450526&r1=450525&r2=450526
==============================================================================
--- incubator/servicemix/trunk/servicemix-saxon/pom.xml (original)
+++ incubator/servicemix/trunk/servicemix-saxon/pom.xml Wed Sep 27 11:03:53 2006
@@ -90,7 +90,7 @@
<executions>
<execution>
<configuration>
- <namespace>http://org.apache.servicemix/saxon/1.0</namespace>
+ <namespace>http://servicemix.apache.org/saxon/1.0</namespace>
</configuration>
<goals>
<goal>mapping</goal>
Modified:
incubator/servicemix/trunk/servicemix-saxon/src/test/resources/spring.xml
URL:
http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-saxon/src/test/resources/spring.xml?view=diff&rev=450526&r1=450525&r2=450526
==============================================================================
--- incubator/servicemix/trunk/servicemix-saxon/src/test/resources/spring.xml
(original)
+++ incubator/servicemix/trunk/servicemix-saxon/src/test/resources/spring.xml
Wed Sep 27 11:03:53 2006
@@ -1,60 +1,60 @@
-<?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.
-
--->
-<beans xmlns:sm="http://servicemix.apache.org/config/1.0"
- xmlns:saxon="http://org.apache.servicemix/saxon/1.0"
- xmlns:test="urn:test">
-
- <sm:container id="jbi" embedded="true" createMBeanServer="false">
-
- <sm:activationSpecs>
-
- <sm:activationSpec>
- <sm:component>
- <saxon:component>
- <saxon:endpoints>
+<?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.
+
+-->
+<beans xmlns:sm="http://servicemix.apache.org/config/1.0"
+ xmlns:saxon="http://servicemix.apache.org/saxon/1.0"
+ xmlns:test="urn:test">
+
+ <sm:container id="jbi" embedded="true" createMBeanServer="false">
+
+ <sm:activationSpecs>
+
+ <sm:activationSpec>
+ <sm:component>
+ <saxon:component>
+ <saxon:endpoints>
<saxon:xslt service="test:xslt" endpoint="endpoint"
resource="classpath:transform.xsl" />
<saxon:xquery service="test:xquery" endpoint="endpoint"
- resource="classpath:query.xq" />
+ resource="classpath:query.xq" />
<saxon:xquery service="test:xquery-inline" endpoint="endpoint">
<!-- CDATA are not supported currently -->
<saxon:query>
- <titles>
- {
- for $x in /bookstore/book
- where $x/price > 30
- return $x/title
- }
+ <titles>
+ {
+ for $x in /bookstore/book
+ where $x/price > 30
+ return $x/title
+ }
</titles>
</saxon:query>
</saxon:xquery>
- </saxon:endpoints>
- </saxon:component>
- </sm:component>
- </sm:activationSpec>
-
- </sm:activationSpecs>
- </sm:container>
-
-</beans>
+ </saxon:endpoints>
+ </saxon:component>
+ </sm:component>
+ </sm:activationSpec>
+
+ </sm:activationSpecs>
+ </sm:container>
+
+</beans>