PageRenderTime 63ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/bundles/plugins-trunk/XML/xml/dtds/xhtml1-frameset.dtd

#
Document Type Definition | 1225 lines | 989 code | 236 blank | 0 comment | 0 complexity | 2769bf4481374a64950795db2f15c28a MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. <!--
  2. Extensible HTML version 1.0 Frameset DTD
  3. This is the same as HTML 4.0 Frameset except for
  4. changes due to the differences between XML and SGML.
  5. Namespace = http://www.w3.org/1999/xhtml
  6. For further information, see: http://www.w3.org/TR/xhtml1
  7. Copyright (c) 1998-2000 W3C (MIT, INRIA, Keio),
  8. All Rights Reserved.
  9. This DTD module is identified by the PUBLIC and SYSTEM identifiers:
  10. PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
  11. SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"
  12. $Revision: 98 $
  13. $Date: 2002-02-12 08:59:36 +0100 (Tue, 12 Feb 2002) $
  14. -->
  15. <!--================ Character mnemonic entities =========================-->
  16. <!ENTITY % HTMLlat1 PUBLIC
  17. "-//W3C//ENTITIES Latin 1 for XHTML//EN"
  18. "xhtml-lat1.ent">
  19. %HTMLlat1;
  20. <!ENTITY % HTMLsymbol PUBLIC
  21. "-//W3C//ENTITIES Symbols for XHTML//EN"
  22. "xhtml-symbol.ent">
  23. %HTMLsymbol;
  24. <!ENTITY % HTMLspecial PUBLIC
  25. "-//W3C//ENTITIES Special for XHTML//EN"
  26. "xhtml-special.ent">
  27. %HTMLspecial;
  28. <!--================== Imported Names ====================================-->
  29. <!ENTITY % ContentType "CDATA">
  30. <!-- media type, as per [RFC2045] -->
  31. <!ENTITY % ContentTypes "CDATA">
  32. <!-- comma-separated list of media types, as per [RFC2045] -->
  33. <!ENTITY % Charset "CDATA">
  34. <!-- a character encoding, as per [RFC2045] -->
  35. <!ENTITY % Charsets "CDATA">
  36. <!-- a space separated list of character encodings, as per [RFC2045] -->
  37. <!ENTITY % LanguageCode "NMTOKEN">
  38. <!-- a language code, as per [RFC1766] -->
  39. <!ENTITY % Character "CDATA">
  40. <!-- a single character from [ISO10646] -->
  41. <!ENTITY % Number "CDATA">
  42. <!-- one or more digits -->
  43. <!ENTITY % LinkTypes "CDATA">
  44. <!-- space-separated list of link types -->
  45. <!ENTITY % MediaDesc "CDATA">
  46. <!-- single or comma-separated list of media descriptors -->
  47. <!ENTITY % URI "CDATA">
  48. <!-- a Uniform Resource Identifier, see [RFC2396] -->
  49. <!ENTITY % UriList "CDATA">
  50. <!-- a space separated list of Uniform Resource Identifiers -->
  51. <!ENTITY % Datetime "CDATA">
  52. <!-- date and time information. ISO date format -->
  53. <!ENTITY % Script "CDATA">
  54. <!-- script expression -->
  55. <!ENTITY % StyleSheet "CDATA">
  56. <!-- style sheet data -->
  57. <!ENTITY % Text "CDATA">
  58. <!-- used for titles etc. -->
  59. <!ENTITY % FrameTarget "NMTOKEN">
  60. <!-- render in this frame -->
  61. <!ENTITY % Length "CDATA">
  62. <!-- nn for pixels or nn% for percentage length -->
  63. <!ENTITY % MultiLength "CDATA">
  64. <!-- pixel, percentage, or relative -->
  65. <!ENTITY % MultiLengths "CDATA">
  66. <!-- comma-separated list of MultiLength -->
  67. <!ENTITY % Pixels "CDATA">
  68. <!-- integer representing length in pixels -->
  69. <!-- these are used for image maps -->
  70. <!ENTITY % Shape "(rect|circle|poly|default)">
  71. <!ENTITY % Coords "CDATA">
  72. <!-- comma separated list of lengths -->
  73. <!-- used for object, applet, img, input and iframe -->
  74. <!ENTITY % ImgAlign "(top|middle|bottom|left|right)">
  75. <!-- a color using sRGB: #RRGGBB as Hex values -->
  76. <!ENTITY % Color "CDATA">
  77. <!-- There are also 16 widely known color names with their sRGB values:
  78. Black = #000000 Green = #008000
  79. Silver = #C0C0C0 Lime = #00FF00
  80. Gray = #808080 Olive = #808000
  81. White = #FFFFFF Yellow = #FFFF00
  82. Maroon = #800000 Navy = #000080
  83. Red = #FF0000 Blue = #0000FF
  84. Purple = #800080 Teal = #008080
  85. Fuchsia= #FF00FF Aqua = #00FFFF
  86. -->
  87. <!--=================== Generic Attributes ===============================-->
  88. <!-- core attributes common to most elements
  89. id document-wide unique id
  90. class space separated list of classes
  91. style associated style info
  92. title advisory title/amplification
  93. -->
  94. <!ENTITY % coreattrs
  95. "id ID #IMPLIED
  96. class CDATA #IMPLIED
  97. style %StyleSheet; #IMPLIED
  98. title %Text; #IMPLIED"
  99. >
  100. <!-- internationalization attributes
  101. lang language code (backwards compatible)
  102. xml:lang language code (as per XML 1.0 spec)
  103. dir direction for weak/neutral text
  104. -->
  105. <!ENTITY % i18n
  106. "lang %LanguageCode; #IMPLIED
  107. xml:lang %LanguageCode; #IMPLIED
  108. dir (ltr|rtl) #IMPLIED"
  109. >
  110. <!-- attributes for common UI events
  111. onclick a pointer button was clicked
  112. ondblclick a pointer button was double clicked
  113. onmousedown a pointer button was pressed down
  114. onmouseup a pointer button was released
  115. onmousemove a pointer was moved onto the element
  116. onmouseout a pointer was moved away from the element
  117. onkeypress a key was pressed and released
  118. onkeydown a key was pressed down
  119. onkeyup a key was released
  120. -->
  121. <!ENTITY % events
  122. "onclick %Script; #IMPLIED
  123. ondblclick %Script; #IMPLIED
  124. onmousedown %Script; #IMPLIED
  125. onmouseup %Script; #IMPLIED
  126. onmouseover %Script; #IMPLIED
  127. onmousemove %Script; #IMPLIED
  128. onmouseout %Script; #IMPLIED
  129. onkeypress %Script; #IMPLIED
  130. onkeydown %Script; #IMPLIED
  131. onkeyup %Script; #IMPLIED"
  132. >
  133. <!-- attributes for elements that can get the focus
  134. accesskey accessibility key character
  135. tabindex position in tabbing order
  136. onfocus the element got the focus
  137. onblur the element lost the focus
  138. -->
  139. <!ENTITY % focus
  140. "accesskey %Character; #IMPLIED
  141. tabindex %Number; #IMPLIED
  142. onfocus %Script; #IMPLIED
  143. onblur %Script; #IMPLIED"
  144. >
  145. <!ENTITY % attrs "%coreattrs; %i18n; %events;">
  146. <!-- text alignment for p, div, h1-h6. The default is
  147. align="left" for ltr headings, "right" for rtl -->
  148. <!ENTITY % TextAlign "align (left|center|right) #IMPLIED">
  149. <!--=================== Text Elements ====================================-->
  150. <!ENTITY % special
  151. "br | span | bdo |object | applet | img | map | iframe">
  152. <!ENTITY % fontstyle "tt | i | b | big | small | u
  153. | s | strike |font | basefont">
  154. <!ENTITY % phrase "em | strong | dfn | code | q | sub | sup |
  155. samp | kbd | var | cite | abbr | acronym">
  156. <!ENTITY % inline.forms "input | select | textarea | label | button">
  157. <!-- these can occur at block or inline level -->
  158. <!ENTITY % misc "ins | del | script | noscript">
  159. <!ENTITY % inline "a | %special; | %fontstyle; | %phrase; | %inline.forms;">
  160. <!-- %Inline; covers inline or "text-level" elements -->
  161. <!ENTITY % Inline "(#PCDATA | %inline; | %misc;)*">
  162. <!--================== Block level elements ==============================-->
  163. <!ENTITY % heading "h1|h2|h3|h4|h5|h6">
  164. <!ENTITY % lists "ul | ol | dl | menu | dir">
  165. <!ENTITY % blocktext "pre | hr | blockquote | address | center">
  166. <!ENTITY % block
  167. "p | %heading; | div | %lists; | %blocktext; | isindex | fieldset | table">
  168. <!ENTITY % Block "(%block; | form | %misc;)*">
  169. <!-- %Flow; mixes Block and Inline and is used for list items etc. -->
  170. <!ENTITY % Flow "(#PCDATA | %block; | form | %inline; | %misc;)*">
  171. <!--================== Content models for exclusions =====================-->
  172. <!-- a elements use %Inline; excluding a -->
  173. <!ENTITY % a.content
  174. "(#PCDATA | %special; | %fontstyle; | %phrase; | %inline.forms; | %misc;)*">
  175. <!-- pre uses %Inline excluding img, object, applet, big, small,
  176. sub, sup, font, or basefont -->
  177. <!ENTITY % pre.content
  178. "(#PCDATA | a | br | span | bdo | map | tt | i | b | u | s |
  179. %phrase; | %inline.forms;)*">
  180. <!-- form uses %Flow; excluding form -->
  181. <!ENTITY % form.content "(#PCDATA | %block; | %inline; | %misc;)*">
  182. <!-- button uses %Flow; but excludes a, form, form controls, iframe -->
  183. <!ENTITY % button.content
  184. "(#PCDATA | p | %heading; | div | %lists; | %blocktext; |
  185. table | br | span | bdo | object | applet | img | map |
  186. %fontstyle; | %phrase; | %misc;)*">
  187. <!--================ Document Structure ==================================-->
  188. <!-- the namespace URI designates the document profile -->
  189. <!ELEMENT html (head, frameset)>
  190. <!ATTLIST html
  191. %i18n;
  192. xmlns %URI; #FIXED 'http://www.w3.org/1999/xhtml'
  193. >
  194. <!--================ Document Head =======================================-->
  195. <!ENTITY % head.misc "(script|style|meta|link|object|isindex)*">
  196. <!-- content model is %head.misc; combined with a single
  197. title and an optional base element in any order -->
  198. <!ELEMENT head (%head.misc;,
  199. ((title, %head.misc;, (base, %head.misc;)?) |
  200. (base, %head.misc;, (title, %head.misc;))))>
  201. <!ATTLIST head
  202. %i18n;
  203. profile %URI; #IMPLIED
  204. >
  205. <!-- The title element is not considered part of the flow of text.
  206. It should be displayed, for example as the page header or
  207. window title. Exactly one title is required per document.
  208. -->
  209. <!ELEMENT title (#PCDATA)>
  210. <!ATTLIST title %i18n;>
  211. <!-- document base URI -->
  212. <!ELEMENT base EMPTY>
  213. <!ATTLIST base
  214. href %URI; #IMPLIED
  215. target %FrameTarget; #IMPLIED
  216. >
  217. <!-- generic metainformation -->
  218. <!ELEMENT meta EMPTY>
  219. <!ATTLIST meta
  220. %i18n;
  221. http-equiv CDATA #IMPLIED
  222. name CDATA #IMPLIED
  223. content CDATA #REQUIRED
  224. scheme CDATA #IMPLIED
  225. >
  226. <!--
  227. Relationship values can be used in principle:
  228. a) for document specific toolbars/menus when used
  229. with the link element in document head e.g.
  230. start, contents, previous, next, index, end, help
  231. b) to link to a separate style sheet (rel="stylesheet")
  232. c) to make a link to a script (rel="script")
  233. d) by stylesheets to control how collections of
  234. html nodes are rendered into printed documents
  235. e) to make a link to a printable version of this document
  236. e.g. a PostScript or PDF version (rel="alternate" media="print")
  237. -->
  238. <!ELEMENT link EMPTY>
  239. <!ATTLIST link
  240. %attrs;
  241. charset %Charset; #IMPLIED
  242. href %URI; #IMPLIED
  243. hreflang %LanguageCode; #IMPLIED
  244. type %ContentType; #IMPLIED
  245. rel %LinkTypes; #IMPLIED
  246. rev %LinkTypes; #IMPLIED
  247. media %MediaDesc; #IMPLIED
  248. target %FrameTarget; #IMPLIED
  249. >
  250. <!-- style info, which may include CDATA sections -->
  251. <!ELEMENT style (#PCDATA)>
  252. <!ATTLIST style
  253. %i18n;
  254. type %ContentType; #REQUIRED
  255. media %MediaDesc; #IMPLIED
  256. title %Text; #IMPLIED
  257. xml:space (preserve) #FIXED 'preserve'
  258. >
  259. <!-- script statements, which may include CDATA sections -->
  260. <!ELEMENT script (#PCDATA)>
  261. <!ATTLIST script
  262. charset %Charset; #IMPLIED
  263. type %ContentType; #REQUIRED
  264. language CDATA #IMPLIED
  265. src %URI; #IMPLIED
  266. defer (defer) #IMPLIED
  267. xml:space (preserve) #FIXED 'preserve'
  268. >
  269. <!-- alternate content container for non script-based rendering -->
  270. <!ELEMENT noscript %Flow;>
  271. <!ATTLIST noscript
  272. %attrs;
  273. >
  274. <!--======================= Frames =======================================-->
  275. <!-- only one noframes element permitted per document -->
  276. <!ELEMENT frameset (frameset|frame|noframes)*>
  277. <!ATTLIST frameset
  278. %coreattrs;
  279. rows %MultiLengths; #IMPLIED
  280. cols %MultiLengths; #IMPLIED
  281. onload %Script; #IMPLIED
  282. onunload %Script; #IMPLIED
  283. >
  284. <!-- reserved frame names start with "_" otherwise starts with letter -->
  285. <!-- tiled window within frameset -->
  286. <!ELEMENT frame EMPTY>
  287. <!ATTLIST frame
  288. %coreattrs;
  289. longdesc %URI; #IMPLIED
  290. name NMTOKEN #IMPLIED
  291. src %URI; #IMPLIED
  292. frameborder (1|0) "1"
  293. marginwidth %Pixels; #IMPLIED
  294. marginheight %Pixels; #IMPLIED
  295. noresize (noresize) #IMPLIED
  296. scrolling (yes|no|auto) "auto"
  297. >
  298. <!-- inline subwindow -->
  299. <!ELEMENT iframe %Flow;>
  300. <!ATTLIST iframe
  301. %coreattrs;
  302. longdesc %URI; #IMPLIED
  303. name NMTOKEN #IMPLIED
  304. src %URI; #IMPLIED
  305. frameborder (1|0) "1"
  306. marginwidth %Pixels; #IMPLIED
  307. marginheight %Pixels; #IMPLIED
  308. scrolling (yes|no|auto) "auto"
  309. align %ImgAlign; #IMPLIED
  310. height %Length; #IMPLIED
  311. width %Length; #IMPLIED
  312. >
  313. <!-- alternate content container for non frame-based rendering -->
  314. <!ELEMENT noframes (body)>
  315. <!ATTLIST noframes
  316. %attrs;
  317. >
  318. <!--=================== Document Body ====================================-->
  319. <!ELEMENT body %Flow;>
  320. <!ATTLIST body
  321. %attrs;
  322. onload %Script; #IMPLIED
  323. onunload %Script; #IMPLIED
  324. background %URI; #IMPLIED
  325. bgcolor %Color; #IMPLIED
  326. text %Color; #IMPLIED
  327. link %Color; #IMPLIED
  328. vlink %Color; #IMPLIED
  329. alink %Color; #IMPLIED
  330. >
  331. <!ELEMENT div %Flow;> <!-- generic language/style container -->
  332. <!ATTLIST div
  333. %attrs;
  334. %TextAlign;
  335. >
  336. <!--=================== Paragraphs =======================================-->
  337. <!ELEMENT p %Inline;>
  338. <!ATTLIST p
  339. %attrs;
  340. %TextAlign;
  341. >
  342. <!--=================== Headings =========================================-->
  343. <!--
  344. There are six levels of headings from h1 (the most important)
  345. to h6 (the least important).
  346. -->
  347. <!ELEMENT h1 %Inline;>
  348. <!ATTLIST h1
  349. %attrs;
  350. %TextAlign;
  351. >
  352. <!ELEMENT h2 %Inline;>
  353. <!ATTLIST h2
  354. %attrs;
  355. %TextAlign;
  356. >
  357. <!ELEMENT h3 %Inline;>
  358. <!ATTLIST h3
  359. %attrs;
  360. %TextAlign;
  361. >
  362. <!ELEMENT h4 %Inline;>
  363. <!ATTLIST h4
  364. %attrs;
  365. %TextAlign;
  366. >
  367. <!ELEMENT h5 %Inline;>
  368. <!ATTLIST h5
  369. %attrs;
  370. %TextAlign;
  371. >
  372. <!ELEMENT h6 %Inline;>
  373. <!ATTLIST h6
  374. %attrs;
  375. %TextAlign;
  376. >
  377. <!--=================== Lists ============================================-->
  378. <!-- Unordered list bullet styles -->
  379. <!ENTITY % ULStyle "(disc|square|circle)">
  380. <!-- Unordered list -->
  381. <!ELEMENT ul (li)+>
  382. <!ATTLIST ul
  383. %attrs;
  384. type %ULStyle; #IMPLIED
  385. compact (compact) #IMPLIED
  386. >
  387. <!-- Ordered list numbering style
  388. 1 arabic numbers 1, 2, 3, ...
  389. a lower alpha a, b, c, ...
  390. A upper alpha A, B, C, ...
  391. i lower roman i, ii, iii, ...
  392. I upper roman I, II, III, ...
  393. The style is applied to the sequence number which by default
  394. is reset to 1 for the first list item in an ordered list.
  395. -->
  396. <!ENTITY % OLStyle "CDATA">
  397. <!-- Ordered (numbered) list -->
  398. <!ELEMENT ol (li)+>
  399. <!ATTLIST ol
  400. %attrs;
  401. type %OLStyle; #IMPLIED
  402. compact (compact) #IMPLIED
  403. start %Number; #IMPLIED
  404. >
  405. <!-- single column list (DEPRECATED) -->
  406. <!ELEMENT menu (li)+>
  407. <!ATTLIST menu
  408. %attrs;
  409. compact (compact) #IMPLIED
  410. >
  411. <!-- multiple column list (DEPRECATED) -->
  412. <!ELEMENT dir (li)+>
  413. <!ATTLIST dir
  414. %attrs;
  415. compact (compact) #IMPLIED
  416. >
  417. <!-- LIStyle is constrained to: "(%ULStyle;|%OLStyle;)" -->
  418. <!ENTITY % LIStyle "CDATA">
  419. <!-- list item -->
  420. <!ELEMENT li %Flow;>
  421. <!ATTLIST li
  422. %attrs;
  423. type %LIStyle; #IMPLIED
  424. value %Number; #IMPLIED
  425. >
  426. <!-- definition lists - dt for term, dd for its definition -->
  427. <!ELEMENT dl (dt|dd)+>
  428. <!ATTLIST dl
  429. %attrs;
  430. compact (compact) #IMPLIED
  431. >
  432. <!ELEMENT dt %Inline;>
  433. <!ATTLIST dt
  434. %attrs;
  435. >
  436. <!ELEMENT dd %Flow;>
  437. <!ATTLIST dd
  438. %attrs;
  439. >
  440. <!--=================== Address ==========================================-->
  441. <!-- information on author -->
  442. <!ELEMENT address %Inline;>
  443. <!ATTLIST address
  444. %attrs;
  445. >
  446. <!--=================== Horizontal Rule ==================================-->
  447. <!ELEMENT hr EMPTY>
  448. <!ATTLIST hr
  449. %attrs;
  450. align (left|center|right) #IMPLIED
  451. noshade (noshade) #IMPLIED
  452. size %Pixels; #IMPLIED
  453. width %Length; #IMPLIED
  454. >
  455. <!--=================== Preformatted Text ================================-->
  456. <!-- content is %Inline; excluding
  457. "img|object|applet|big|small|sub|sup|font|basefont" -->
  458. <!ELEMENT pre %pre.content;>
  459. <!ATTLIST pre
  460. %attrs;
  461. width %Number; #IMPLIED
  462. xml:space (preserve) #FIXED 'preserve'
  463. >
  464. <!--=================== Block-like Quotes ================================-->
  465. <!ELEMENT blockquote %Flow;>
  466. <!ATTLIST blockquote
  467. %attrs;
  468. cite %URI; #IMPLIED
  469. >
  470. <!--=================== Text alignment ===================================-->
  471. <!-- center content -->
  472. <!ELEMENT center %Flow;>
  473. <!ATTLIST center
  474. %attrs;
  475. >
  476. <!--=================== Inserted/Deleted Text ============================-->
  477. <!--
  478. ins/del are allowed in block and inline content, but its
  479. inappropriate to include block content within an ins element
  480. occurring in inline content.
  481. -->
  482. <!ELEMENT ins %Flow;>
  483. <!ATTLIST ins
  484. %attrs;
  485. cite %URI; #IMPLIED
  486. datetime %Datetime; #IMPLIED
  487. >
  488. <!ELEMENT del %Flow;>
  489. <!ATTLIST del
  490. %attrs;
  491. cite %URI; #IMPLIED
  492. datetime %Datetime; #IMPLIED
  493. >
  494. <!--================== The Anchor Element ================================-->
  495. <!-- content is %Inline; except that anchors shouldn't be nested -->
  496. <!ELEMENT a %a.content;>
  497. <!ATTLIST a
  498. %attrs;
  499. charset %Charset; #IMPLIED
  500. type %ContentType; #IMPLIED
  501. name NMTOKEN #IMPLIED
  502. href %URI; #IMPLIED
  503. hreflang %LanguageCode; #IMPLIED
  504. rel %LinkTypes; #IMPLIED
  505. rev %LinkTypes; #IMPLIED
  506. accesskey %Character; #IMPLIED
  507. shape %Shape; "rect"
  508. coords %Coords; #IMPLIED
  509. tabindex %Number; #IMPLIED
  510. onfocus %Script; #IMPLIED
  511. onblur %Script; #IMPLIED
  512. target %FrameTarget; #IMPLIED
  513. >
  514. <!--===================== Inline Elements ================================-->
  515. <!ELEMENT span %Inline;> <!-- generic language/style container -->
  516. <!ATTLIST span
  517. %attrs;
  518. >
  519. <!ELEMENT bdo %Inline;> <!-- I18N BiDi over-ride -->
  520. <!ATTLIST bdo
  521. %coreattrs;
  522. %events;
  523. lang %LanguageCode; #IMPLIED
  524. xml:lang %LanguageCode; #IMPLIED
  525. dir (ltr|rtl) #REQUIRED
  526. >
  527. <!ELEMENT br EMPTY> <!-- forced line break -->
  528. <!ATTLIST br
  529. %coreattrs;
  530. clear (left|all|right|none) "none"
  531. >
  532. <!ELEMENT em %Inline;> <!-- emphasis -->
  533. <!ATTLIST em %attrs;>
  534. <!ELEMENT strong %Inline;> <!-- strong emphasis -->
  535. <!ATTLIST strong %attrs;>
  536. <!ELEMENT dfn %Inline;> <!-- definitional -->
  537. <!ATTLIST dfn %attrs;>
  538. <!ELEMENT code %Inline;> <!-- program code -->
  539. <!ATTLIST code %attrs;>
  540. <!ELEMENT samp %Inline;> <!-- sample -->
  541. <!ATTLIST samp %attrs;>
  542. <!ELEMENT kbd %Inline;> <!-- something user would type -->
  543. <!ATTLIST kbd %attrs;>
  544. <!ELEMENT var %Inline;> <!-- variable -->
  545. <!ATTLIST var %attrs;>
  546. <!ELEMENT cite %Inline;> <!-- citation -->
  547. <!ATTLIST cite %attrs;>
  548. <!ELEMENT abbr %Inline;> <!-- abbreviation -->
  549. <!ATTLIST abbr %attrs;>
  550. <!ELEMENT acronym %Inline;> <!-- acronym -->
  551. <!ATTLIST acronym %attrs;>
  552. <!ELEMENT q %Inline;> <!-- inlined quote -->
  553. <!ATTLIST q
  554. %attrs;
  555. cite %URI; #IMPLIED
  556. >
  557. <!ELEMENT sub %Inline;> <!-- subscript -->
  558. <!ATTLIST sub %attrs;>
  559. <!ELEMENT sup %Inline;> <!-- superscript -->
  560. <!ATTLIST sup %attrs;>
  561. <!ELEMENT tt %Inline;> <!-- fixed pitch font -->
  562. <!ATTLIST tt %attrs;>
  563. <!ELEMENT i %Inline;> <!-- italic font -->
  564. <!ATTLIST i %attrs;>
  565. <!ELEMENT b %Inline;> <!-- bold font -->
  566. <!ATTLIST b %attrs;>
  567. <!ELEMENT big %Inline;> <!-- bigger font -->
  568. <!ATTLIST big %attrs;>
  569. <!ELEMENT small %Inline;> <!-- smaller font -->
  570. <!ATTLIST small %attrs;>
  571. <!ELEMENT u %Inline;> <!-- underline -->
  572. <!ATTLIST u %attrs;>
  573. <!ELEMENT s %Inline;> <!-- strike-through -->
  574. <!ATTLIST s %attrs;>
  575. <!ELEMENT strike %Inline;> <!-- strike-through -->
  576. <!ATTLIST strike %attrs;>
  577. <!ELEMENT basefont EMPTY> <!-- base font size -->
  578. <!ATTLIST basefont
  579. id ID #IMPLIED
  580. size CDATA #REQUIRED
  581. color %Color; #IMPLIED
  582. face CDATA #IMPLIED
  583. >
  584. <!ELEMENT font %Inline;> <!-- local change to font -->
  585. <!ATTLIST font
  586. %coreattrs;
  587. %i18n;
  588. size CDATA #IMPLIED
  589. color %Color; #IMPLIED
  590. face CDATA #IMPLIED
  591. >
  592. <!--==================== Object ======================================-->
  593. <!--
  594. object is used to embed objects as part of HTML pages.
  595. param elements should precede other content. Parameters
  596. can also be expressed as attribute/value pairs on the
  597. object element itself when brevity is desired.
  598. -->
  599. <!ELEMENT object (#PCDATA | param | %block; | form |%inline; | %misc;)*>
  600. <!ATTLIST object
  601. %attrs;
  602. declare (declare) #IMPLIED
  603. classid %URI; #IMPLIED
  604. codebase %URI; #IMPLIED
  605. data %URI; #IMPLIED
  606. type %ContentType; #IMPLIED
  607. codetype %ContentType; #IMPLIED
  608. archive %UriList; #IMPLIED
  609. standby %Text; #IMPLIED
  610. height %Length; #IMPLIED
  611. width %Length; #IMPLIED
  612. usemap %URI; #IMPLIED
  613. name NMTOKEN #IMPLIED
  614. tabindex %Number; #IMPLIED
  615. align %ImgAlign; #IMPLIED
  616. border %Pixels; #IMPLIED
  617. hspace %Pixels; #IMPLIED
  618. vspace %Pixels; #IMPLIED
  619. >
  620. <!--
  621. param is used to supply a named property value.
  622. In XML it would seem natural to follow RDF and support an
  623. abbreviated syntax where the param elements are replaced
  624. by attribute value pairs on the object start tag.
  625. -->
  626. <!ELEMENT param EMPTY>
  627. <!ATTLIST param
  628. id ID #IMPLIED
  629. name CDATA #REQUIRED
  630. value CDATA #IMPLIED
  631. valuetype (data|ref|object) "data"
  632. type %ContentType; #IMPLIED
  633. >
  634. <!--=================== Java applet ==================================-->
  635. <!--
  636. One of code or object attributes must be present.
  637. Place param elements before other content.
  638. -->
  639. <!ELEMENT applet (#PCDATA | param | %block; | form | %inline; | %misc;)*>
  640. <!ATTLIST applet
  641. %coreattrs;
  642. codebase %URI; #IMPLIED
  643. archive CDATA #IMPLIED
  644. code CDATA #IMPLIED
  645. object CDATA #IMPLIED
  646. alt %Text; #IMPLIED
  647. name NMTOKEN #IMPLIED
  648. width %Length; #REQUIRED
  649. height %Length; #REQUIRED
  650. align %ImgAlign; #IMPLIED
  651. hspace %Pixels; #IMPLIED
  652. vspace %Pixels; #IMPLIED
  653. >
  654. <!--=================== Images ===========================================-->
  655. <!--
  656. To avoid accessibility problems for people who aren't
  657. able to see the image, you should provide a text
  658. description using the alt and longdesc attributes.
  659. In addition, avoid the use of server-side image maps.
  660. -->
  661. <!ELEMENT img EMPTY>
  662. <!ATTLIST img
  663. %attrs;
  664. src %URI; #REQUIRED
  665. alt %Text; #REQUIRED
  666. name NMTOKEN #IMPLIED
  667. longdesc %URI; #IMPLIED
  668. height %Length; #IMPLIED
  669. width %Length; #IMPLIED
  670. usemap %URI; #IMPLIED
  671. ismap (ismap) #IMPLIED
  672. align %ImgAlign; #IMPLIED
  673. border %Pixels; #IMPLIED
  674. hspace %Pixels; #IMPLIED
  675. vspace %Pixels; #IMPLIED
  676. >
  677. <!-- usemap points to a map element which may be in this document
  678. or an external document, although the latter is not widely supported -->
  679. <!--================== Client-side image maps ============================-->
  680. <!-- These can be placed in the same document or grouped in a
  681. separate document although this isn't yet widely supported -->
  682. <!ELEMENT map ((%block; | form | %misc;)+ | area+)>
  683. <!ATTLIST map
  684. %i18n;
  685. %events;
  686. id ID #REQUIRED
  687. class CDATA #IMPLIED
  688. style %StyleSheet; #IMPLIED
  689. title %Text; #IMPLIED
  690. name NMTOKEN #IMPLIED
  691. >
  692. <!ELEMENT area EMPTY>
  693. <!ATTLIST area
  694. %attrs;
  695. shape %Shape; "rect"
  696. coords %Coords; #IMPLIED
  697. href %URI; #IMPLIED
  698. nohref (nohref) #IMPLIED
  699. alt %Text; #REQUIRED
  700. tabindex %Number; #IMPLIED
  701. accesskey %Character; #IMPLIED
  702. onfocus %Script; #IMPLIED
  703. onblur %Script; #IMPLIED
  704. target %FrameTarget; #IMPLIED
  705. >
  706. <!--================ Forms ===============================================-->
  707. <!ELEMENT form %form.content;> <!-- forms shouldn't be nested -->
  708. <!ATTLIST form
  709. %attrs;
  710. action %URI; #REQUIRED
  711. method (get|post) "get"
  712. name NMTOKEN #IMPLIED
  713. enctype %ContentType; "application/x-www-form-urlencoded"
  714. onsubmit %Script; #IMPLIED
  715. onreset %Script; #IMPLIED
  716. accept %ContentTypes; #IMPLIED
  717. accept-charset %Charsets; #IMPLIED
  718. target %FrameTarget; #IMPLIED
  719. >
  720. <!--
  721. Each label must not contain more than ONE field
  722. Label elements shouldn't be nested.
  723. -->
  724. <!ELEMENT label %Inline;>
  725. <!ATTLIST label
  726. %attrs;
  727. for IDREF #IMPLIED
  728. accesskey %Character; #IMPLIED
  729. onfocus %Script; #IMPLIED
  730. onblur %Script; #IMPLIED
  731. >
  732. <!ENTITY % InputType
  733. "(text | password | checkbox |
  734. radio | submit | reset |
  735. file | hidden | image | button)"
  736. >
  737. <!-- the name attribute is required for all but submit & reset -->
  738. <!ELEMENT input EMPTY> <!-- form control -->
  739. <!ATTLIST input
  740. %attrs;
  741. type %InputType; "text"
  742. name CDATA #IMPLIED
  743. value CDATA #IMPLIED
  744. checked (checked) #IMPLIED
  745. disabled (disabled) #IMPLIED
  746. readonly (readonly) #IMPLIED
  747. size CDATA #IMPLIED
  748. maxlength %Number; #IMPLIED
  749. src %URI; #IMPLIED
  750. alt CDATA #IMPLIED
  751. usemap %URI; #IMPLIED
  752. tabindex %Number; #IMPLIED
  753. accesskey %Character; #IMPLIED
  754. onfocus %Script; #IMPLIED
  755. onblur %Script; #IMPLIED
  756. onselect %Script; #IMPLIED
  757. onchange %Script; #IMPLIED
  758. accept %ContentTypes; #IMPLIED
  759. align %ImgAlign; #IMPLIED
  760. >
  761. <!ELEMENT select (optgroup|option)+> <!-- option selector -->
  762. <!ATTLIST select
  763. %attrs;
  764. name CDATA #IMPLIED
  765. size %Number; #IMPLIED
  766. multiple (multiple) #IMPLIED
  767. disabled (disabled) #IMPLIED
  768. tabindex %Number; #IMPLIED
  769. onfocus %Script; #IMPLIED
  770. onblur %Script; #IMPLIED
  771. onchange %Script; #IMPLIED
  772. >
  773. <!ELEMENT optgroup (option)+> <!-- option group -->
  774. <!ATTLIST optgroup
  775. %attrs;
  776. disabled (disabled) #IMPLIED
  777. label %Text; #REQUIRED
  778. >
  779. <!ELEMENT option (#PCDATA)> <!-- selectable choice -->
  780. <!ATTLIST option
  781. %attrs;
  782. selected (selected) #IMPLIED
  783. disabled (disabled) #IMPLIED
  784. label %Text; #IMPLIED
  785. value CDATA #IMPLIED
  786. >
  787. <!ELEMENT textarea (#PCDATA)> <!-- multi-line text field -->
  788. <!ATTLIST textarea
  789. %attrs;
  790. name CDATA #IMPLIED
  791. rows %Number; #REQUIRED
  792. cols %Number; #REQUIRED
  793. disabled (disabled) #IMPLIED
  794. readonly (readonly) #IMPLIED
  795. tabindex %Number; #IMPLIED
  796. accesskey %Character; #IMPLIED
  797. onfocus %Script; #IMPLIED
  798. onblur %Script; #IMPLIED
  799. onselect %Script; #IMPLIED
  800. onchange %Script; #IMPLIED
  801. >
  802. <!--
  803. The fieldset element is used to group form fields.
  804. Only one legend element should occur in the content
  805. and if present should only be preceded by whitespace.
  806. -->
  807. <!ELEMENT fieldset (#PCDATA | legend | %block; | form | %inline; | %misc;)*>
  808. <!ATTLIST fieldset
  809. %attrs;
  810. >
  811. <!ENTITY % LAlign "(top|bottom|left|right)">
  812. <!ELEMENT legend %Inline;> <!-- fieldset label -->
  813. <!ATTLIST legend
  814. %attrs;
  815. accesskey %Character; #IMPLIED
  816. align %LAlign; #IMPLIED
  817. >
  818. <!--
  819. Content is %Flow; excluding a, form, form controls, iframe
  820. -->
  821. <!ELEMENT button %button.content;> <!-- push button -->
  822. <!ATTLIST button
  823. %attrs;
  824. name CDATA #IMPLIED
  825. value CDATA #IMPLIED
  826. type (button|submit|reset) "submit"
  827. disabled (disabled) #IMPLIED
  828. tabindex %Number; #IMPLIED
  829. accesskey %Character; #IMPLIED
  830. onfocus %Script; #IMPLIED
  831. onblur %Script; #IMPLIED
  832. >
  833. <!-- single-line text input control (DEPRECATED) -->
  834. <!ELEMENT isindex EMPTY>
  835. <!ATTLIST isindex
  836. %coreattrs;
  837. %i18n;
  838. prompt %Text; #IMPLIED
  839. >
  840. <!--======================= Tables =======================================-->
  841. <!-- Derived from IETF HTML table standard, see [RFC1942] -->
  842. <!--
  843. The border attribute sets the thickness of the frame around the
  844. table. The default units are screen pixels.
  845. The frame attribute specifies which parts of the frame around
  846. the table should be rendered. The values are not the same as
  847. CALS to avoid a name clash with the valign attribute.
  848. -->
  849. <!ENTITY % TFrame "(void|above|below|hsides|lhs|rhs|vsides|box|border)">
  850. <!--
  851. The rules attribute defines which rules to draw between cells:
  852. If rules is absent then assume:
  853. "none" if border is absent or border="0" otherwise "all"
  854. -->
  855. <!ENTITY % TRules "(none | groups | rows | cols | all)">
  856. <!-- horizontal placement of table relative to document -->
  857. <!ENTITY % TAlign "(left|center|right)">
  858. <!-- horizontal alignment attributes for cell contents
  859. char alignment char, e.g. char=":"
  860. charoff offset for alignment char
  861. -->
  862. <!ENTITY % cellhalign
  863. "align (left|center|right|justify|char) #IMPLIED
  864. char %Character; #IMPLIED
  865. charoff %Length; #IMPLIED"
  866. >
  867. <!-- vertical alignment attributes for cell contents -->
  868. <!ENTITY % cellvalign
  869. "valign (top|middle|bottom|baseline) #IMPLIED"
  870. >
  871. <!ELEMENT table
  872. (caption?, (col*|colgroup*), thead?, tfoot?, (tbody+|tr+))>
  873. <!ELEMENT caption %Inline;>
  874. <!ELEMENT thead (tr)+>
  875. <!ELEMENT tfoot (tr)+>
  876. <!ELEMENT tbody (tr)+>
  877. <!ELEMENT colgroup (col)*>
  878. <!ELEMENT col EMPTY>
  879. <!ELEMENT tr (th|td)+>
  880. <!ELEMENT th %Flow;>
  881. <!ELEMENT td %Flow;>
  882. <!ATTLIST table
  883. %attrs;
  884. summary %Text; #IMPLIED
  885. width %Length; #IMPLIED
  886. border %Pixels; #IMPLIED
  887. frame %TFrame; #IMPLIED
  888. rules %TRules; #IMPLIED
  889. cellspacing %Length; #IMPLIED
  890. cellpadding %Length; #IMPLIED
  891. align %TAlign; #IMPLIED
  892. bgcolor %Color; #IMPLIED
  893. >
  894. <!ENTITY % CAlign "(top|bottom|left|right)">
  895. <!ATTLIST caption
  896. %attrs;
  897. align %CAlign; #IMPLIED
  898. >
  899. <!--
  900. colgroup groups a set of col elements. It allows you to group
  901. several semantically related columns together.
  902. -->
  903. <!ATTLIST colgroup
  904. %attrs;
  905. span %Number; "1"
  906. width %MultiLength; #IMPLIED
  907. %cellhalign;
  908. %cellvalign;
  909. >
  910. <!--
  911. col elements define the alignment properties for cells in
  912. one or more columns.
  913. The width attribute specifies the width of the columns, e.g.
  914. width=64 width in screen pixels
  915. width=0.5* relative width of 0.5
  916. The span attribute causes the attributes of one
  917. col element to apply to more than one column.
  918. -->
  919. <!ATTLIST col
  920. %attrs;
  921. span %Number; "1"
  922. width %MultiLength; #IMPLIED
  923. %cellhalign;
  924. %cellvalign;
  925. >
  926. <!--
  927. Use thead to duplicate headers when breaking table
  928. across page boundaries, or for static headers when
  929. tbody sections are rendered in scrolling panel.
  930. Use tfoot to duplicate footers when breaking table
  931. across page boundaries, or for static footers when
  932. tbody sections are rendered in scrolling panel.
  933. Use multiple tbody sections when rules are needed
  934. between groups of table rows.
  935. -->
  936. <!ATTLIST thead
  937. %attrs;
  938. %cellhalign;
  939. %cellvalign;
  940. >
  941. <!ATTLIST tfoot
  942. %attrs;
  943. %cellhalign;
  944. %cellvalign;
  945. >
  946. <!ATTLIST tbody
  947. %attrs;
  948. %cellhalign;
  949. %cellvalign;
  950. >
  951. <!ATTLIST tr
  952. %attrs;
  953. %cellhalign;
  954. %cellvalign;
  955. bgcolor %Color; #IMPLIED
  956. >
  957. <!-- Scope is simpler than headers attribute for common tables -->
  958. <!ENTITY % Scope "(row|col|rowgroup|colgroup)">
  959. <!-- th is for headers, td for data and for cells acting as both -->
  960. <!ATTLIST th
  961. %attrs;
  962. abbr %Text; #IMPLIED
  963. axis CDATA #IMPLIED
  964. headers IDREFS #IMPLIED
  965. scope %Scope; #IMPLIED
  966. rowspan %Number; "1"
  967. colspan %Number; "1"
  968. %cellhalign;
  969. %cellvalign;
  970. nowrap (nowrap) #IMPLIED
  971. bgcolor %Color; #IMPLIED
  972. width %Pixels; #IMPLIED
  973. height %Pixels; #IMPLIED
  974. >
  975. <!ATTLIST td
  976. %attrs;
  977. abbr %Text; #IMPLIED
  978. axis CDATA #IMPLIED
  979. headers IDREFS #IMPLIED
  980. scope %Scope; #IMPLIED
  981. rowspan %Number; "1"
  982. colspan %Number; "1"
  983. %cellhalign;
  984. %cellvalign;
  985. nowrap (nowrap) #IMPLIED
  986. bgcolor %Color; #IMPLIED
  987. width %Pixels; #IMPLIED
  988. height %Pixels; #IMPLIED
  989. >