blob: c2f9f0d9200e52d5bfd278d7a2b4813a40a779ef [file] [log] [blame]
Fred Drakebc2285e1999-07-29 22:03:11 +00001<?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 Drake91f31ea1999-11-09 19:33:24 +000037 <macro name="citetitle">
38 <attribute name="href" optional="yes"/>
39 <content/>
40 </macro>
Fred Drakeb6fa7892001-09-27 04:18:39 +000041 <macro name="pep">
42 <attribute name="num"/>
43 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +000044 <macro name="rfc">
45 <attribute name="num"/>
46 </macro>
Fred Drakece194962001-03-23 16:29:06 +000047 <macro name="sectionauthor" outputname="author">
Fred Drakebc2285e1999-07-29 22:03:11 +000048 <attribute name="name"/>
49 <attribute name="email"/>
50 </macro>
Fred Drakece194962001-03-23 16:29:06 +000051 <macro name="author">
52 <attribute name="name"/>
53 </macro>
54 <macro name="authoraddress">
55 <content/>
56 </macro>
Fred Draked397f232000-11-22 16:45:19 +000057 <macro name="shortversion"/>
Fred Drake44835d82001-07-07 06:00:36 +000058 <!-- These are broken: we need to re-order the optional and required
59 parameters, making the optional parameter the content for the
60 element. latex2esis.py is not powerful enough to handle this.
61 -->
Fred Drakebc2285e1999-07-29 22:03:11 +000062 <macro name="versionadded">
Fred Drakebda05562001-04-21 06:00:51 +000063 <attribute name="info" optional="yes"/>
Fred Drakebc2285e1999-07-29 22:03:11 +000064 <attribute name="version"/>
65 </macro>
66 <macro name="versionchanged">
Fred Drakebda05562001-04-21 06:00:51 +000067 <attribute name="info" optional="yes"/>
Fred Drakebc2285e1999-07-29 22:03:11 +000068 <attribute name="version"/>
69 </macro>
70
71 <!-- Module referencing. -->
72 <macro name="refmodule" outputname="module">
73 <attribute name="" optional="yes"/>
74 <attribute name="link">yes</attribute>
75 <content/>
76 </macro>
77
78 <!-- Information units. -->
79 <!-- C things. -->
80 <environment name="cfuncdesc">
81 <attribute name="type"/>
82 <attribute name="name"/>
83 <child name="args"/>
84 </environment>
85 <environment name="ctypedesc">
Fred Draked397f232000-11-22 16:45:19 +000086 <attribute name="tag" optional="yes"/>
Fred Drakebc2285e1999-07-29 22:03:11 +000087 <attribute name="name"/>
88 </environment>
89 <environment name="cvardesc">
90 <attribute name="type"/>
91 <attribute name="name"/>
92 </environment>
93
94 <!-- Python things. -->
95 <macro name="optional">
96 <content/>
97 </macro>
Fred Drake2ed27d32000-11-17 19:05:12 +000098 <macro name="unspecified"/>
99 <macro name="moreargs"/>
Fred Drakebc2285e1999-07-29 22:03:11 +0000100 <environment name="classdesc">
101 <attribute name="name"/>
102 <child name="args"/>
103 </environment>
Fred Drake0a650d72001-07-06 21:13:51 +0000104 <environment name="classdesc*" outputname="classdesc">
105 <attribute name="name"/>
106 </environment>
Fred Drakebc2285e1999-07-29 22:03:11 +0000107 <environment name="datadesc">
108 <attribute name="name"/>
109 </environment>
Fred Drake0a650d72001-07-06 21:13:51 +0000110 <environment name="datadescni" outputname="datadesc">
111 <attribute name="index">no</attribute>
112 <attribute name="name"/>
113 </environment>
Fred Drakece194962001-03-23 16:29:06 +0000114 <macro name="dataline">
115 <attribute name="name"/>
116 </macro>
Fred Drake0a650d72001-07-06 21:13:51 +0000117 <environment name="excclassdesc">
118 <attribute name="name"/>
119 <child name="args"/>
120 </environment>
Fred Drakebc2285e1999-07-29 22:03:11 +0000121 <environment name="excdesc">
122 <attribute name="name"/>
123 </environment>
124
125 <environment name="funcdesc">
126 <attribute name="name"/>
127 <child name="args"/>
128 </environment>
129 <macro name="funcline">
130 <attribute name="name"/>
131 <child name="args"/>
132 </macro>
133 <environment name="funcdescni" outputname="funcdesc">
134 <attribute name="index">no</attribute>
135 <attribute name="name"/>
136 <child name="args"/>
137 </environment>
138 <macro name="funclineni" outputname="funcline">
139 <attribute name="index">no</attribute>
140 <attribute name="name"/>
141 <child name="args"/>
142 </macro>
143
144 <environment name="memberdesc">
145 <attribute name="class" optional="yes"/>
146 <attribute name="name"/>
147 </environment>
148 <environment name="memberdescni" outputname="memberdesc">
149 <attribute name="index">no</attribute>
150 <attribute name="class" optional="yes"/>
151 <attribute name="name"/>
152 </environment>
Fred Drakebda05562001-04-21 06:00:51 +0000153 <macro name="memberline">
154 <attribute name="name"/>
155 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000156
157 <environment name="methoddesc">
158 <attribute name="class" optional="yes"/>
159 <attribute name="name"/>
160 <child name="args"/>
161 </environment>
162 <macro name="methodline">
163 <attribute name="class" optional="yes"/>
164 <attribute name="name"/>
165 <child name="args"/>
166 </macro>
167 <environment name="methoddescni">
168 <attribute name="index">no</attribute>
169 <attribute name="class" optional="yes"/>
170 <attribute name="name"/>
171 <child name="args"/>
172 </environment>
173 <macro name="methodlineni" outputname="methodline">
174 <attribute name="index">no</attribute>
175 <attribute name="class" optional="yes"/>
176 <attribute name="name"/>
177 <child name="args"/>
178 </macro>
179
180 <environment name="opcodedesc">
181 <attribute name="name"/>
182 <attribute name="var"/>
183 </environment>
184
185 <!-- "See also:" sections. -->
186 <macro name="seemodule">
187 <attribute name="ref" optional="yes"/>
188 <attribute name="name"/>
Fred Draked397f232000-11-22 16:45:19 +0000189 <child name="description"/>
190 </macro>
191 <macro name="seepep">
192 <attribute name="number"/>
193 <child name="title"/>
194 <child name="description"/>
195 </macro>
196 <macro name="seerfc">
197 <attribute name="number"/>
198 <child name="title"/>
199 <child name="description"/>
Fred Drakebc2285e1999-07-29 22:03:11 +0000200 </macro>
201 <macro name="seetext">
Fred Draked397f232000-11-22 16:45:19 +0000202 <child name="description"/>
203 </macro>
204 <macro name="seetitle">
205 <attribute name="href" optional="yes"/>
206 <child name="title"/>
207 <child name="description"/>
208 </macro>
209 <macro name="seeurl">
210 <attribute name="href"/>
211 <child name="description"/>
Fred Drakebc2285e1999-07-29 22:03:11 +0000212 </macro>
213
214 <!-- Index-generating markup. -->
215 <macro name="index" outputname="indexterm">
216 <attribute name="term1"/>
217 </macro>
218 <macro name="indexii" outputname="indexterm">
219 <attribute name="term1"/>
220 <attribute name="term2"/>
221 </macro>
222 <macro name="indexiii" outputname="indexterm">
223 <attribute name="term1"/>
224 <attribute name="term2"/>
225 <attribute name="term3"/>
226 </macro>
227 <macro name="indexiv" outputname="indexterm">
228 <attribute name="term1"/>
229 <attribute name="term2"/>
230 <attribute name="term3"/>
231 <attribute name="term4"/>
232 </macro>
233
234 <macro name="ttindex" outputname="indexterm">
235 <attribute name="style">tt</attribute>
236 <attribute name="term1"/>
237 </macro>
238
239 <macro name="refmodindex">
240 <attribute name="module"/>
241 </macro>
242 <macro name="stmodindex">
243 <attribute name="module"/>
244 </macro>
245 <macro name="refbimodindex" outputname="refmodindex">
246 <attribute name="module"/>
247 </macro>
248 <macro name="refexmodindex" outputname="refmodindex">
249 <attribute name="module"/>
250 </macro>
251 <macro name="refstmodindex" outputname="refmodindex">
252 <attribute name="module"/>
253 </macro>
254
255 <macro name="bifuncindex">
256 <attribute name="name"/>
257 </macro>
258 <macro name="exindex">
259 <attribute name="name"/>
260 </macro>
261 <macro name="obindex">
262 <attribute name="name"/>
263 </macro>
264 <macro name="kwindex">
265 <attribute name="name"/>
266 </macro>
267 <macro name="opindex">
268 <attribute name="type"/>
269 </macro>
270 <macro name="stindex">
271 <attribute name="type"/>
272 </macro>
273 <macro name="withsubitem">
274 <attribute name="text"/>
275 <content/>
276 </macro>
277 <macro name="setindexsubitem">
278 <attribute name="text"/>
279 </macro>
280
281 <!-- Entity management. -->
282 <macro name="include">
283 <attribute name="source"/>
284 </macro>
285 <macro name="input">
286 <attribute name="source"/>
287 </macro>
288
289 <!-- Large-scale document structure. -->
290 <macro name="documentclass">
291 <attribute name="classname"/>
292 </macro>
293
Fred Drakece194962001-03-23 16:29:06 +0000294 <macro name="usepackage">
295 <attribute name="options" optional="yes"/>
296 <attribute name="pkg"/>
297 </macro>
298
Fred Drakebc2285e1999-07-29 22:03:11 +0000299 <environment name="document"
300 endcloses="chapter chapter* section section*
301 subsection subsection*
302 subsubsection subsubsection*
303 paragraph paragraph* subparagraph subparagraph*"/>
304
305 <macro name="chapter"
306 closes="chapter chapter* section section* subsection subsection*
307 subsubsection subsubsection*
308 paragraph paragraph* subparagraph subparagraph*">
309 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000310</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000311 <child name="title"/>
312 <content implied="yes"/>
313 </macro>
314 <macro name="chapter*" outputname="chapter"
315 closes="chapter chapter* section section* subsection subsection*
316 subsubsection subsubsection*
317 paragraph paragraph* subparagraph subparagraph*">
318 <attribute name="numbered">no</attribute>
319 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000320</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000321 <child name="title"/>
322 <content implied="yes"/>
323 </macro>
324
325 <macro name="section"
326 closes="section section* subsection subsection*
327 subsubsection subsubsection*
328 paragraph paragraph* subparagraph subparagraph*">
329 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000330</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000331 <child name="title"/>
332 <content implied="yes"/>
333 </macro>
334 <macro name="section*" outputname="section"
335 closes="section section* subsection subsection*
336 subsubsection subsubsection*
337 paragraph paragraph* subparagraph subparagraph*">
338 <attribute name="numbered">no</attribute>
339 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000340</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000341 <child name="title"/>
342 <content implied="yes"/>
343 </macro>
344
345 <macro name="subsection"
346 closes="subsection subsection* subsubsection subsubsection*
347 paragraph paragraph* subparagraph subparagraph*">
348 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000349</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000350 <child name="title"/>
351 <content implied="yes"/>
352 </macro>
353 <macro name="subsection*" outputname="subsection"
354 closes="subsection subsection* subsubsection subsubsection*
355 paragraph paragraph* subparagraph subparagraph*">
356 <attribute name="numbered">no</attribute>
357 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000358</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000359 <child name="title"/>
360 <content implied="yes"/>
361 </macro>
362
363 <macro name="subsubsection"
364 closes="subsubsection subsubsection*
365 paragraph paragraph* subparagraph subparagraph*">
366 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000367</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000368 <child name="title"/>
369 <content implied="yes"/>
370 </macro>
371 <macro name="subsubsection*" outputname="subsubsection"
372 closes="subsubsection subsubsection*
373 paragraph paragraph* subparagraph subparagraph*">
374 <attribute name="numbered">no</attribute>
375 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000376</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000377 <child name="title"/>
378 <content implied="yes"/>
379 </macro>
380
381 <macro name="paragraph"
382 closes="paragraph paragraph* subparagraph subparagraph*">
383 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000384</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000385 <child name="title"/>
386 <content implied="yes"/>
387 </macro>
388 <macro name="paragraph*" outputname="paragraph"
389 closes="paragraph paragraph* subparagraph subparagraph*">
390 <attribute name="numbered">no</attribute>
391 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000392</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000393 <child name="title"/>
394 <content implied="yes"/>
395 </macro>
396
397 <macro name="subparagraph"
398 closes="subparagraph subparagraph*">
399 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000400</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000401 <child name="title"/>
402 <content implied="yes"/>
403 </macro>
404 <macro name="subparagraph*" outputname="subparagraph"
405 closes="subparagraph subparagraph*">
406 <attribute name="numbered">no</attribute>
407 <text>
Fred Drakeecb84f82000-01-20 22:51:14 +0000408</text>
Fred Drakebc2285e1999-07-29 22:03:11 +0000409 <child name="title"/>
410 <content implied="yes"/>
411 </macro>
412 <macro name="title">
413 <content/>
414 </macro>
415
416 <macro name="appendix" outputname="back-matter"
417 closes="chapter chapter* section subsection subsubsection
418 paragraph subparagraph"/>
419
420 <environment name="list"
421 endcloses="item">
422 <attribute name="bullet"/>
423 <attribute name="init"/>
424 </environment>
425 <macro name="item" closes="item">
426 <child name="leader" optional="yes"/>
427 <content implied="yes"/>
428 </macro>
429
430 <macro name="ref">
431 <attribute name="ref"/>
432 </macro>
433
434 <environment name="description" outputname="descriptionlist"
435 endcloses="item"/>
436
437 <environment name="enumerate" outputname="enumeration"
438 endcloses="item"/>
439
440 <environment name="fulllineitems"
441 endcloses="item"/>
442
443 <environment name="itemize"
444 endcloses="item"/>
445
446 <environment name="definitions" outputname="definitionlist"
447 encloses="term"/>
448 <macro name="term" closes="definition">
449 <!-- not really optional, but uses the [] syntax -->
450 <child name="term" optional="yes"/>
451 <child name="definition" implied="yes"/>
452 </macro>
453
Fred Drake20931fb2001-04-10 19:59:31 +0000454 <environment name="alltt" outputname="verbatim"/>
Fred Drakebc2285e1999-07-29 22:03:11 +0000455 <environment name="comment" verbatim="yes"/>
456 <environment name="verbatim" verbatim="yes"/>
457 <environment name="verbatim*" verbatim="yes">
458 <!-- not used anywhere, but it's a standard LaTeXism -->
459 <attribute name="spaces">visible</attribute>
460 </environment>
Fred Drakeb6fa7892001-09-27 04:18:39 +0000461 <macro name="verbatiminput" ouptutname="input">
462 <attribute name="verbatim">yes</attribute>
463 <attribute name="source"/>
464 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000465
466 <!-- Table markup. -->
467 <macro name="hline"/>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000468 <environment name="tableii" outputname="table">
469 <attribute name="cols">2</attribute>
Fred Drakebc2285e1999-07-29 22:03:11 +0000470 <attribute name="colspec"/>
471 <attribute name="style"/>
472 <child name="entry"/>
473 <text>
474 </text>
475 <child name="entry"/>
476 </environment>
Fred Drake2ed27d32000-11-17 19:05:12 +0000477 <environment name="longtableii" outputname="table">
478 <attribute name="cols">2</attribute>
479 <attribute name="colspec"/>
480 <attribute name="style"/>
481 <child name="entry"/>
482 <text>
483 </text>
484 <child name="entry"/>
485 </environment>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000486 <macro name="lineii" outputname="row">
Fred Drakebc2285e1999-07-29 22:03:11 +0000487 <child name="entry"/>
488 <text>
489 </text>
490 <child name="entry"/>
491 </macro>
492
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000493 <environment name="tableiii" outputname="table">
494 <attribute name="cols">3</attribute>
Fred Drakebc2285e1999-07-29 22:03:11 +0000495 <attribute name="colspec"/>
496 <attribute name="style"/>
497 <child name="entry"/>
498 <text>
499 </text>
500 <child name="entry"/>
501 <text>
502 </text>
503 <child name="entry"/>
504 </environment>
Fred Drake2ed27d32000-11-17 19:05:12 +0000505 <environment name="longtableiii" outputname="table">
506 <attribute name="cols">3</attribute>
507 <attribute name="colspec"/>
508 <attribute name="style"/>
509 <child name="entry"/>
510 <text>
511 </text>
512 <child name="entry"/>
513 <text>
514 </text>
515 <child name="entry"/>
516 </environment>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000517 <macro name="lineiii" outputname="row">
Fred Drakebc2285e1999-07-29 22:03:11 +0000518 <child name="entry"/>
519 <text>
520 </text>
521 <child name="entry"/>
522 <text>
523 </text>
524 <child name="entry"/>
525 </macro>
526
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000527 <environment name="tableiv" outputname="table">
528 <attribute name="cols">4</attribute>
Fred Drakebc2285e1999-07-29 22:03:11 +0000529 <attribute name="colspec"/>
530 <attribute name="style"/>
531 <child name="entry"/>
532 <text>
533 </text>
534 <child name="entry"/>
535 <text>
536 </text>
537 <child name="entry"/>
538 <text>
539 </text>
540 <child name="entry"/>
541 </environment>
Fred Drake2ed27d32000-11-17 19:05:12 +0000542 <environment name="longtableiv" outputname="table">
543 <attribute name="cols">4</attribute>
544 <attribute name="colspec"/>
545 <attribute name="style"/>
546 <child name="entry"/>
547 <text>
548 </text>
549 <child name="entry"/>
550 <text>
551 </text>
552 <child name="entry"/>
553 <text>
554 </text>
555 <child name="entry"/>
556 </environment>
Fred Drake2f6ec9c1999-08-03 15:27:37 +0000557 <macro name="lineiv" outputname="row">
Fred Drakebc2285e1999-07-29 22:03:11 +0000558 <child name="entry"/>
559 <text>
560 </text>
561 <child name="entry"/>
562 <text>
563 </text>
564 <child name="entry"/>
565 <text>
566 </text>
567 <child name="entry"/>
568 </macro>
569
Fred Drake29a67ce2001-09-25 20:58:13 +0000570 <environment name="tablev" outputname="table">
571 <attribute name="cols">4</attribute>
572 <attribute name="colspec"/>
573 <attribute name="style"/>
574 <child name="entry"/>
575 <text>
576 </text>
577 <child name="entry"/>
578 <text>
579 </text>
580 <child name="entry"/>
581 <text>
582 </text>
583 <child name="entry"/>
584 </environment>
585 <environment name="longtablev" outputname="table">
586 <attribute name="cols">4</attribute>
587 <attribute name="colspec"/>
588 <attribute name="style"/>
589 <child name="entry"/>
590 <text>
591 </text>
592 <child name="entry"/>
593 <text>
594 </text>
595 <child name="entry"/>
596 <text>
597 </text>
598 <child name="entry"/>
599 <text>
600 </text>
601 <child name="entry"/>
602 </environment>
603 <macro name="linev" outputname="row">
604 <child name="entry"/>
605 <text>
606 </text>
607 <child name="entry"/>
608 <text>
609 </text>
610 <child name="entry"/>
611 <text>
612 </text>
613 <child name="entry"/>
614 <text>
615 </text>
616 <child name="entry"/>
617 </macro>
618
Fred Drakebc2285e1999-07-29 22:03:11 +0000619 <!-- These are handled at a later translation stage, at least for now. -->
Fred Drake031e2221999-08-02 14:32:11 +0000620 <macro name="Cpp" outputname="">
621 <text>C++</text>
622 </macro>
Fred Drake3cf4eb41999-08-26 17:56:47 +0000623 <macro name="geq" outputname="">
624 <entityref name="geq"/>
625 </macro>
Fred Drake0a650d72001-07-06 21:13:51 +0000626 <macro name="infinity" outputname="">
627 <entityref name="infin"/>
628 </macro>
Fred Drake3cf4eb41999-08-26 17:56:47 +0000629 <macro name="LaTeX" outputname="">
630 <text>LaTeX</text>
631 </macro>
Fred Drake031e2221999-08-02 14:32:11 +0000632 <macro name="ldots" outputname="">
633 <text>...</text>
634 </macro>
Fred Drake3cf4eb41999-08-26 17:56:47 +0000635 <macro name="leq" outputname="">
636 <entityref name="leq"/>
637 </macro>
Fred Drake0a650d72001-07-06 21:13:51 +0000638 <macro name="plusminus" outputname="">
639 <entityref name="plusmn"/>
640 </macro>
Fred Drake3cf4eb41999-08-26 17:56:47 +0000641 <macro name="TeX" outputname="">
642 <text>TeX</text>
643 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000644 <macro name="version"/>
645
Fred Drakece194962001-03-23 16:29:06 +0000646 <!-- Distutils things. -->
647 <macro name="command">
648 <content/>
649 </macro>
650 <macro name="option">
651 <content/>
652 </macro>
653 <macro name="filevar" outputname="var">
654 <content/>
655 </macro>
656 <macro name="XXX" outputname="editorial-comment">
657 <content/>
658 </macro>
659
Fred Drake03e88da2001-07-09 15:00:42 +0000660 <!-- Grammar production lists -->
661 <environment name="productionlist">
662 <attribute name="grammar" optional="yes"/>
663 </environment>
664 <macro name="production">
665 <attribute name="token"/>
666 <content/>
667 </macro>
Fred Drakeb6fa7892001-09-27 04:18:39 +0000668 <macro name="token" outputname="grammartoken">
669 <content/>
670 </macro>
671 <macro name="grammartoken">
Fred Drake03e88da2001-07-09 15:00:42 +0000672 <content/>
673 </macro>
674 <macro name="orgroup">
675 <content/>
676 </macro>
677 <macro name="oritem"/>
678
Fred Drakebc2285e1999-07-29 22:03:11 +0000679 <!-- Misc. -->
680 <macro name="emph">
681 <content/>
682 </macro>
683 <macro name="strong">
684 <content/>
685 </macro>
686 <macro name="textrm">
687 <content/>
688 </macro>
689 <macro name="texttt">
690 <content/>
691 </macro>
692 <macro name="code">
693 <content/>
694 </macro>
695 <macro name="exception">
696 <content/>
697 </macro>
698 <macro name="keyword">
699 <content/>
700 </macro>
701 <macro name="samp">
702 <content/>
703 </macro>
704 <macro name="class">
705 <content/>
706 </macro>
707 <macro name="cdata">
708 <content/>
709 </macro>
710 <macro name="cfunction">
711 <content/>
712 </macro>
713 <macro name="ctype">
714 <content/>
715 </macro>
716 <macro name="pytype">
717 <content/>
718 </macro>
719 <macro name="character">
720 <content/>
721 </macro>
722 <macro name="constant">
723 <content/>
724 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000725 <macro name="envvar" outputname="envar">
Fred Drakebc2285e1999-07-29 22:03:11 +0000726 <content/>
727 </macro>
728 <macro name="file" outputname="filename">
729 <content/>
730 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000731 <macro name="filenq" outputname="filename">
732 <attribute name="quote">no</attribute>
733 <content/>
734 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000735 <macro name="function">
736 <content/>
737 </macro>
Fred Drake44845ba2001-07-14 03:10:20 +0000738 <macro name="kbd" outputname="keysym">
Fred Drakebc2285e1999-07-29 22:03:11 +0000739 <content/>
740 </macro>
Fred Drake29a67ce2001-09-25 20:58:13 +0000741 <macro name="mailheader">
742 <content/>
743 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000744 <macro name="makevar">
745 <content/>
746 </macro>
747 <macro name="method">
748 <content/>
749 </macro>
750 <macro name="member">
751 <content/>
752 </macro>
753 <macro name="mimetype">
754 <content/>
755 </macro>
756 <macro name="newsgroup">
757 <content/>
758 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000759 <macro name="program" outputname="command">
Fred Drakebc2285e1999-07-29 22:03:11 +0000760 <content/>
761 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000762 <macro name="programopt" outputname="option">
Fred Drake91f31ea1999-11-09 19:33:24 +0000763 <content/>
764 </macro>
Fred Drakece194962001-03-23 16:29:06 +0000765 <macro name="longprogramopt" outputname="longoption">
766 <content/>
767 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000768 <macro name="regexp">
769 <content/>
770 </macro>
Fred Drake8a3b4491999-11-23 21:48:41 +0000771 <macro name="var">
Fred Drakebc2285e1999-07-29 22:03:11 +0000772 <content/>
773 </macro>
774 <macro name="email">
775 <content/>
776 </macro>
Fred Drake44835d82001-07-07 06:00:36 +0000777 <macro name="ulink">
778 <!-- order of the parameters makes this difficult;
Fred Drakeb6fa7892001-09-27 04:18:39 +0000779 we'll need to fix it up to <ulink href="...">...</ulink>
Fred Drake44835d82001-07-07 06:00:36 +0000780 in docfixer.py.
781 -->
782 <child name="text"/>
783 <child name="href"/>
784 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000785 <macro name="url">
786 <content/>
787 </macro>
788 <macro name="footnote">
789 <content/>
790 </macro>
791 <macro name="dfn" outputname="definedterm">
792 <content/>
793 </macro>
794
795 <macro name="mbox">
796 <content/>
797 </macro>
798
799 <!-- minimal math stuff to get by -->
Fred Drake8a3b4491999-11-23 21:48:41 +0000800 <macro name="pi"/>
Fred Drakebc2285e1999-07-29 22:03:11 +0000801 <macro name="sqrt">
802 <content/>
803 </macro>
804 <macro name="frac" outputname="fraction">
805 <child name="numerator"/>
806 <child name="denominator"/>
807 </macro>
808 <macro name="sum">
809 <content/>
810 </macro>
811
812 <!-- Conversions to text; perhaps could be different? There's -->
813 <!-- no way for a style sheet to work with these this way. -->
Fred Draked95f4e12000-07-01 06:26:44 +0000814 <macro name="ABC" outputname="">
Fred Drakebc2285e1999-07-29 22:03:11 +0000815 <text>ABC</text>
816 </macro>
817 <macro name="ASCII" outputname="">
818 <text>ASCII</text>
819 </macro>
820 <macro name="C" outputname="">
821 <text>C</text>
822 </macro>
823 <macro name="EOF" outputname="">
824 <text>EOF</text>
825 </macro>
826 <macro name="e" outputname="">
827 <text>\</text>
828 </macro>
Fred Drake031e2221999-08-02 14:32:11 +0000829 <macro name="NULL" outputname="constant">
Fred Drakebc2285e1999-07-29 22:03:11 +0000830 <text>NULL</text>
831 </macro>
832 <macro name="POSIX" outputname="">
833 <text>POSIX</text>
834 </macro>
835 <macro name="UNIX" outputname="">
836 <text>Unix</text>
837 </macro>
Fred Drake0a650d72001-07-06 21:13:51 +0000838 <macro name="textasciicircum" outputname="">
839 <text>^</text>
840 </macro>
Fred Draked397f232000-11-22 16:45:19 +0000841 <macro name="textasciitilde" outputname="">
842 <text>~</text>
843 </macro>
Fred Drakeb6fa7892001-09-27 04:18:39 +0000844 <macro name="textbackslash" outputname="">
845 <text>\</text>
846 </macro>
Fred Drake0a650d72001-07-06 21:13:51 +0000847 <macro name="textbar" outputname="">
848 <text>|</text>
849 </macro>
Fred Drakebc2285e1999-07-29 22:03:11 +0000850
851 <!-- These will end up disappearing as well! -->
852 <macro name="catcode" outputname=""/>
853 <macro name="fi" outputname=""/>
854 <macro name="ifhtml" outputname=""/>
855 <macro name="indexname" outputname=""/>
856 <macro name="labelwidth" outputname=""/>
857 <macro name="large" outputname=""/>
858 <macro name="leftmargin" outputname=""/>
859 <macro name="makeindex" outputname=""/>
860 <macro name="makemodindex" outputname=""/>
861 <macro name="maketitle" outputname=""/>
862 <macro name="noindent" outputname=""/>
863 <macro name="protect" outputname=""/>
864 <macro name="renewcommand">
865 <attribute name="macro"/>
866 <attribute name="nargs" optional="yes"/>
867 <content/>
868 </macro>
869 <macro name="tableofcontents" outputname=""/>
870 <macro name="vspace">
871 <attribute name="size"/>
872 </macro>
873</conversion>