diff options
author | Simon Pepping <spepping@apache.org> | 2011-06-08 10:05:05 +0000 |
---|---|---|
committer | Simon Pepping <spepping@apache.org> | 2011-06-08 10:05:05 +0000 |
commit | 59f99b381a9dd4bc2c978a80cd301a3a47179197 (patch) | |
tree | 289d697fe4674ce18213a503b5fa3a0eeab58aab /src/documentation | |
parent | a5fd3694f0a586df531c2751b303fd4cfccbc610 (diff) | |
download | xmlgraphics-fop-59f99b381a9dd4bc2c978a80cd301a3a47179197.tar.gz xmlgraphics-fop-59f99b381a9dd4bc2c978a80cd301a3a47179197.zip |
Fix a regexp error in the schema
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1133325 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/documentation')
-rw-r--r-- | src/documentation/intermediate-format-ng/fop-intermediate-format-ng-datatypes.xsd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/documentation/intermediate-format-ng/fop-intermediate-format-ng-datatypes.xsd b/src/documentation/intermediate-format-ng/fop-intermediate-format-ng-datatypes.xsd index 3f7a33ad6..29443ea99 100644 --- a/src/documentation/intermediate-format-ng/fop-intermediate-format-ng-datatypes.xsd +++ b/src/documentation/intermediate-format-ng/fop-intermediate-format-ng-datatypes.xsd @@ -92,7 +92,7 @@ <!-- TODO refine me: \w+ will not be good enough for CMYK color, for example <xs:pattern value="\((solid|dotted|dashed|double|groove|ridge|inset|outset),\w+,\d+(,collapse-(inner|outer))?"/> --> - <xs:pattern value="\((solid|dotted|dashed|double|groove|ridge|inset|outset),.+)"/> + <xs:pattern value="\((solid|dotted|dashed|double|groove|ridge|inset|outset),.+\)"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="lengthListType"> |