svn commit: r1361073 - /ofbiz/trunk/framework/minilang/dtd/simple-methods-v2.xsd

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1361073 - /ofbiz/trunk/framework/minilang/dtd/simple-methods-v2.xsd

adrianc
Author: adrianc
Date: Fri Jul 13 07:56:04 2012
New Revision: 1361073

URL: http://svn.apache.org/viewvc?rev=1361073&view=rev
Log:
Fixed booleanExpr type in Mini-language schema. Reported by Olivier on the dev mailing list.

Modified:
    ofbiz/trunk/framework/minilang/dtd/simple-methods-v2.xsd

Modified: ofbiz/trunk/framework/minilang/dtd/simple-methods-v2.xsd
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/minilang/dtd/simple-methods-v2.xsd?rev=1361073&r1=1361072&r2=1361073&view=diff
==============================================================================
--- ofbiz/trunk/framework/minilang/dtd/simple-methods-v2.xsd (original)
+++ ofbiz/trunk/framework/minilang/dtd/simple-methods-v2.xsd Fri Jul 13 07:56:04 2012
@@ -78,8 +78,8 @@ under the License.
     </xs:simpleType>
 
     <xs:simpleType name="booleanExpr">
-        <xs:restriction base="xs:token">
-            <xs:pattern value="\$\{[a-zA-Z_]{1}[a-zA-Z0-9_\-.]+\}|true|false" />
+        <xs:restriction base="xs:string">
+            <xs:pattern value="\$\{.+\}|true|false" />
         </xs:restriction>
     </xs:simpleType>