You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by pe...@apache.org on 2001/06/20 20:00:11 UTC

cvs commit: xml-xerces/c/src/util XMLExceptMsgs.hpp

peiyongz    01/06/20 11:00:11

  Modified:    c/src/util XMLExceptMsgs.hpp
  Log:
  support for "fixed" option on constrainning facets
  
  Revision  Changes    Path
  1.19      +53 -42    xml-xerces/c/src/util/XMLExceptMsgs.hpp
  
  Index: XMLExceptMsgs.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/XMLExceptMsgs.hpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- XMLExceptMsgs.hpp	2001/05/31 16:09:39	1.18
  +++ XMLExceptMsgs.hpp	2001/06/20 18:00:10	1.19
  @@ -207,48 +207,59 @@
         , FACET_totalDigit_base_totalDigit   = 196
         , FACET_fractDigit_base_totalDigit   = 197
         , FACET_fractDigit_base_fractDigit   = 198
  -      , VALUE_NotMatch_Pattern             = 199
  -      , VALUE_Not_Base64                   = 200
  -      , VALUE_Not_HexBin                   = 201
  -      , VALUE_GT_maxLen                    = 202
  -      , VALUE_LT_minLen                    = 203
  -      , VALUE_NE_Len                       = 204
  -      , VALUE_NotIn_Enumeration            = 205
  -      , VALUE_exceed_totalDigit            = 206
  -      , VALUE_exceed_fractDigit            = 207
  -      , VALUE_exceed_maxIncl               = 208
  -      , VALUE_exceed_maxExcl               = 209
  -      , VALUE_exceed_minIncl               = 210
  -      , VALUE_exceed_minExcl               = 211
  -      , VALUE_WS_replaced                  = 212
  -      , VALUE_WS_collapsed                 = 213
  -      , XMLNUM_emptyString                 = 214
  -      , XMLNUM_WSString                    = 215
  -      , XMLNUM_2ManyDecPoint               = 216
  -      , XMLNUM_Inv_chars                   = 217
  -      , XMLNUM_null_ptr                    = 218
  -      , Regex_Result_Not_Set               = 219
  -      , Regex_CompactRangesError           = 220
  -      , Regex_MergeRangesTypeMismatch      = 221
  -      , Regex_SubtractRangesError          = 222
  -      , Regex_IntersectRangesError         = 223
  -      , Regex_ComplementRangesInvalidArg   = 224
  -      , Regex_InvalidCategoryName          = 225
  -      , Regex_KeywordNotFound              = 226
  -      , Regex_BadRefNo                     = 227
  -      , Regex_UnknownOption                = 228
  -      , Regex_UnknownTokenType             = 229
  -      , Regex_RangeTokenGetError           = 230
  -      , Regex_NotSupported                 = 231
  -      , Regex_InvalidChildIndex            = 232
  -      , NEL_RepeatedCalls                  = 233
  -      , RethrowError                       = 234
  -      , Out_Of_Memory                      = 235
  -      , E_HighBounds                       = 236
  -      , W_LowBounds                        = 237
  -      , W_HighBounds                       = 238
  -      , F_LowBounds                        = 239
  -      , F_HighBounds                       = 240
  +      , FACET_maxIncl_base_fixed           = 199
  +      , FACET_maxExcl_base_fixed           = 200
  +      , FACET_minIncl_base_fixed           = 201
  +      , FACET_minExcl_base_fixed           = 202
  +      , FACET_totalDigit_base_fixed        = 203
  +      , FACET_fractDigit_base_fixed        = 204
  +      , FACET_maxLen_base_fixed            = 205
  +      , FACET_minLen_base_fixed            = 206
  +      , FACET_len_base_fixed               = 207
  +      , FACET_whitespace_base_fixed        = 208
  +      , FACET_internalError_fixed          = 209
  +      , VALUE_NotMatch_Pattern             = 210
  +      , VALUE_Not_Base64                   = 211
  +      , VALUE_Not_HexBin                   = 212
  +      , VALUE_GT_maxLen                    = 213
  +      , VALUE_LT_minLen                    = 214
  +      , VALUE_NE_Len                       = 215
  +      , VALUE_NotIn_Enumeration            = 216
  +      , VALUE_exceed_totalDigit            = 217
  +      , VALUE_exceed_fractDigit            = 218
  +      , VALUE_exceed_maxIncl               = 219
  +      , VALUE_exceed_maxExcl               = 220
  +      , VALUE_exceed_minIncl               = 221
  +      , VALUE_exceed_minExcl               = 222
  +      , VALUE_WS_replaced                  = 223
  +      , VALUE_WS_collapsed                 = 224
  +      , XMLNUM_emptyString                 = 225
  +      , XMLNUM_WSString                    = 226
  +      , XMLNUM_2ManyDecPoint               = 227
  +      , XMLNUM_Inv_chars                   = 228
  +      , XMLNUM_null_ptr                    = 229
  +      , Regex_Result_Not_Set               = 230
  +      , Regex_CompactRangesError           = 231
  +      , Regex_MergeRangesTypeMismatch      = 232
  +      , Regex_SubtractRangesError          = 233
  +      , Regex_IntersectRangesError         = 234
  +      , Regex_ComplementRangesInvalidArg   = 235
  +      , Regex_InvalidCategoryName          = 236
  +      , Regex_KeywordNotFound              = 237
  +      , Regex_BadRefNo                     = 238
  +      , Regex_UnknownOption                = 239
  +      , Regex_UnknownTokenType             = 240
  +      , Regex_RangeTokenGetError           = 241
  +      , Regex_NotSupported                 = 242
  +      , Regex_InvalidChildIndex            = 243
  +      , NEL_RepeatedCalls                  = 244
  +      , RethrowError                       = 245
  +      , Out_Of_Memory                      = 246
  +      , E_HighBounds                       = 247
  +      , W_LowBounds                        = 248
  +      , W_HighBounds                       = 249
  +      , F_LowBounds                        = 250
  +      , F_HighBounds                       = 251
       };
   
   };
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org