Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="iso-8859-1"?> |
| 2 | <conversion> |
| 3 | <!-- Miscellaneous. --> |
| 4 | <macro name="declaremodule"> |
| 5 | <attribute name="id" optional="yes"/> |
| 6 | <attribute name="type"/> |
| 7 | <attribute name="name"/> |
| 8 | </macro> |
| 9 | <macro name="modulesynopsis"> |
| 10 | <content/> |
| 11 | </macro> |
| 12 | <macro name="platform"> |
| 13 | <content/> |
| 14 | </macro> |
| 15 | <macro name="deprecated"> |
| 16 | <attribute name="version"/> |
| 17 | <content/> |
| 18 | </macro> |
| 19 | <macro name="label"> |
| 20 | <attribute name="id"/> |
| 21 | </macro> |
| 22 | <macro name="nodename" outputname="label"> |
| 23 | <attribute name="id"/> |
| 24 | </macro> |
| 25 | <macro name="localmoduletable"/> |
| 26 | <macro name="manpage"> |
| 27 | <attribute name="name"/> |
| 28 | <attribute name="section"/> |
| 29 | </macro> |
| 30 | <macro name="module"> |
| 31 | <content/> |
| 32 | </macro> |
| 33 | <macro name="moduleauthor"> |
| 34 | <attribute name="name"/> |
| 35 | <attribute name="email"/> |
| 36 | </macro> |
Fred Drake | 91f31ea | 1999-11-09 19:33:24 +0000 | [diff] [blame] | 37 | <macro name="citetitle"> |
| 38 | <attribute name="href" optional="yes"/> |
| 39 | <content/> |
| 40 | </macro> |
Fred Drake | b6fa789 | 2001-09-27 04:18:39 +0000 | [diff] [blame] | 41 | <macro name="pep"> |
| 42 | <attribute name="num"/> |
| 43 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 44 | <macro name="rfc"> |
| 45 | <attribute name="num"/> |
| 46 | </macro> |
Fred Drake | ce19496 | 2001-03-23 16:29:06 +0000 | [diff] [blame] | 47 | <macro name="sectionauthor" outputname="author"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 48 | <attribute name="name"/> |
| 49 | <attribute name="email"/> |
| 50 | </macro> |
Fred Drake | ce19496 | 2001-03-23 16:29:06 +0000 | [diff] [blame] | 51 | <macro name="author"> |
| 52 | <attribute name="name"/> |
| 53 | </macro> |
| 54 | <macro name="authoraddress"> |
| 55 | <content/> |
| 56 | </macro> |
Fred Drake | d397f23 | 2000-11-22 16:45:19 +0000 | [diff] [blame] | 57 | <macro name="shortversion"/> |
Fred Drake | 92350b3 | 2001-10-09 18:01:23 +0000 | [diff] [blame] | 58 | <macro name="note"> |
| 59 | <content/> |
| 60 | </macro> |
| 61 | <macro name="warning"> |
| 62 | <content/> |
| 63 | </macro> |
Fred Drake | 44835d8 | 2001-07-07 06:00:36 +0000 | [diff] [blame] | 64 | <!-- These are broken: we need to re-order the optional and required |
| 65 | parameters, making the optional parameter the content for the |
| 66 | element. latex2esis.py is not powerful enough to handle this. |
| 67 | --> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 68 | <macro name="versionadded"> |
Fred Drake | bda0556 | 2001-04-21 06:00:51 +0000 | [diff] [blame] | 69 | <attribute name="info" optional="yes"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 70 | <attribute name="version"/> |
| 71 | </macro> |
| 72 | <macro name="versionchanged"> |
Fred Drake | bda0556 | 2001-04-21 06:00:51 +0000 | [diff] [blame] | 73 | <attribute name="info" optional="yes"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 74 | <attribute name="version"/> |
| 75 | </macro> |
| 76 | |
| 77 | <!-- Module referencing. --> |
| 78 | <macro name="refmodule" outputname="module"> |
Fred Drake | 876389e | 2001-09-27 17:01:59 +0000 | [diff] [blame] | 79 | <!-- this causes the optional parameter to \refmodule to be |
| 80 | discarded --> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 81 | <attribute name="" optional="yes"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 82 | <content/> |
| 83 | </macro> |
| 84 | |
| 85 | <!-- Information units. --> |
| 86 | <!-- C things. --> |
| 87 | <environment name="cfuncdesc"> |
| 88 | <attribute name="type"/> |
| 89 | <attribute name="name"/> |
| 90 | <child name="args"/> |
| 91 | </environment> |
| 92 | <environment name="ctypedesc"> |
Fred Drake | d397f23 | 2000-11-22 16:45:19 +0000 | [diff] [blame] | 93 | <attribute name="tag" optional="yes"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 94 | <attribute name="name"/> |
| 95 | </environment> |
| 96 | <environment name="cvardesc"> |
| 97 | <attribute name="type"/> |
| 98 | <attribute name="name"/> |
| 99 | </environment> |
| 100 | |
| 101 | <!-- Python things. --> |
| 102 | <macro name="optional"> |
| 103 | <content/> |
| 104 | </macro> |
Fred Drake | 2ed27d3 | 2000-11-17 19:05:12 +0000 | [diff] [blame] | 105 | <macro name="unspecified"/> |
| 106 | <macro name="moreargs"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 107 | <environment name="classdesc"> |
| 108 | <attribute name="name"/> |
| 109 | <child name="args"/> |
| 110 | </environment> |
Fred Drake | 0a650d7 | 2001-07-06 21:13:51 +0000 | [diff] [blame] | 111 | <environment name="classdesc*" outputname="classdesc"> |
| 112 | <attribute name="name"/> |
| 113 | </environment> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 114 | <environment name="datadesc"> |
| 115 | <attribute name="name"/> |
| 116 | </environment> |
Fred Drake | 0a650d7 | 2001-07-06 21:13:51 +0000 | [diff] [blame] | 117 | <environment name="datadescni" outputname="datadesc"> |
| 118 | <attribute name="index">no</attribute> |
| 119 | <attribute name="name"/> |
| 120 | </environment> |
Fred Drake | ce19496 | 2001-03-23 16:29:06 +0000 | [diff] [blame] | 121 | <macro name="dataline"> |
| 122 | <attribute name="name"/> |
| 123 | </macro> |
Fred Drake | 0a650d7 | 2001-07-06 21:13:51 +0000 | [diff] [blame] | 124 | <environment name="excclassdesc"> |
| 125 | <attribute name="name"/> |
| 126 | <child name="args"/> |
| 127 | </environment> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 128 | <environment name="excdesc"> |
| 129 | <attribute name="name"/> |
| 130 | </environment> |
| 131 | |
| 132 | <environment name="funcdesc"> |
| 133 | <attribute name="name"/> |
| 134 | <child name="args"/> |
| 135 | </environment> |
| 136 | <macro name="funcline"> |
| 137 | <attribute name="name"/> |
| 138 | <child name="args"/> |
| 139 | </macro> |
| 140 | <environment name="funcdescni" outputname="funcdesc"> |
| 141 | <attribute name="index">no</attribute> |
| 142 | <attribute name="name"/> |
| 143 | <child name="args"/> |
| 144 | </environment> |
| 145 | <macro name="funclineni" outputname="funcline"> |
| 146 | <attribute name="index">no</attribute> |
| 147 | <attribute name="name"/> |
| 148 | <child name="args"/> |
| 149 | </macro> |
| 150 | |
| 151 | <environment name="memberdesc"> |
| 152 | <attribute name="class" optional="yes"/> |
| 153 | <attribute name="name"/> |
| 154 | </environment> |
| 155 | <environment name="memberdescni" outputname="memberdesc"> |
| 156 | <attribute name="index">no</attribute> |
| 157 | <attribute name="class" optional="yes"/> |
| 158 | <attribute name="name"/> |
| 159 | </environment> |
Fred Drake | bda0556 | 2001-04-21 06:00:51 +0000 | [diff] [blame] | 160 | <macro name="memberline"> |
| 161 | <attribute name="name"/> |
| 162 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 163 | |
| 164 | <environment name="methoddesc"> |
| 165 | <attribute name="class" optional="yes"/> |
| 166 | <attribute name="name"/> |
| 167 | <child name="args"/> |
| 168 | </environment> |
| 169 | <macro name="methodline"> |
| 170 | <attribute name="class" optional="yes"/> |
| 171 | <attribute name="name"/> |
| 172 | <child name="args"/> |
| 173 | </macro> |
| 174 | <environment name="methoddescni"> |
| 175 | <attribute name="index">no</attribute> |
| 176 | <attribute name="class" optional="yes"/> |
| 177 | <attribute name="name"/> |
| 178 | <child name="args"/> |
| 179 | </environment> |
| 180 | <macro name="methodlineni" outputname="methodline"> |
| 181 | <attribute name="index">no</attribute> |
| 182 | <attribute name="class" optional="yes"/> |
| 183 | <attribute name="name"/> |
| 184 | <child name="args"/> |
| 185 | </macro> |
| 186 | |
| 187 | <environment name="opcodedesc"> |
| 188 | <attribute name="name"/> |
| 189 | <attribute name="var"/> |
| 190 | </environment> |
| 191 | |
| 192 | <!-- "See also:" sections. --> |
| 193 | <macro name="seemodule"> |
Fred Drake | 876389e | 2001-09-27 17:01:59 +0000 | [diff] [blame] | 194 | <!-- this causes the optional parameter to \seemodule to be |
| 195 | discarded --> |
Fred Drake | baacc08 | 2001-09-27 15:49:23 +0000 | [diff] [blame] | 196 | <attribute name="" optional="yes"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 197 | <attribute name="name"/> |
Fred Drake | d397f23 | 2000-11-22 16:45:19 +0000 | [diff] [blame] | 198 | <child name="description"/> |
| 199 | </macro> |
| 200 | <macro name="seepep"> |
| 201 | <attribute name="number"/> |
| 202 | <child name="title"/> |
| 203 | <child name="description"/> |
| 204 | </macro> |
| 205 | <macro name="seerfc"> |
| 206 | <attribute name="number"/> |
| 207 | <child name="title"/> |
| 208 | <child name="description"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 209 | </macro> |
| 210 | <macro name="seetext"> |
Fred Drake | d397f23 | 2000-11-22 16:45:19 +0000 | [diff] [blame] | 211 | <child name="description"/> |
| 212 | </macro> |
| 213 | <macro name="seetitle"> |
| 214 | <attribute name="href" optional="yes"/> |
| 215 | <child name="title"/> |
| 216 | <child name="description"/> |
| 217 | </macro> |
| 218 | <macro name="seeurl"> |
| 219 | <attribute name="href"/> |
| 220 | <child name="description"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 221 | </macro> |
| 222 | |
| 223 | <!-- Index-generating markup. --> |
| 224 | <macro name="index" outputname="indexterm"> |
| 225 | <attribute name="term1"/> |
| 226 | </macro> |
| 227 | <macro name="indexii" outputname="indexterm"> |
| 228 | <attribute name="term1"/> |
| 229 | <attribute name="term2"/> |
| 230 | </macro> |
| 231 | <macro name="indexiii" outputname="indexterm"> |
| 232 | <attribute name="term1"/> |
| 233 | <attribute name="term2"/> |
| 234 | <attribute name="term3"/> |
| 235 | </macro> |
| 236 | <macro name="indexiv" outputname="indexterm"> |
| 237 | <attribute name="term1"/> |
| 238 | <attribute name="term2"/> |
| 239 | <attribute name="term3"/> |
| 240 | <attribute name="term4"/> |
| 241 | </macro> |
| 242 | |
| 243 | <macro name="ttindex" outputname="indexterm"> |
| 244 | <attribute name="style">tt</attribute> |
| 245 | <attribute name="term1"/> |
| 246 | </macro> |
| 247 | |
| 248 | <macro name="refmodindex"> |
| 249 | <attribute name="module"/> |
| 250 | </macro> |
| 251 | <macro name="stmodindex"> |
| 252 | <attribute name="module"/> |
| 253 | </macro> |
| 254 | <macro name="refbimodindex" outputname="refmodindex"> |
| 255 | <attribute name="module"/> |
| 256 | </macro> |
| 257 | <macro name="refexmodindex" outputname="refmodindex"> |
| 258 | <attribute name="module"/> |
| 259 | </macro> |
| 260 | <macro name="refstmodindex" outputname="refmodindex"> |
| 261 | <attribute name="module"/> |
| 262 | </macro> |
| 263 | |
| 264 | <macro name="bifuncindex"> |
| 265 | <attribute name="name"/> |
| 266 | </macro> |
| 267 | <macro name="exindex"> |
| 268 | <attribute name="name"/> |
| 269 | </macro> |
| 270 | <macro name="obindex"> |
| 271 | <attribute name="name"/> |
| 272 | </macro> |
| 273 | <macro name="kwindex"> |
| 274 | <attribute name="name"/> |
| 275 | </macro> |
| 276 | <macro name="opindex"> |
| 277 | <attribute name="type"/> |
| 278 | </macro> |
| 279 | <macro name="stindex"> |
| 280 | <attribute name="type"/> |
| 281 | </macro> |
| 282 | <macro name="withsubitem"> |
| 283 | <attribute name="text"/> |
| 284 | <content/> |
| 285 | </macro> |
| 286 | <macro name="setindexsubitem"> |
| 287 | <attribute name="text"/> |
| 288 | </macro> |
| 289 | |
| 290 | <!-- Entity management. --> |
Fred Drake | baacc08 | 2001-09-27 15:49:23 +0000 | [diff] [blame] | 291 | <macro name="include" outputname="xi:include"> |
| 292 | <attribute name="href"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 293 | </macro> |
Fred Drake | baacc08 | 2001-09-27 15:49:23 +0000 | [diff] [blame] | 294 | <macro name="input" outputname="xi:include"> |
| 295 | <attribute name="href"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 296 | </macro> |
| 297 | |
| 298 | <!-- Large-scale document structure. --> |
| 299 | <macro name="documentclass"> |
| 300 | <attribute name="classname"/> |
| 301 | </macro> |
| 302 | |
Fred Drake | ce19496 | 2001-03-23 16:29:06 +0000 | [diff] [blame] | 303 | <macro name="usepackage"> |
| 304 | <attribute name="options" optional="yes"/> |
| 305 | <attribute name="pkg"/> |
| 306 | </macro> |
| 307 | |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 308 | <environment name="document" |
| 309 | endcloses="chapter chapter* section section* |
| 310 | subsection subsection* |
| 311 | subsubsection subsubsection* |
Fred Drake | baacc08 | 2001-09-27 15:49:23 +0000 | [diff] [blame] | 312 | paragraph paragraph* subparagraph |
| 313 | subparagraph*"> |
| 314 | <attribute name="xmlns:xi" |
| 315 | >http://www.w3.org/2001/XInclude</attribute> |
| 316 | </environment> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 317 | |
| 318 | <macro name="chapter" |
| 319 | closes="chapter chapter* section section* subsection subsection* |
| 320 | subsubsection subsubsection* |
| 321 | paragraph paragraph* subparagraph subparagraph*"> |
| 322 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 323 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 324 | <child name="title"/> |
| 325 | <content implied="yes"/> |
| 326 | </macro> |
| 327 | <macro name="chapter*" outputname="chapter" |
| 328 | closes="chapter chapter* section section* subsection subsection* |
| 329 | subsubsection subsubsection* |
| 330 | paragraph paragraph* subparagraph subparagraph*"> |
| 331 | <attribute name="numbered">no</attribute> |
| 332 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 333 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 334 | <child name="title"/> |
| 335 | <content implied="yes"/> |
| 336 | </macro> |
| 337 | |
| 338 | <macro name="section" |
| 339 | closes="section section* subsection subsection* |
| 340 | subsubsection subsubsection* |
| 341 | paragraph paragraph* subparagraph subparagraph*"> |
| 342 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 343 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 344 | <child name="title"/> |
| 345 | <content implied="yes"/> |
| 346 | </macro> |
| 347 | <macro name="section*" outputname="section" |
| 348 | closes="section section* subsection subsection* |
| 349 | subsubsection subsubsection* |
| 350 | paragraph paragraph* subparagraph subparagraph*"> |
| 351 | <attribute name="numbered">no</attribute> |
| 352 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 353 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 354 | <child name="title"/> |
| 355 | <content implied="yes"/> |
| 356 | </macro> |
| 357 | |
| 358 | <macro name="subsection" |
| 359 | closes="subsection subsection* subsubsection subsubsection* |
| 360 | paragraph paragraph* subparagraph subparagraph*"> |
| 361 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 362 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 363 | <child name="title"/> |
| 364 | <content implied="yes"/> |
| 365 | </macro> |
| 366 | <macro name="subsection*" outputname="subsection" |
| 367 | closes="subsection subsection* subsubsection subsubsection* |
| 368 | paragraph paragraph* subparagraph subparagraph*"> |
| 369 | <attribute name="numbered">no</attribute> |
| 370 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 371 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 372 | <child name="title"/> |
| 373 | <content implied="yes"/> |
| 374 | </macro> |
| 375 | |
| 376 | <macro name="subsubsection" |
| 377 | closes="subsubsection subsubsection* |
| 378 | paragraph paragraph* subparagraph subparagraph*"> |
| 379 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 380 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 381 | <child name="title"/> |
| 382 | <content implied="yes"/> |
| 383 | </macro> |
| 384 | <macro name="subsubsection*" outputname="subsubsection" |
| 385 | closes="subsubsection subsubsection* |
| 386 | paragraph paragraph* subparagraph subparagraph*"> |
| 387 | <attribute name="numbered">no</attribute> |
| 388 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 389 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 390 | <child name="title"/> |
| 391 | <content implied="yes"/> |
| 392 | </macro> |
| 393 | |
| 394 | <macro name="paragraph" |
| 395 | closes="paragraph paragraph* subparagraph subparagraph*"> |
| 396 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 397 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 398 | <child name="title"/> |
| 399 | <content implied="yes"/> |
| 400 | </macro> |
| 401 | <macro name="paragraph*" outputname="paragraph" |
| 402 | closes="paragraph paragraph* subparagraph subparagraph*"> |
| 403 | <attribute name="numbered">no</attribute> |
| 404 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 405 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 406 | <child name="title"/> |
| 407 | <content implied="yes"/> |
| 408 | </macro> |
| 409 | |
| 410 | <macro name="subparagraph" |
| 411 | closes="subparagraph subparagraph*"> |
| 412 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 413 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 414 | <child name="title"/> |
| 415 | <content implied="yes"/> |
| 416 | </macro> |
| 417 | <macro name="subparagraph*" outputname="subparagraph" |
| 418 | closes="subparagraph subparagraph*"> |
| 419 | <attribute name="numbered">no</attribute> |
| 420 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 421 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 422 | <child name="title"/> |
| 423 | <content implied="yes"/> |
| 424 | </macro> |
| 425 | <macro name="title"> |
| 426 | <content/> |
| 427 | </macro> |
| 428 | |
| 429 | <macro name="appendix" outputname="back-matter" |
| 430 | closes="chapter chapter* section subsection subsubsection |
| 431 | paragraph subparagraph"/> |
| 432 | |
| 433 | <environment name="list" |
| 434 | endcloses="item"> |
| 435 | <attribute name="bullet"/> |
| 436 | <attribute name="init"/> |
| 437 | </environment> |
| 438 | <macro name="item" closes="item"> |
| 439 | <child name="leader" optional="yes"/> |
| 440 | <content implied="yes"/> |
| 441 | </macro> |
| 442 | |
| 443 | <macro name="ref"> |
| 444 | <attribute name="ref"/> |
| 445 | </macro> |
| 446 | |
| 447 | <environment name="description" outputname="descriptionlist" |
| 448 | endcloses="item"/> |
| 449 | |
| 450 | <environment name="enumerate" outputname="enumeration" |
| 451 | endcloses="item"/> |
| 452 | |
| 453 | <environment name="fulllineitems" |
| 454 | endcloses="item"/> |
| 455 | |
| 456 | <environment name="itemize" |
| 457 | endcloses="item"/> |
| 458 | |
| 459 | <environment name="definitions" outputname="definitionlist" |
| 460 | encloses="term"/> |
| 461 | <macro name="term" closes="definition"> |
| 462 | <!-- not really optional, but uses the [] syntax --> |
| 463 | <child name="term" optional="yes"/> |
| 464 | <child name="definition" implied="yes"/> |
| 465 | </macro> |
| 466 | |
Fred Drake | 20931fb | 2001-04-10 19:59:31 +0000 | [diff] [blame] | 467 | <environment name="alltt" outputname="verbatim"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 468 | <environment name="comment" verbatim="yes"/> |
| 469 | <environment name="verbatim" verbatim="yes"/> |
| 470 | <environment name="verbatim*" verbatim="yes"> |
| 471 | <!-- not used anywhere, but it's a standard LaTeXism --> |
| 472 | <attribute name="spaces">visible</attribute> |
| 473 | </environment> |
Fred Drake | baacc08 | 2001-09-27 15:49:23 +0000 | [diff] [blame] | 474 | <macro name="verbatiminput" ouptutname="xi:include"> |
| 475 | <attribute name="parse">text</attribute> |
| 476 | <attribute name="href"/> |
Fred Drake | b6fa789 | 2001-09-27 04:18:39 +0000 | [diff] [blame] | 477 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 478 | |
| 479 | <!-- Table markup. --> |
| 480 | <macro name="hline"/> |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 481 | <environment name="tableii" outputname="table"> |
| 482 | <attribute name="cols">2</attribute> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 483 | <attribute name="colspec"/> |
| 484 | <attribute name="style"/> |
| 485 | <child name="entry"/> |
| 486 | <text> |
| 487 | </text> |
| 488 | <child name="entry"/> |
| 489 | </environment> |
Fred Drake | 2ed27d3 | 2000-11-17 19:05:12 +0000 | [diff] [blame] | 490 | <environment name="longtableii" outputname="table"> |
| 491 | <attribute name="cols">2</attribute> |
| 492 | <attribute name="colspec"/> |
| 493 | <attribute name="style"/> |
| 494 | <child name="entry"/> |
| 495 | <text> |
| 496 | </text> |
| 497 | <child name="entry"/> |
| 498 | </environment> |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 499 | <macro name="lineii" outputname="row"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 500 | <child name="entry"/> |
| 501 | <text> |
| 502 | </text> |
| 503 | <child name="entry"/> |
| 504 | </macro> |
| 505 | |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 506 | <environment name="tableiii" outputname="table"> |
| 507 | <attribute name="cols">3</attribute> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 508 | <attribute name="colspec"/> |
| 509 | <attribute name="style"/> |
| 510 | <child name="entry"/> |
| 511 | <text> |
| 512 | </text> |
| 513 | <child name="entry"/> |
| 514 | <text> |
| 515 | </text> |
| 516 | <child name="entry"/> |
| 517 | </environment> |
Fred Drake | 2ed27d3 | 2000-11-17 19:05:12 +0000 | [diff] [blame] | 518 | <environment name="longtableiii" outputname="table"> |
| 519 | <attribute name="cols">3</attribute> |
| 520 | <attribute name="colspec"/> |
| 521 | <attribute name="style"/> |
| 522 | <child name="entry"/> |
| 523 | <text> |
| 524 | </text> |
| 525 | <child name="entry"/> |
| 526 | <text> |
| 527 | </text> |
| 528 | <child name="entry"/> |
| 529 | </environment> |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 530 | <macro name="lineiii" outputname="row"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 531 | <child name="entry"/> |
| 532 | <text> |
| 533 | </text> |
| 534 | <child name="entry"/> |
| 535 | <text> |
| 536 | </text> |
| 537 | <child name="entry"/> |
| 538 | </macro> |
| 539 | |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 540 | <environment name="tableiv" outputname="table"> |
| 541 | <attribute name="cols">4</attribute> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 542 | <attribute name="colspec"/> |
| 543 | <attribute name="style"/> |
| 544 | <child name="entry"/> |
| 545 | <text> |
| 546 | </text> |
| 547 | <child name="entry"/> |
| 548 | <text> |
| 549 | </text> |
| 550 | <child name="entry"/> |
| 551 | <text> |
| 552 | </text> |
| 553 | <child name="entry"/> |
| 554 | </environment> |
Fred Drake | 2ed27d3 | 2000-11-17 19:05:12 +0000 | [diff] [blame] | 555 | <environment name="longtableiv" outputname="table"> |
| 556 | <attribute name="cols">4</attribute> |
| 557 | <attribute name="colspec"/> |
| 558 | <attribute name="style"/> |
| 559 | <child name="entry"/> |
| 560 | <text> |
| 561 | </text> |
| 562 | <child name="entry"/> |
| 563 | <text> |
| 564 | </text> |
| 565 | <child name="entry"/> |
| 566 | <text> |
| 567 | </text> |
| 568 | <child name="entry"/> |
| 569 | </environment> |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 570 | <macro name="lineiv" outputname="row"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 571 | <child name="entry"/> |
| 572 | <text> |
| 573 | </text> |
| 574 | <child name="entry"/> |
| 575 | <text> |
| 576 | </text> |
| 577 | <child name="entry"/> |
| 578 | <text> |
| 579 | </text> |
| 580 | <child name="entry"/> |
| 581 | </macro> |
| 582 | |
Fred Drake | 29a67ce | 2001-09-25 20:58:13 +0000 | [diff] [blame] | 583 | <environment name="tablev" outputname="table"> |
| 584 | <attribute name="cols">4</attribute> |
| 585 | <attribute name="colspec"/> |
| 586 | <attribute name="style"/> |
| 587 | <child name="entry"/> |
| 588 | <text> |
| 589 | </text> |
| 590 | <child name="entry"/> |
| 591 | <text> |
| 592 | </text> |
| 593 | <child name="entry"/> |
| 594 | <text> |
| 595 | </text> |
| 596 | <child name="entry"/> |
| 597 | </environment> |
| 598 | <environment name="longtablev" outputname="table"> |
| 599 | <attribute name="cols">4</attribute> |
| 600 | <attribute name="colspec"/> |
| 601 | <attribute name="style"/> |
| 602 | <child name="entry"/> |
| 603 | <text> |
| 604 | </text> |
| 605 | <child name="entry"/> |
| 606 | <text> |
| 607 | </text> |
| 608 | <child name="entry"/> |
| 609 | <text> |
| 610 | </text> |
| 611 | <child name="entry"/> |
| 612 | <text> |
| 613 | </text> |
| 614 | <child name="entry"/> |
| 615 | </environment> |
| 616 | <macro name="linev" outputname="row"> |
| 617 | <child name="entry"/> |
| 618 | <text> |
| 619 | </text> |
| 620 | <child name="entry"/> |
| 621 | <text> |
| 622 | </text> |
| 623 | <child name="entry"/> |
| 624 | <text> |
| 625 | </text> |
| 626 | <child name="entry"/> |
| 627 | <text> |
| 628 | </text> |
| 629 | <child name="entry"/> |
| 630 | </macro> |
| 631 | |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 632 | <!-- These are handled at a later translation stage, at least for now. --> |
Fred Drake | 031e222 | 1999-08-02 14:32:11 +0000 | [diff] [blame] | 633 | <macro name="Cpp" outputname=""> |
| 634 | <text>C++</text> |
| 635 | </macro> |
Fred Drake | 3cf4eb4 | 1999-08-26 17:56:47 +0000 | [diff] [blame] | 636 | <macro name="geq" outputname=""> |
| 637 | <entityref name="geq"/> |
| 638 | </macro> |
Fred Drake | 0a650d7 | 2001-07-06 21:13:51 +0000 | [diff] [blame] | 639 | <macro name="infinity" outputname=""> |
| 640 | <entityref name="infin"/> |
| 641 | </macro> |
Fred Drake | 3cf4eb4 | 1999-08-26 17:56:47 +0000 | [diff] [blame] | 642 | <macro name="LaTeX" outputname=""> |
| 643 | <text>LaTeX</text> |
| 644 | </macro> |
Fred Drake | 031e222 | 1999-08-02 14:32:11 +0000 | [diff] [blame] | 645 | <macro name="ldots" outputname=""> |
| 646 | <text>...</text> |
| 647 | </macro> |
Fred Drake | 3cf4eb4 | 1999-08-26 17:56:47 +0000 | [diff] [blame] | 648 | <macro name="leq" outputname=""> |
| 649 | <entityref name="leq"/> |
| 650 | </macro> |
Fred Drake | 0a650d7 | 2001-07-06 21:13:51 +0000 | [diff] [blame] | 651 | <macro name="plusminus" outputname=""> |
| 652 | <entityref name="plusmn"/> |
| 653 | </macro> |
Fred Drake | 3cf4eb4 | 1999-08-26 17:56:47 +0000 | [diff] [blame] | 654 | <macro name="TeX" outputname=""> |
| 655 | <text>TeX</text> |
| 656 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 657 | <macro name="version"/> |
| 658 | |
Fred Drake | ce19496 | 2001-03-23 16:29:06 +0000 | [diff] [blame] | 659 | <!-- Distutils things. --> |
| 660 | <macro name="command"> |
| 661 | <content/> |
| 662 | </macro> |
| 663 | <macro name="option"> |
| 664 | <content/> |
| 665 | </macro> |
| 666 | <macro name="filevar" outputname="var"> |
| 667 | <content/> |
| 668 | </macro> |
| 669 | <macro name="XXX" outputname="editorial-comment"> |
| 670 | <content/> |
| 671 | </macro> |
| 672 | |
Fred Drake | 03e88da | 2001-07-09 15:00:42 +0000 | [diff] [blame] | 673 | <!-- Grammar production lists --> |
| 674 | <environment name="productionlist"> |
| 675 | <attribute name="grammar" optional="yes"/> |
| 676 | </environment> |
| 677 | <macro name="production"> |
| 678 | <attribute name="token"/> |
| 679 | <content/> |
| 680 | </macro> |
Fred Drake | b6fa789 | 2001-09-27 04:18:39 +0000 | [diff] [blame] | 681 | <macro name="token" outputname="grammartoken"> |
| 682 | <content/> |
| 683 | </macro> |
| 684 | <macro name="grammartoken"> |
Fred Drake | 03e88da | 2001-07-09 15:00:42 +0000 | [diff] [blame] | 685 | <content/> |
| 686 | </macro> |
| 687 | <macro name="orgroup"> |
| 688 | <content/> |
| 689 | </macro> |
| 690 | <macro name="oritem"/> |
| 691 | |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 692 | <!-- Misc. --> |
| 693 | <macro name="emph"> |
| 694 | <content/> |
| 695 | </macro> |
| 696 | <macro name="strong"> |
| 697 | <content/> |
| 698 | </macro> |
| 699 | <macro name="textrm"> |
| 700 | <content/> |
| 701 | </macro> |
| 702 | <macro name="texttt"> |
| 703 | <content/> |
| 704 | </macro> |
| 705 | <macro name="code"> |
| 706 | <content/> |
| 707 | </macro> |
| 708 | <macro name="exception"> |
| 709 | <content/> |
| 710 | </macro> |
| 711 | <macro name="keyword"> |
| 712 | <content/> |
| 713 | </macro> |
| 714 | <macro name="samp"> |
| 715 | <content/> |
| 716 | </macro> |
| 717 | <macro name="class"> |
| 718 | <content/> |
| 719 | </macro> |
| 720 | <macro name="cdata"> |
| 721 | <content/> |
| 722 | </macro> |
| 723 | <macro name="cfunction"> |
| 724 | <content/> |
| 725 | </macro> |
| 726 | <macro name="ctype"> |
| 727 | <content/> |
| 728 | </macro> |
| 729 | <macro name="pytype"> |
| 730 | <content/> |
| 731 | </macro> |
| 732 | <macro name="character"> |
| 733 | <content/> |
| 734 | </macro> |
| 735 | <macro name="constant"> |
| 736 | <content/> |
| 737 | </macro> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 738 | <macro name="envvar" outputname="envar"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 739 | <content/> |
| 740 | </macro> |
| 741 | <macro name="file" outputname="filename"> |
| 742 | <content/> |
| 743 | </macro> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 744 | <macro name="filenq" outputname="filename"> |
| 745 | <attribute name="quote">no</attribute> |
| 746 | <content/> |
| 747 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 748 | <macro name="function"> |
| 749 | <content/> |
| 750 | </macro> |
Fred Drake | 44845ba | 2001-07-14 03:10:20 +0000 | [diff] [blame] | 751 | <macro name="kbd" outputname="keysym"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 752 | <content/> |
| 753 | </macro> |
Fred Drake | 29a67ce | 2001-09-25 20:58:13 +0000 | [diff] [blame] | 754 | <macro name="mailheader"> |
| 755 | <content/> |
| 756 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 757 | <macro name="makevar"> |
| 758 | <content/> |
| 759 | </macro> |
| 760 | <macro name="method"> |
| 761 | <content/> |
| 762 | </macro> |
| 763 | <macro name="member"> |
| 764 | <content/> |
| 765 | </macro> |
| 766 | <macro name="mimetype"> |
| 767 | <content/> |
| 768 | </macro> |
| 769 | <macro name="newsgroup"> |
| 770 | <content/> |
| 771 | </macro> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 772 | <macro name="program" outputname="command"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 773 | <content/> |
| 774 | </macro> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 775 | <macro name="programopt" outputname="option"> |
Fred Drake | 91f31ea | 1999-11-09 19:33:24 +0000 | [diff] [blame] | 776 | <content/> |
| 777 | </macro> |
Fred Drake | ce19496 | 2001-03-23 16:29:06 +0000 | [diff] [blame] | 778 | <macro name="longprogramopt" outputname="longoption"> |
| 779 | <content/> |
| 780 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 781 | <macro name="regexp"> |
| 782 | <content/> |
| 783 | </macro> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 784 | <macro name="var"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 785 | <content/> |
| 786 | </macro> |
| 787 | <macro name="email"> |
| 788 | <content/> |
| 789 | </macro> |
Fred Drake | 44835d8 | 2001-07-07 06:00:36 +0000 | [diff] [blame] | 790 | <macro name="ulink"> |
| 791 | <!-- order of the parameters makes this difficult; |
Fred Drake | b6fa789 | 2001-09-27 04:18:39 +0000 | [diff] [blame] | 792 | we'll need to fix it up to <ulink href="...">...</ulink> |
Fred Drake | 44835d8 | 2001-07-07 06:00:36 +0000 | [diff] [blame] | 793 | in docfixer.py. |
| 794 | --> |
| 795 | <child name="text"/> |
| 796 | <child name="href"/> |
| 797 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 798 | <macro name="url"> |
| 799 | <content/> |
| 800 | </macro> |
| 801 | <macro name="footnote"> |
| 802 | <content/> |
| 803 | </macro> |
| 804 | <macro name="dfn" outputname="definedterm"> |
| 805 | <content/> |
| 806 | </macro> |
| 807 | |
| 808 | <macro name="mbox"> |
| 809 | <content/> |
| 810 | </macro> |
| 811 | |
| 812 | <!-- minimal math stuff to get by --> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 813 | <macro name="pi"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 814 | <macro name="sqrt"> |
| 815 | <content/> |
| 816 | </macro> |
| 817 | <macro name="frac" outputname="fraction"> |
| 818 | <child name="numerator"/> |
| 819 | <child name="denominator"/> |
| 820 | </macro> |
| 821 | <macro name="sum"> |
| 822 | <content/> |
| 823 | </macro> |
| 824 | |
| 825 | <!-- Conversions to text; perhaps could be different? There's --> |
| 826 | <!-- no way for a style sheet to work with these this way. --> |
Fred Drake | d95f4e1 | 2000-07-01 06:26:44 +0000 | [diff] [blame] | 827 | <macro name="ABC" outputname=""> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 828 | <text>ABC</text> |
| 829 | </macro> |
| 830 | <macro name="ASCII" outputname=""> |
| 831 | <text>ASCII</text> |
| 832 | </macro> |
| 833 | <macro name="C" outputname=""> |
| 834 | <text>C</text> |
| 835 | </macro> |
| 836 | <macro name="EOF" outputname=""> |
| 837 | <text>EOF</text> |
| 838 | </macro> |
| 839 | <macro name="e" outputname=""> |
| 840 | <text>\</text> |
| 841 | </macro> |
Fred Drake | 031e222 | 1999-08-02 14:32:11 +0000 | [diff] [blame] | 842 | <macro name="NULL" outputname="constant"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 843 | <text>NULL</text> |
| 844 | </macro> |
| 845 | <macro name="POSIX" outputname=""> |
| 846 | <text>POSIX</text> |
| 847 | </macro> |
| 848 | <macro name="UNIX" outputname=""> |
| 849 | <text>Unix</text> |
| 850 | </macro> |
Fred Drake | 0a650d7 | 2001-07-06 21:13:51 +0000 | [diff] [blame] | 851 | <macro name="textasciicircum" outputname=""> |
| 852 | <text>^</text> |
| 853 | </macro> |
Fred Drake | d397f23 | 2000-11-22 16:45:19 +0000 | [diff] [blame] | 854 | <macro name="textasciitilde" outputname=""> |
| 855 | <text>~</text> |
| 856 | </macro> |
Fred Drake | b6fa789 | 2001-09-27 04:18:39 +0000 | [diff] [blame] | 857 | <macro name="textbackslash" outputname=""> |
| 858 | <text>\</text> |
| 859 | </macro> |
Fred Drake | 0a650d7 | 2001-07-06 21:13:51 +0000 | [diff] [blame] | 860 | <macro name="textbar" outputname=""> |
| 861 | <text>|</text> |
| 862 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 863 | |
| 864 | <!-- These will end up disappearing as well! --> |
| 865 | <macro name="catcode" outputname=""/> |
| 866 | <macro name="fi" outputname=""/> |
| 867 | <macro name="ifhtml" outputname=""/> |
| 868 | <macro name="indexname" outputname=""/> |
| 869 | <macro name="labelwidth" outputname=""/> |
| 870 | <macro name="large" outputname=""/> |
| 871 | <macro name="leftmargin" outputname=""/> |
| 872 | <macro name="makeindex" outputname=""/> |
| 873 | <macro name="makemodindex" outputname=""/> |
| 874 | <macro name="maketitle" outputname=""/> |
| 875 | <macro name="noindent" outputname=""/> |
| 876 | <macro name="protect" outputname=""/> |
| 877 | <macro name="renewcommand"> |
| 878 | <attribute name="macro"/> |
| 879 | <attribute name="nargs" optional="yes"/> |
| 880 | <content/> |
| 881 | </macro> |
| 882 | <macro name="tableofcontents" outputname=""/> |
| 883 | <macro name="vspace"> |
| 884 | <attribute name="size"/> |
| 885 | </macro> |
| 886 | </conversion> |