You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by na...@apache.org on 2010/09/26 22:17:07 UTC

svn commit: r1001501 - in /tuscany/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources: customer.xsd stock.xq

Author: nash
Date: Sun Sep 26 20:17:07 2010
New Revision: 1001501

URL: http://svn.apache.org/viewvc?rev=1001501&view=rev
Log:
Fix typos

Modified:
    tuscany/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/customer.xsd
    tuscany/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/stock.xq

Modified: tuscany/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/customer.xsd
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/customer.xsd?rev=1001501&r1=1001500&r2=1001501&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/customer.xsd (original)
+++ tuscany/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/customer.xsd Sun Sep 26 20:17:07 2010
@@ -17,15 +17,15 @@
  * specific language governing permissions and limitations
  * under the License.    
 -->
-<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://exmaple.com/customer"
-    targetNamespace="http://exmaple.com/customer" elementFormDefault="qualified">
+<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://example.com/customer"
+    targetNamespace="http://example.com/customer" elementFormDefault="qualified">
     <element name="customer" type="tns:Customer" />
     <complexType name="Customer">
         <sequence>
             <element name="id" type="string"></element>
             <element name="firstName" type="string"></element>
             <element name="lastName" type="string"></element>
-            <element name="accounts" type="string"></element>
+            <element name="accounts" type="tns:Accounts"></element>
         </sequence>
     </complexType>
     <complexType name="Accounts">

Modified: tuscany/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/stock.xq
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/stock.xq?rev=1001501&r1=1001500&r2=1001501&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/stock.xq (original)
+++ tuscany/sca-java-1.x/branches/sca-java-1.6.1/demos/xml-bigbank/src/main/resources/stock.xq Sun Sep 26 20:17:07 2010
@@ -34,7 +34,7 @@ declare function stock:calculate($quoteD
     sum(
         for $a in $accountDoc/c:customer/c:accounts/c:saving
         return $a/@balance
-    ), "Saving Blance")
+    ), "Saving Balance")
     
     let $value :=
     trace(