XMLErrList.dtd
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:2k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. <?xml version="1.0" encoding="USASCII" ?>
  2. <!-- =====================================================================
  3.      A message represents a single named message that can be loaded
  4.      ===================================================================== -->
  5. <!ELEMENT   Message (#PCDATA)>
  6. <!ATTLIST   Message
  7.             Id      CDATA #REQUIRED
  8.             Text    CDATA #REQUIRED>
  9. <!-- =====================================================================
  10.      A message type represents groups of messages of the same severity
  11.      ===================================================================== -->
  12. <!ELEMENT   Warning     (Message*)>
  13. <!ELEMENT   Error       (Message*)>
  14. <!ELEMENT   FatalError  (Message*)>
  15. <!-- =====================================================================
  16.      A message domain represents (optionally) a group of warnings, errors,
  17.      and validity errors.
  18.      ===================================================================== -->
  19. <!ELEMENT   MsgDomain   (Warning?, Error?, FatalError?)>
  20. <!ATTLIST   MsgDomain
  21.             Domain      CDATA #REQUIRED>
  22. <!-- =====================================================================
  23.      A message file is the top level element, which contains all the
  24.      general info about the messages contained, and the child elements
  25.      that contain the various message domain.
  26.      ===================================================================== -->
  27. <!ELEMENT   MsgFile     (MsgDomain+)>
  28. <!ATTLIST   MsgFile
  29.             Locale      CDATA #REQUIRED>