source: branches/species/HELP_SOURCE/arb_help.dtd

Last change on this file was 19575, checked in by westram, 4 months ago
  • reintegrates 'help' into 'trunk'
    • preformatted text gets checked for width now (to enforce it fits into the arb help window).
    • fixed help following these checks, using the following steps:
      • ignore problems in foreign documentation.
      • increase default help window width.
      • introduce control comments to
        • accept oversized preformatted sections.
        • enforce preformatted style for whole sections.
        • simply define single-line preformatted sections
          Used intensive for definition of internal script languages.
    • fixed several non-related problems found in documentation.
    • minor layout changes for HTML version of arb help (more compacted; highlight anchored/all sections).
    • refactor system interface (GUI version) and use it from help module.
  • adds: log:branches/help@19532:19574
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1<!-- ==================================================================== -->
2<!--                                                                      -->
3<!--   File      : arb_help.dtd                                           -->
4<!--   Purpose   :                                                        -->
5<!--                                                                      -->
6<!--                                                                      -->
7<!-- Coded by Ralf Westram (coder@reallysoft.de) in October 2001          -->
8<!-- Copyright Department of Microbiology (Technical University Munich)   -->
9<!--                                                                      -->
10<!-- Visit our web site at: http://www.arb-home.de/                       -->
11<!--                                                                      -->
12<!--                                                                      -->
13<!-- ==================================================================== -->
14
15<!ELEMENT PAGE (UP*,SUB*,TITLE,SUBTITLE?,SECTION*) >
16<!ATTLIST PAGE name CDATA #REQUIRED > <!--name of page (equal to filename)-->
17<!ATTLIST PAGE edit_warning (release|devel) #REQUIRED > <!--affects the kind of edit-warning which is written into generated help-files-->
18<!ATTLIST PAGE source CDATA #REQUIRED > <!--source of helpfile (e.g. 'source/this.hlp' or 'genhelp/that.hlp' -->
19
20<!ELEMENT UP EMPTY>
21<!ATTLIST UP dest CDATA #REQUIRED >
22<!ATTLIST UP type (hlp|ps|pdf|email|www) #REQUIRED>
23<!ATTLIST UP source_line CDATA #IMPLIED > <!--line no in source file-->
24<!ATTLIST UP missing (0|1) #IMPLIED > <!--set to 1 if destination is missing-->
25
26<!ELEMENT SUB EMPTY>
27<!ATTLIST SUB dest CDATA #REQUIRED >
28<!ATTLIST SUB type (hlp|ps|pdf|email|www) #REQUIRED>
29<!ATTLIST SUB source_line CDATA #IMPLIED > <!--line no in source file-->
30<!ATTLIST SUB missing (0|1) #IMPLIED > <!--set to 1 if destination is missing-->
31
32<!ELEMENT TITLE (#PCDATA) >
33<!ELEMENT SUBTITLE (#PCDATA) >
34
35<!ELEMENT SECTION ((T|P|ENUM|LIST)*) >
36<!ATTLIST SECTION name CDATA #REQUIRED >
37
38<!ELEMENT ENUM (ENTRY*) >
39<!ELEMENT LIST (ENTRY*) >
40
41<!ELEMENT ENTRY ((T|P|ENUM|LIST)*) >
42<!ATTLIST ENTRY enumerated CDATA #IMPLIED >
43<!ATTLIST ENTRY item CDATA #IMPLIED >
44
45<!ELEMENT P ((T|P|ENUM|LIST)*) >
46
47<!ELEMENT T (#PCDATA|LINK)* >
48<!ATTLIST T reflow (0|1) #REQUIRED >
49<!ATTLIST T width CDATA #IMPLIED>
50
51<!ELEMENT LINK EMPTY>
52<!ATTLIST LINK dest CDATA #REQUIRED> <!--destination of link (may be other helpfile, email- or web-address)-->
53<!ATTLIST LINK type (hlp|ps|pdf|email|www|ticket) #REQUIRED>
54<!ATTLIST LINK source_line CDATA #IMPLIED > <!--line no in source file-->
55<!ATTLIST LINK missing (0|1) #IMPLIED > <!--set to 1 if destination is missing (used for internal links only)-->
56<!ATTLIST LINK quoted (0|1) #IMPLIED > <!--set to 0 to avoid quoting of title-->
Note: See TracBrowser for help on using the repository browser.