Revision 188,
1.5 KB
checked in by mattausch, 19 years ago
(diff) |
added xercesc to support
|
Line | |
---|
1 | <?xml version="1.0" encoding="USASCII" ?>
|
---|
2 |
|
---|
3 | <!-- =====================================================================
|
---|
4 | A message represents a single named message that can be loaded
|
---|
5 | ===================================================================== -->
|
---|
6 | <!ELEMENT Message (#PCDATA)>
|
---|
7 | <!ATTLIST Message
|
---|
8 | Id CDATA #REQUIRED
|
---|
9 | Text CDATA #REQUIRED>
|
---|
10 |
|
---|
11 |
|
---|
12 | <!-- =====================================================================
|
---|
13 | A message type represents groups of messages of the same severity
|
---|
14 | ===================================================================== -->
|
---|
15 | <!ELEMENT Warning (Message*)>
|
---|
16 | <!ELEMENT Error (Message*)>
|
---|
17 | <!ELEMENT FatalError (Message*)>
|
---|
18 |
|
---|
19 |
|
---|
20 | <!-- =====================================================================
|
---|
21 | A message domain represents (optionally) a group of warnings, errors,
|
---|
22 | and validity errors.
|
---|
23 | ===================================================================== -->
|
---|
24 | <!ELEMENT MsgDomain (Warning?, Error?, FatalError?)>
|
---|
25 | <!ATTLIST MsgDomain
|
---|
26 | Domain CDATA #REQUIRED>
|
---|
27 |
|
---|
28 |
|
---|
29 | <!-- =====================================================================
|
---|
30 | A message file is the top level element, which contains all the
|
---|
31 | general info about the messages contained, and the child elements
|
---|
32 | that contain the various message domain.
|
---|
33 | ===================================================================== -->
|
---|
34 | <!ELEMENT MsgFile (MsgDomain+)>
|
---|
35 | <!ATTLIST MsgFile
|
---|
36 | Locale CDATA #REQUIRED>
|
---|
Note: See
TracBrowser
for help on using the repository browser.