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> |
| 37 | <macro name="rfc"> |
| 38 | <attribute name="num"/> |
| 39 | </macro> |
| 40 | <macro name="sectionauthor"> |
| 41 | <attribute name="name"/> |
| 42 | <attribute name="email"/> |
| 43 | </macro> |
| 44 | <macro name="versionadded"> |
| 45 | <attribute name="version"/> |
| 46 | </macro> |
| 47 | <macro name="versionchanged"> |
| 48 | <attribute name="version"/> |
| 49 | </macro> |
| 50 | |
| 51 | <!-- Module referencing. --> |
| 52 | <macro name="refmodule" outputname="module"> |
| 53 | <attribute name="" optional="yes"/> |
| 54 | <attribute name="link">yes</attribute> |
| 55 | <content/> |
| 56 | </macro> |
| 57 | |
| 58 | <!-- Information units. --> |
| 59 | <!-- C things. --> |
| 60 | <environment name="cfuncdesc"> |
| 61 | <attribute name="type"/> |
| 62 | <attribute name="name"/> |
| 63 | <child name="args"/> |
| 64 | </environment> |
| 65 | <environment name="ctypedesc"> |
| 66 | <attribute name="name"/> |
| 67 | </environment> |
| 68 | <environment name="cvardesc"> |
| 69 | <attribute name="type"/> |
| 70 | <attribute name="name"/> |
| 71 | </environment> |
| 72 | |
| 73 | <!-- Python things. --> |
| 74 | <macro name="optional"> |
| 75 | <content/> |
| 76 | </macro> |
| 77 | <environment name="classdesc"> |
| 78 | <attribute name="name"/> |
| 79 | <child name="args"/> |
| 80 | </environment> |
| 81 | <environment name="datadesc"> |
| 82 | <attribute name="name"/> |
| 83 | </environment> |
| 84 | <environment name="excdesc"> |
| 85 | <attribute name="name"/> |
| 86 | </environment> |
| 87 | |
| 88 | <environment name="funcdesc"> |
| 89 | <attribute name="name"/> |
| 90 | <child name="args"/> |
| 91 | </environment> |
| 92 | <macro name="funcline"> |
| 93 | <attribute name="name"/> |
| 94 | <child name="args"/> |
| 95 | </macro> |
| 96 | <environment name="funcdescni" outputname="funcdesc"> |
| 97 | <attribute name="index">no</attribute> |
| 98 | <attribute name="name"/> |
| 99 | <child name="args"/> |
| 100 | </environment> |
| 101 | <macro name="funclineni" outputname="funcline"> |
| 102 | <attribute name="index">no</attribute> |
| 103 | <attribute name="name"/> |
| 104 | <child name="args"/> |
| 105 | </macro> |
| 106 | |
| 107 | <environment name="memberdesc"> |
| 108 | <attribute name="class" optional="yes"/> |
| 109 | <attribute name="name"/> |
| 110 | </environment> |
| 111 | <environment name="memberdescni" outputname="memberdesc"> |
| 112 | <attribute name="index">no</attribute> |
| 113 | <attribute name="class" optional="yes"/> |
| 114 | <attribute name="name"/> |
| 115 | </environment> |
| 116 | |
| 117 | <environment name="methoddesc"> |
| 118 | <attribute name="class" optional="yes"/> |
| 119 | <attribute name="name"/> |
| 120 | <child name="args"/> |
| 121 | </environment> |
| 122 | <macro name="methodline"> |
| 123 | <attribute name="class" optional="yes"/> |
| 124 | <attribute name="name"/> |
| 125 | <child name="args"/> |
| 126 | </macro> |
| 127 | <environment name="methoddescni"> |
| 128 | <attribute name="index">no</attribute> |
| 129 | <attribute name="class" optional="yes"/> |
| 130 | <attribute name="name"/> |
| 131 | <child name="args"/> |
| 132 | </environment> |
| 133 | <macro name="methodlineni" outputname="methodline"> |
| 134 | <attribute name="index">no</attribute> |
| 135 | <attribute name="class" optional="yes"/> |
| 136 | <attribute name="name"/> |
| 137 | <child name="args"/> |
| 138 | </macro> |
| 139 | |
| 140 | <environment name="opcodedesc"> |
| 141 | <attribute name="name"/> |
| 142 | <attribute name="var"/> |
| 143 | </environment> |
| 144 | |
| 145 | <!-- "See also:" sections. --> |
| 146 | <macro name="seemodule"> |
| 147 | <attribute name="ref" optional="yes"/> |
| 148 | <attribute name="name"/> |
| 149 | <content/> |
| 150 | </macro> |
| 151 | <macro name="seetext"> |
| 152 | <content/> |
| 153 | </macro> |
| 154 | |
| 155 | <!-- Index-generating markup. --> |
| 156 | <macro name="index" outputname="indexterm"> |
| 157 | <attribute name="term1"/> |
| 158 | </macro> |
| 159 | <macro name="indexii" outputname="indexterm"> |
| 160 | <attribute name="term1"/> |
| 161 | <attribute name="term2"/> |
| 162 | </macro> |
| 163 | <macro name="indexiii" outputname="indexterm"> |
| 164 | <attribute name="term1"/> |
| 165 | <attribute name="term2"/> |
| 166 | <attribute name="term3"/> |
| 167 | </macro> |
| 168 | <macro name="indexiv" outputname="indexterm"> |
| 169 | <attribute name="term1"/> |
| 170 | <attribute name="term2"/> |
| 171 | <attribute name="term3"/> |
| 172 | <attribute name="term4"/> |
| 173 | </macro> |
| 174 | |
| 175 | <macro name="ttindex" outputname="indexterm"> |
| 176 | <attribute name="style">tt</attribute> |
| 177 | <attribute name="term1"/> |
| 178 | </macro> |
| 179 | |
| 180 | <macro name="refmodindex"> |
| 181 | <attribute name="module"/> |
| 182 | </macro> |
| 183 | <macro name="stmodindex"> |
| 184 | <attribute name="module"/> |
| 185 | </macro> |
| 186 | <macro name="refbimodindex" outputname="refmodindex"> |
| 187 | <attribute name="module"/> |
| 188 | </macro> |
| 189 | <macro name="refexmodindex" outputname="refmodindex"> |
| 190 | <attribute name="module"/> |
| 191 | </macro> |
| 192 | <macro name="refstmodindex" outputname="refmodindex"> |
| 193 | <attribute name="module"/> |
| 194 | </macro> |
| 195 | |
| 196 | <macro name="bifuncindex"> |
| 197 | <attribute name="name"/> |
| 198 | </macro> |
| 199 | <macro name="exindex"> |
| 200 | <attribute name="name"/> |
| 201 | </macro> |
| 202 | <macro name="obindex"> |
| 203 | <attribute name="name"/> |
| 204 | </macro> |
| 205 | <macro name="kwindex"> |
| 206 | <attribute name="name"/> |
| 207 | </macro> |
| 208 | <macro name="opindex"> |
| 209 | <attribute name="type"/> |
| 210 | </macro> |
| 211 | <macro name="stindex"> |
| 212 | <attribute name="type"/> |
| 213 | </macro> |
| 214 | <macro name="withsubitem"> |
| 215 | <attribute name="text"/> |
| 216 | <content/> |
| 217 | </macro> |
| 218 | <macro name="setindexsubitem"> |
| 219 | <attribute name="text"/> |
| 220 | </macro> |
| 221 | |
| 222 | <!-- Entity management. --> |
| 223 | <macro name="include"> |
| 224 | <attribute name="source"/> |
| 225 | </macro> |
| 226 | <macro name="input"> |
| 227 | <attribute name="source"/> |
| 228 | </macro> |
| 229 | |
| 230 | <!-- Large-scale document structure. --> |
| 231 | <macro name="documentclass"> |
| 232 | <attribute name="classname"/> |
| 233 | </macro> |
| 234 | |
| 235 | <environment name="document" |
| 236 | endcloses="chapter chapter* section section* |
| 237 | subsection subsection* |
| 238 | subsubsection subsubsection* |
| 239 | paragraph paragraph* subparagraph subparagraph*"/> |
| 240 | |
| 241 | <macro name="chapter" |
| 242 | closes="chapter chapter* section section* subsection subsection* |
| 243 | subsubsection subsubsection* |
| 244 | paragraph paragraph* subparagraph subparagraph*"> |
| 245 | <text> |
| 246 | </text> |
| 247 | <child name="title"/> |
| 248 | <content implied="yes"/> |
| 249 | </macro> |
| 250 | <macro name="chapter*" outputname="chapter" |
| 251 | closes="chapter chapter* section section* subsection subsection* |
| 252 | subsubsection subsubsection* |
| 253 | paragraph paragraph* subparagraph subparagraph*"> |
| 254 | <attribute name="numbered">no</attribute> |
| 255 | <text> |
| 256 | </text> |
| 257 | <child name="title"/> |
| 258 | <content implied="yes"/> |
| 259 | </macro> |
| 260 | |
| 261 | <macro name="section" |
| 262 | closes="section section* subsection subsection* |
| 263 | subsubsection subsubsection* |
| 264 | paragraph paragraph* subparagraph subparagraph*"> |
| 265 | <text> |
| 266 | </text> |
| 267 | <child name="title"/> |
| 268 | <content implied="yes"/> |
| 269 | </macro> |
| 270 | <macro name="section*" outputname="section" |
| 271 | closes="section section* subsection subsection* |
| 272 | subsubsection subsubsection* |
| 273 | paragraph paragraph* subparagraph subparagraph*"> |
| 274 | <attribute name="numbered">no</attribute> |
| 275 | <text> |
| 276 | </text> |
| 277 | <child name="title"/> |
| 278 | <content implied="yes"/> |
| 279 | </macro> |
| 280 | |
| 281 | <macro name="subsection" |
| 282 | closes="subsection subsection* subsubsection subsubsection* |
| 283 | paragraph paragraph* subparagraph subparagraph*"> |
| 284 | <text> |
| 285 | </text> |
| 286 | <child name="title"/> |
| 287 | <content implied="yes"/> |
| 288 | </macro> |
| 289 | <macro name="subsection*" outputname="subsection" |
| 290 | closes="subsection subsection* subsubsection subsubsection* |
| 291 | paragraph paragraph* subparagraph subparagraph*"> |
| 292 | <attribute name="numbered">no</attribute> |
| 293 | <text> |
| 294 | </text> |
| 295 | <child name="title"/> |
| 296 | <content implied="yes"/> |
| 297 | </macro> |
| 298 | |
| 299 | <macro name="subsubsection" |
| 300 | closes="subsubsection subsubsection* |
| 301 | paragraph paragraph* subparagraph subparagraph*"> |
| 302 | <text> |
| 303 | </text> |
| 304 | <child name="title"/> |
| 305 | <content implied="yes"/> |
| 306 | </macro> |
| 307 | <macro name="subsubsection*" outputname="subsubsection" |
| 308 | closes="subsubsection subsubsection* |
| 309 | paragraph paragraph* subparagraph subparagraph*"> |
| 310 | <attribute name="numbered">no</attribute> |
| 311 | <text> |
| 312 | </text> |
| 313 | <child name="title"/> |
| 314 | <content implied="yes"/> |
| 315 | </macro> |
| 316 | |
| 317 | <macro name="paragraph" |
| 318 | closes="paragraph paragraph* subparagraph subparagraph*"> |
| 319 | <text> |
| 320 | </text> |
| 321 | <child name="title"/> |
| 322 | <content implied="yes"/> |
| 323 | </macro> |
| 324 | <macro name="paragraph*" outputname="paragraph" |
| 325 | closes="paragraph paragraph* subparagraph subparagraph*"> |
| 326 | <attribute name="numbered">no</attribute> |
| 327 | <text> |
| 328 | </text> |
| 329 | <child name="title"/> |
| 330 | <content implied="yes"/> |
| 331 | </macro> |
| 332 | |
| 333 | <macro name="subparagraph" |
| 334 | closes="subparagraph subparagraph*"> |
| 335 | <text> |
| 336 | </text> |
| 337 | <child name="title"/> |
| 338 | <content implied="yes"/> |
| 339 | </macro> |
| 340 | <macro name="subparagraph*" outputname="subparagraph" |
| 341 | closes="subparagraph subparagraph*"> |
| 342 | <attribute name="numbered">no</attribute> |
| 343 | <text> |
| 344 | </text> |
| 345 | <child name="title"/> |
| 346 | <content implied="yes"/> |
| 347 | </macro> |
| 348 | <macro name="title"> |
| 349 | <content/> |
| 350 | </macro> |
| 351 | |
| 352 | <macro name="appendix" outputname="back-matter" |
| 353 | closes="chapter chapter* section subsection subsubsection |
| 354 | paragraph subparagraph"/> |
| 355 | |
| 356 | <environment name="list" |
| 357 | endcloses="item"> |
| 358 | <attribute name="bullet"/> |
| 359 | <attribute name="init"/> |
| 360 | </environment> |
| 361 | <macro name="item" closes="item"> |
| 362 | <child name="leader" optional="yes"/> |
| 363 | <content implied="yes"/> |
| 364 | </macro> |
| 365 | |
| 366 | <macro name="ref"> |
| 367 | <attribute name="ref"/> |
| 368 | </macro> |
| 369 | |
| 370 | <environment name="description" outputname="descriptionlist" |
| 371 | endcloses="item"/> |
| 372 | |
| 373 | <environment name="enumerate" outputname="enumeration" |
| 374 | endcloses="item"/> |
| 375 | |
| 376 | <environment name="fulllineitems" |
| 377 | endcloses="item"/> |
| 378 | |
| 379 | <environment name="itemize" |
| 380 | endcloses="item"/> |
| 381 | |
| 382 | <environment name="definitions" outputname="definitionlist" |
| 383 | encloses="term"/> |
| 384 | <macro name="term" closes="definition"> |
| 385 | <!-- not really optional, but uses the [] syntax --> |
| 386 | <child name="term" optional="yes"/> |
| 387 | <child name="definition" implied="yes"/> |
| 388 | </macro> |
| 389 | |
| 390 | <environment name="comment" verbatim="yes"/> |
| 391 | <environment name="verbatim" verbatim="yes"/> |
| 392 | <environment name="verbatim*" verbatim="yes"> |
| 393 | <!-- not used anywhere, but it's a standard LaTeXism --> |
| 394 | <attribute name="spaces">visible</attribute> |
| 395 | </environment> |
| 396 | |
| 397 | <!-- Table markup. --> |
| 398 | <macro name="hline"/> |
| 399 | <environment name="tableii"> |
| 400 | <attribute name="colspec"/> |
| 401 | <attribute name="style"/> |
| 402 | <child name="entry"/> |
| 403 | <text> |
| 404 | </text> |
| 405 | <child name="entry"/> |
| 406 | </environment> |
| 407 | <macro name="lineii"> |
| 408 | <child name="entry"/> |
| 409 | <text> |
| 410 | </text> |
| 411 | <child name="entry"/> |
| 412 | </macro> |
| 413 | |
| 414 | <environment name="tableiii"> |
| 415 | <attribute name="colspec"/> |
| 416 | <attribute name="style"/> |
| 417 | <child name="entry"/> |
| 418 | <text> |
| 419 | </text> |
| 420 | <child name="entry"/> |
| 421 | <text> |
| 422 | </text> |
| 423 | <child name="entry"/> |
| 424 | </environment> |
| 425 | <macro name="lineiii"> |
| 426 | <child name="entry"/> |
| 427 | <text> |
| 428 | </text> |
| 429 | <child name="entry"/> |
| 430 | <text> |
| 431 | </text> |
| 432 | <child name="entry"/> |
| 433 | </macro> |
| 434 | |
| 435 | <environment name="tableiv"> |
| 436 | <attribute name="colspec"/> |
| 437 | <attribute name="style"/> |
| 438 | <child name="entry"/> |
| 439 | <text> |
| 440 | </text> |
| 441 | <child name="entry"/> |
| 442 | <text> |
| 443 | </text> |
| 444 | <child name="entry"/> |
| 445 | <text> |
| 446 | </text> |
| 447 | <child name="entry"/> |
| 448 | </environment> |
| 449 | <macro name="lineiv"> |
| 450 | <child name="entry"/> |
| 451 | <text> |
| 452 | </text> |
| 453 | <child name="entry"/> |
| 454 | <text> |
| 455 | </text> |
| 456 | <child name="entry"/> |
| 457 | <text> |
| 458 | </text> |
| 459 | <child name="entry"/> |
| 460 | </macro> |
| 461 | |
| 462 | <!-- These are handled at a later translation stage, at least for now. --> |
| 463 | <macro name="Cpp"/> |
| 464 | <macro name="geq"/> |
| 465 | <macro name="LaTeX"/> |
| 466 | <macro name="ldots"/> |
| 467 | <macro name="leq"/> |
| 468 | <macro name="TeX"/> |
| 469 | <macro name="version"/> |
| 470 | |
| 471 | <!-- Misc. --> |
| 472 | <macro name="emph"> |
| 473 | <content/> |
| 474 | </macro> |
| 475 | <macro name="strong"> |
| 476 | <content/> |
| 477 | </macro> |
| 478 | <macro name="textrm"> |
| 479 | <content/> |
| 480 | </macro> |
| 481 | <macro name="texttt"> |
| 482 | <content/> |
| 483 | </macro> |
| 484 | <macro name="code"> |
| 485 | <content/> |
| 486 | </macro> |
| 487 | <macro name="exception"> |
| 488 | <content/> |
| 489 | </macro> |
| 490 | <macro name="keyword"> |
| 491 | <content/> |
| 492 | </macro> |
| 493 | <macro name="samp"> |
| 494 | <content/> |
| 495 | </macro> |
| 496 | <macro name="class"> |
| 497 | <content/> |
| 498 | </macro> |
| 499 | <macro name="cdata"> |
| 500 | <content/> |
| 501 | </macro> |
| 502 | <macro name="cfunction"> |
| 503 | <content/> |
| 504 | </macro> |
| 505 | <macro name="ctype"> |
| 506 | <content/> |
| 507 | </macro> |
| 508 | <macro name="pytype"> |
| 509 | <content/> |
| 510 | </macro> |
| 511 | <macro name="character"> |
| 512 | <content/> |
| 513 | </macro> |
| 514 | <macro name="constant"> |
| 515 | <content/> |
| 516 | </macro> |
| 517 | <macro name="envvar"> |
| 518 | <content/> |
| 519 | </macro> |
| 520 | <macro name="file" outputname="filename"> |
| 521 | <content/> |
| 522 | </macro> |
| 523 | <macro name="function"> |
| 524 | <content/> |
| 525 | </macro> |
| 526 | <macro name="kbd"> |
| 527 | <content/> |
| 528 | </macro> |
| 529 | <macro name="makevar"> |
| 530 | <content/> |
| 531 | </macro> |
| 532 | <macro name="method"> |
| 533 | <content/> |
| 534 | </macro> |
| 535 | <macro name="member"> |
| 536 | <content/> |
| 537 | </macro> |
| 538 | <macro name="mimetype"> |
| 539 | <content/> |
| 540 | </macro> |
| 541 | <macro name="newsgroup"> |
| 542 | <content/> |
| 543 | </macro> |
| 544 | <macro name="program"> |
| 545 | <content/> |
| 546 | </macro> |
| 547 | <macro name="regexp"> |
| 548 | <content/> |
| 549 | </macro> |
| 550 | <macro name="var"> |
| 551 | <content/> |
| 552 | </macro> |
| 553 | <macro name="email"> |
| 554 | <content/> |
| 555 | </macro> |
| 556 | <macro name="url"> |
| 557 | <content/> |
| 558 | </macro> |
| 559 | <macro name="footnote"> |
| 560 | <content/> |
| 561 | </macro> |
| 562 | <macro name="dfn" outputname="definedterm"> |
| 563 | <content/> |
| 564 | </macro> |
| 565 | |
| 566 | <macro name="mbox"> |
| 567 | <content/> |
| 568 | </macro> |
| 569 | |
| 570 | <!-- minimal math stuff to get by --> |
| 571 | <macro name="sqrt"> |
| 572 | <content/> |
| 573 | </macro> |
| 574 | <macro name="frac" outputname="fraction"> |
| 575 | <child name="numerator"/> |
| 576 | <child name="denominator"/> |
| 577 | </macro> |
| 578 | <macro name="sum"> |
| 579 | <content/> |
| 580 | </macro> |
| 581 | |
| 582 | <!-- Conversions to text; perhaps could be different? There's --> |
| 583 | <!-- no way for a style sheet to work with these this way. --> |
| 584 | <macro name="ABC" outputname="" |
| 585 | <text>ABC</text> |
| 586 | </macro> |
| 587 | <macro name="ASCII" outputname=""> |
| 588 | <text>ASCII</text> |
| 589 | </macro> |
| 590 | <macro name="C" outputname=""> |
| 591 | <text>C</text> |
| 592 | </macro> |
| 593 | <macro name="EOF" outputname=""> |
| 594 | <text>EOF</text> |
| 595 | </macro> |
| 596 | <macro name="e" outputname=""> |
| 597 | <text>\</text> |
| 598 | </macro> |
| 599 | <macro name="NULL" outputname=""> |
| 600 | <text>NULL</text> |
| 601 | </macro> |
| 602 | <macro name="POSIX" outputname=""> |
| 603 | <text>POSIX</text> |
| 604 | </macro> |
| 605 | <macro name="UNIX" outputname=""> |
| 606 | <text>Unix</text> |
| 607 | </macro> |
| 608 | |
| 609 | <!-- These will end up disappearing as well! --> |
| 610 | <macro name="catcode" outputname=""/> |
| 611 | <macro name="fi" outputname=""/> |
| 612 | <macro name="ifhtml" outputname=""/> |
| 613 | <macro name="indexname" outputname=""/> |
| 614 | <macro name="labelwidth" outputname=""/> |
| 615 | <macro name="large" outputname=""/> |
| 616 | <macro name="leftmargin" outputname=""/> |
| 617 | <macro name="makeindex" outputname=""/> |
| 618 | <macro name="makemodindex" outputname=""/> |
| 619 | <macro name="maketitle" outputname=""/> |
| 620 | <macro name="noindent" outputname=""/> |
| 621 | <macro name="protect" outputname=""/> |
| 622 | <macro name="renewcommand"> |
| 623 | <attribute name="macro"/> |
| 624 | <attribute name="nargs" optional="yes"/> |
| 625 | <content/> |
| 626 | </macro> |
| 627 | <macro name="tableofcontents" outputname=""/> |
| 628 | <macro name="vspace"> |
| 629 | <attribute name="size"/> |
| 630 | </macro> |
| 631 | </conversion> |