~ubuntu-branches/ubuntu/warty/docbook-html-forms/warty

« back to all changes in this revision

Viewing changes to dbforms.dtd

  • Committer: Bazaar Package Importer
  • Author(s): Mark Johnson
  • Date: 2004-01-30 21:27:04 UTC
  • mfrom: (0.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040130212704-tbl6kc33lzm0f6ni
Tags: 1.1.0-3
Fixed compatibility symlinks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<!-- ...................................................................... -->
2
 
<!-- DocBook HTML Forms Module V1.0 ....................................... -->
 
2
<!-- DocBook HTML Forms Module V1.1 ....................................... -->
3
3
<!-- File dbforms.dtd ..................................................... -->
4
4
 
5
5
<!-- Copyright (C) 2000 Organization for the Advancement
6
6
     of Structured Information Standards (OASIS).
7
7
 
8
 
     $Id: dbforms.dtd,v 1.2 2001/06/15 14:18:04 nwalsh Exp $
 
8
     $Id: dbforms.dtd,v 1.1 2002/03/19 14:28:51 ndw Exp $
9
9
 
10
10
     Permission to use, copy, modify and distribute the DocBook HTML Forms
11
11
     Module and its accompanying documentation for any purpose and
26
26
 
27
27
<!-- ...................................................................... -->
28
28
 
29
 
<!-- This is the driver file for V1.0 of the DocBook HTML Forms Module.
 
29
<!-- This is the driver file for V1.1 of the DocBook HTML Forms Module.
30
30
     Please use the following formal public identifier to identify it:
31
31
 
32
 
     "-//OASIS//DTD DocBook HTML Forms Module V1.0//EN"
 
32
     "-//OASIS//DTD DocBook HTML Forms Module V1.1//EN"
33
33
 
34
34
     For example, if your document's top-level element is Book, and
35
35
     you are using DocBook directly, use the FPI in the DOCTYPE
36
36
     declaration:
37
37
 
38
 
     <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook HTML Forms Module V1.0//EN"
39
 
                    "http://www.oasis-open.org/docbook/xml/htmlforms/1.0/dbforms.dtd"
 
38
     <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook HTML Forms Module V1.1//EN"
 
39
                    "http://www.oasis-open.org/docbook/xml/htmlforms/1.1/dbforms.dtd"
40
40
                    [...]>
41
41
 
42
42
     Or, if you have a higher-level driver file that customizes DocBook,
43
43
     use the FPI in the parameter entity declaration:
44
44
 
45
 
     <!ENTITY % DocBookHTMLFormsDTD PUBLIC "-//OASIS//DTD DocBook HTML Forms Module V1.0//EN"
46
 
                "http://www.oasis-open.org/docbook/xml/htmlforms/1.0/dbforms.dtd">
 
45
     <!ENTITY % DocBookHTMLFormsDTD PUBLIC "-//OASIS//DTD DocBook HTML Forms Module V1.1//EN"
 
46
                "http://www.oasis-open.org/docbook/xml/htmlforms/1.1/dbforms.dtd">
47
47
     %DocBookHTMLFormsDTD;
48
48
 
49
49
     See the documentation for detailed information on the parameter
52
52
     of DocBook.
53
53
-->
54
54
 
55
 
<!ENTITY % forminlines.hook "|html:input|html:button|html:label|html:select|html:textarea">
56
 
<!ENTITY % forms.hook "|html:form">
 
55
<!ENTITY % html-prefix   'html:'>
 
56
<!ENTITY % html-suffix   ':html'>
 
57
<!ENTITY % html-xmlns    'xmlns%html-suffix;'>
 
58
<!ENTITY % html-namespace "'http://www.w3.org/1999/xhtml'">
 
59
 
 
60
<!ENTITY % html-form     "%html-prefix;form">
 
61
<!ENTITY % html-input    "%html-prefix;input">
 
62
<!ENTITY % html-button   "%html-prefix;button">
 
63
<!ENTITY % html-label    "%html-prefix;label">
 
64
<!ENTITY % html-select   "%html-prefix;select">
 
65
<!ENTITY % html-option   "%html-prefix;option">
 
66
<!ENTITY % html-textarea "%html-prefix;textarea">
 
67
 
 
68
<!ENTITY % forminlines.hook "|%html-input;|%html-button;|%html-label;|%html-select;|%html-textarea;">
 
69
<!ENTITY % forms.hook "|%html-form;">
57
70
 
58
71
<!ENTITY % docbook PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
59
 
                   "../../../dtd/xml/4.1.2/docbookx.dtd">
 
72
                   "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
60
73
%docbook;
61
74
 
62
75
<!ENTITY % events
72
85
  onkeyup               CDATA           #IMPLIED"
73
86
>
74
87
 
75
 
<!ELEMENT html:form ((%component.mix;)|html:input|html:button
76
 
                        |html:label|html:select|html:textarea)+>
 
88
<!ELEMENT %html-form; ((%component.mix;)|%html-input;|%html-button;
 
89
                        |%html-label;|%html-select;|%html-textarea;)+>
77
90
 
78
 
<!ATTLIST html:form
 
91
<!ATTLIST %html-form;
 
92
        %html-xmlns;    CDATA   #FIXED %html-namespace;
79
93
        %common.attrib;
80
94
        %events;
81
95
        action          CDATA           #REQUIRED
87
101
<!ENTITY % inputtype  "(text | password | checkbox | radio
88
102
                       | submit | reset | file | hidden | image | button)">
89
103
 
90
 
<!ELEMENT html:input EMPTY>
91
 
<!ATTLIST html:input
 
104
<!ELEMENT %html-input; EMPTY>
 
105
<!ATTLIST %html-input;
 
106
        %html-xmlns;    CDATA   #FIXED %html-namespace;
92
107
        %common.attrib;
93
108
        %events;
94
109
        type            %inputtype;     "text"
110
125
        onchange        CDATA           #IMPLIED
111
126
>
112
127
 
113
 
<!ELEMENT html:button (%para.char.mix;)*>
114
 
<!ATTLIST html:button
 
128
<!ELEMENT %html-button; (%para.char.mix;)*>
 
129
<!ATTLIST %html-button;
 
130
        %html-xmlns;    CDATA   #FIXED %html-namespace;
115
131
        %common.attrib;
116
132
        %events;
117
133
        name            CDATA           #IMPLIED
124
140
        onblur          CDATA           #IMPLIED
125
141
>
126
142
 
127
 
<!ELEMENT html:label (%para.char.mix;)*>
128
 
<!ATTLIST html:label
 
143
<!ELEMENT %html-label; (%para.char.mix;)*>
 
144
<!ATTLIST %html-label;
 
145
        %html-xmlns;    CDATA   #FIXED %html-namespace;
129
146
        %common.attrib;
130
147
        %events;
131
148
        for             IDREF           #IMPLIED
134
151
        onblur          CDATA           #IMPLIED
135
152
>
136
153
 
137
 
<!ELEMENT html:select (html:option)+>
138
 
<!ATTLIST html:select
 
154
<!ELEMENT %html-select; (%html-option;)+>
 
155
<!ATTLIST %html-select;
 
156
        %html-xmlns;    CDATA   #FIXED %html-namespace;
139
157
        %common.attrib;
140
158
        %events;
141
159
        name            CDATA           #IMPLIED
148
166
        onchange        CDATA           #IMPLIED
149
167
>
150
168
 
151
 
<!ELEMENT html:option (#PCDATA)>
152
 
<!ATTLIST html:option
 
169
<!ELEMENT %html-option; (#PCDATA)>
 
170
<!ATTLIST %html-option;
 
171
        %html-xmlns;    CDATA   #FIXED %html-namespace;
153
172
        %common.attrib;
154
173
        %events;
155
174
        selected        (selected)      #IMPLIED
157
176
        value           CDATA           #IMPLIED
158
177
>
159
178
 
160
 
<!ELEMENT html:textarea (#PCDATA)>
161
 
<!ATTLIST html:textarea
 
179
<!ELEMENT %html-textarea; (#PCDATA)>
 
180
<!ATTLIST %html-textarea;
 
181
        %html-xmlns;    CDATA   #FIXED %html-namespace;
162
182
        %common.attrib;
163
183
        %events;
164
184
        name            CDATA           #IMPLIED
174
194
        onchange        CDATA           #IMPLIED
175
195
>
176
196
 
177
 
<!-- End of dbforms.dtd V4.0 .............................................. -->
 
197
<!-- End of dbforms.dtd V1.1 .............................................. -->
178
198
<!-- ...................................................................... -->