Skip to content
Snippets Groups Projects
Commit 99eb1e9b authored by Khaled Noaman's avatar Khaled Noaman
Browse files

Schema Errata E2-18.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174870 13f79535-47bb-0310-9956-ffa450edef68
parent 70df813a
No related branches found
No related tags found
No related merge requests found
...@@ -780,7 +780,7 @@ Attributes: ...@@ -780,7 +780,7 @@ Attributes:
Base Datatype: Decimal Base Datatype: Decimal
Facets: Facets:
fractionDigits=0 fractionDigits=0
pattern=[+-]?[0-9]+ pattern=[+\-]?[0-9]+
Name: id Name: id
Type: ID Type: ID
......
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* /*
* $Log$ * $Log$
* Revision 1.13 2003/03/18 19:42:17 knoaman
* Schema Errata E2-18.
*
* Revision 1.12 2003/02/26 16:14:27 peiyongz * Revision 1.12 2003/02/26 16:14:27 peiyongz
* Schema Errata E2-43: disallow trailing decimal point and a new pattern added * Schema Errata E2-43: disallow trailing decimal point and a new pattern added
* to the Integer definition. * to the Integer definition.
...@@ -239,11 +242,11 @@ const XMLCh fgLangPattern[] = ...@@ -239,11 +242,11 @@ const XMLCh fgLangPattern[] =
}; };
//E2-43 //E2-43
//[+-]?[0-9]+ //[+\-]?[0-9]+
const XMLCh fgIntegerPattern[] = const XMLCh fgIntegerPattern[] =
{ {
chOpenSquare, chPlus, chDash, chCloseSquare, chQuestion, chOpenSquare, chPlus, chBackSlash, chDash, chCloseSquare, chQuestion,
chOpenSquare, chDigit_0, chDash, chDigit_9, chCloseSquare, chPlus, chNull chOpenSquare, chDigit_0, chDash, chDigit_9, chCloseSquare, chPlus, chNull
}; };
//"\\i\\c*" //"\\i\\c*"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment