1<!--*********************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 ***********************************************************--> 21<!ELEMENT Readme (Section)+> 22<!ATTLIST Readme 23 name CDATA #REQUIRED 24 col-span CDATA "70" 25> 26<!ELEMENT Section (Paragraph)+> 27<!ATTLIST Section 28 id CDATA #REQUIRED 29> 30<!ELEMENT Paragraph (Text | List)*> 31<!ATTLIST Paragraph 32 id CDATA #REQUIRED 33 gui (all |OS2 | UNX | WNT) "all" 34 os (none | all | OS2 | SOLARIS | LINUX | WNT | MACOSX) "all" 35 cpuname (all | SPARC | INTEL | POWERPC) "all" 36 com (all | C50 | C52 | GCC | MSC) "all" 37 localized (true | false) "true" 38 style (P | H1 | H2 | H3 | HR) "P" 39> 40<!ELEMENT Text (#PCDATA)> 41<!ATTLIST Text 42 id CDATA #REQUIRED 43 xml:lang CDATA #REQUIRED 44 style (none | b | i | u) "none" 45 Wrap (true | false) "false" 46 url (true | false | ahead) "false" 47 path (none | file | url) "none" 48> 49<!ELEMENT List (Text | Paragraph)+> 50<!ATTLIST List 51 Enum (true | false) "false" 52> 53