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. --> |
Fred Drake | 95e33f0 | 2001-11-30 19:06:18 +0000 | [diff] [blame] | 193 | <environment name="seealso*" outputname="seealso"> |
| 194 | <attribute name="sidebar">no</attribute> |
| 195 | </environment> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 196 | <macro name="seemodule"> |
Fred Drake | 876389e | 2001-09-27 17:01:59 +0000 | [diff] [blame] | 197 | <!-- this causes the optional parameter to \seemodule to be |
| 198 | discarded --> |
Fred Drake | baacc08 | 2001-09-27 15:49:23 +0000 | [diff] [blame] | 199 | <attribute name="" optional="yes"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 200 | <attribute name="name"/> |
Fred Drake | d397f23 | 2000-11-22 16:45:19 +0000 | [diff] [blame] | 201 | <child name="description"/> |
| 202 | </macro> |
| 203 | <macro name="seepep"> |
| 204 | <attribute name="number"/> |
| 205 | <child name="title"/> |
| 206 | <child name="description"/> |
| 207 | </macro> |
| 208 | <macro name="seerfc"> |
| 209 | <attribute name="number"/> |
| 210 | <child name="title"/> |
| 211 | <child name="description"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 212 | </macro> |
| 213 | <macro name="seetext"> |
Fred Drake | d397f23 | 2000-11-22 16:45:19 +0000 | [diff] [blame] | 214 | <child name="description"/> |
| 215 | </macro> |
| 216 | <macro name="seetitle"> |
| 217 | <attribute name="href" optional="yes"/> |
| 218 | <child name="title"/> |
| 219 | <child name="description"/> |
| 220 | </macro> |
| 221 | <macro name="seeurl"> |
| 222 | <attribute name="href"/> |
| 223 | <child name="description"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 224 | </macro> |
| 225 | |
| 226 | <!-- Index-generating markup. --> |
| 227 | <macro name="index" outputname="indexterm"> |
| 228 | <attribute name="term1"/> |
| 229 | </macro> |
| 230 | <macro name="indexii" outputname="indexterm"> |
| 231 | <attribute name="term1"/> |
| 232 | <attribute name="term2"/> |
| 233 | </macro> |
| 234 | <macro name="indexiii" outputname="indexterm"> |
| 235 | <attribute name="term1"/> |
| 236 | <attribute name="term2"/> |
| 237 | <attribute name="term3"/> |
| 238 | </macro> |
| 239 | <macro name="indexiv" outputname="indexterm"> |
| 240 | <attribute name="term1"/> |
| 241 | <attribute name="term2"/> |
| 242 | <attribute name="term3"/> |
| 243 | <attribute name="term4"/> |
| 244 | </macro> |
| 245 | |
| 246 | <macro name="ttindex" outputname="indexterm"> |
| 247 | <attribute name="style">tt</attribute> |
| 248 | <attribute name="term1"/> |
| 249 | </macro> |
| 250 | |
| 251 | <macro name="refmodindex"> |
| 252 | <attribute name="module"/> |
| 253 | </macro> |
| 254 | <macro name="stmodindex"> |
| 255 | <attribute name="module"/> |
| 256 | </macro> |
| 257 | <macro name="refbimodindex" outputname="refmodindex"> |
| 258 | <attribute name="module"/> |
| 259 | </macro> |
| 260 | <macro name="refexmodindex" outputname="refmodindex"> |
| 261 | <attribute name="module"/> |
| 262 | </macro> |
| 263 | <macro name="refstmodindex" outputname="refmodindex"> |
| 264 | <attribute name="module"/> |
| 265 | </macro> |
| 266 | |
| 267 | <macro name="bifuncindex"> |
| 268 | <attribute name="name"/> |
| 269 | </macro> |
| 270 | <macro name="exindex"> |
| 271 | <attribute name="name"/> |
| 272 | </macro> |
| 273 | <macro name="obindex"> |
| 274 | <attribute name="name"/> |
| 275 | </macro> |
| 276 | <macro name="kwindex"> |
| 277 | <attribute name="name"/> |
| 278 | </macro> |
| 279 | <macro name="opindex"> |
| 280 | <attribute name="type"/> |
| 281 | </macro> |
| 282 | <macro name="stindex"> |
| 283 | <attribute name="type"/> |
| 284 | </macro> |
| 285 | <macro name="withsubitem"> |
| 286 | <attribute name="text"/> |
| 287 | <content/> |
| 288 | </macro> |
| 289 | <macro name="setindexsubitem"> |
| 290 | <attribute name="text"/> |
| 291 | </macro> |
| 292 | |
| 293 | <!-- Entity management. --> |
Fred Drake | baacc08 | 2001-09-27 15:49:23 +0000 | [diff] [blame] | 294 | <macro name="include" outputname="xi:include"> |
| 295 | <attribute name="href"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 296 | </macro> |
Fred Drake | baacc08 | 2001-09-27 15:49:23 +0000 | [diff] [blame] | 297 | <macro name="input" outputname="xi:include"> |
| 298 | <attribute name="href"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 299 | </macro> |
| 300 | |
| 301 | <!-- Large-scale document structure. --> |
| 302 | <macro name="documentclass"> |
| 303 | <attribute name="classname"/> |
| 304 | </macro> |
| 305 | |
Fred Drake | ce19496 | 2001-03-23 16:29:06 +0000 | [diff] [blame] | 306 | <macro name="usepackage"> |
| 307 | <attribute name="options" optional="yes"/> |
| 308 | <attribute name="pkg"/> |
| 309 | </macro> |
| 310 | |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 311 | <environment name="document" |
| 312 | endcloses="chapter chapter* section section* |
| 313 | subsection subsection* |
| 314 | subsubsection subsubsection* |
Fred Drake | baacc08 | 2001-09-27 15:49:23 +0000 | [diff] [blame] | 315 | paragraph paragraph* subparagraph |
| 316 | subparagraph*"> |
| 317 | <attribute name="xmlns:xi" |
| 318 | >http://www.w3.org/2001/XInclude</attribute> |
| 319 | </environment> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 320 | |
| 321 | <macro name="chapter" |
| 322 | closes="chapter chapter* section section* subsection subsection* |
| 323 | subsubsection subsubsection* |
| 324 | paragraph paragraph* subparagraph subparagraph*"> |
| 325 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 326 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 327 | <child name="title"/> |
| 328 | <content implied="yes"/> |
| 329 | </macro> |
| 330 | <macro name="chapter*" outputname="chapter" |
| 331 | closes="chapter chapter* section section* subsection subsection* |
| 332 | subsubsection subsubsection* |
| 333 | paragraph paragraph* subparagraph subparagraph*"> |
| 334 | <attribute name="numbered">no</attribute> |
| 335 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 336 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 337 | <child name="title"/> |
| 338 | <content implied="yes"/> |
| 339 | </macro> |
| 340 | |
| 341 | <macro name="section" |
| 342 | closes="section section* subsection subsection* |
| 343 | subsubsection subsubsection* |
| 344 | paragraph paragraph* subparagraph subparagraph*"> |
| 345 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 346 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 347 | <child name="title"/> |
| 348 | <content implied="yes"/> |
| 349 | </macro> |
| 350 | <macro name="section*" outputname="section" |
| 351 | closes="section section* subsection subsection* |
| 352 | subsubsection subsubsection* |
| 353 | paragraph paragraph* subparagraph subparagraph*"> |
| 354 | <attribute name="numbered">no</attribute> |
| 355 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 356 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 357 | <child name="title"/> |
| 358 | <content implied="yes"/> |
| 359 | </macro> |
| 360 | |
| 361 | <macro name="subsection" |
| 362 | closes="subsection subsection* subsubsection subsubsection* |
| 363 | paragraph paragraph* subparagraph subparagraph*"> |
| 364 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 365 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 366 | <child name="title"/> |
| 367 | <content implied="yes"/> |
| 368 | </macro> |
| 369 | <macro name="subsection*" outputname="subsection" |
| 370 | closes="subsection subsection* subsubsection subsubsection* |
| 371 | paragraph paragraph* subparagraph subparagraph*"> |
| 372 | <attribute name="numbered">no</attribute> |
| 373 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 374 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 375 | <child name="title"/> |
| 376 | <content implied="yes"/> |
| 377 | </macro> |
| 378 | |
| 379 | <macro name="subsubsection" |
| 380 | closes="subsubsection subsubsection* |
| 381 | paragraph paragraph* subparagraph subparagraph*"> |
| 382 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 383 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 384 | <child name="title"/> |
| 385 | <content implied="yes"/> |
| 386 | </macro> |
| 387 | <macro name="subsubsection*" outputname="subsubsection" |
| 388 | closes="subsubsection subsubsection* |
| 389 | paragraph paragraph* subparagraph subparagraph*"> |
| 390 | <attribute name="numbered">no</attribute> |
| 391 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 392 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 393 | <child name="title"/> |
| 394 | <content implied="yes"/> |
| 395 | </macro> |
| 396 | |
| 397 | <macro name="paragraph" |
| 398 | closes="paragraph paragraph* subparagraph subparagraph*"> |
| 399 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 400 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 401 | <child name="title"/> |
| 402 | <content implied="yes"/> |
| 403 | </macro> |
| 404 | <macro name="paragraph*" outputname="paragraph" |
| 405 | closes="paragraph paragraph* subparagraph subparagraph*"> |
| 406 | <attribute name="numbered">no</attribute> |
| 407 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 408 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 409 | <child name="title"/> |
| 410 | <content implied="yes"/> |
| 411 | </macro> |
| 412 | |
| 413 | <macro name="subparagraph" |
| 414 | closes="subparagraph subparagraph*"> |
| 415 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 416 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 417 | <child name="title"/> |
| 418 | <content implied="yes"/> |
| 419 | </macro> |
| 420 | <macro name="subparagraph*" outputname="subparagraph" |
| 421 | closes="subparagraph subparagraph*"> |
| 422 | <attribute name="numbered">no</attribute> |
| 423 | <text> |
Fred Drake | ecb84f8 | 2000-01-20 22:51:14 +0000 | [diff] [blame] | 424 | </text> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 425 | <child name="title"/> |
| 426 | <content implied="yes"/> |
| 427 | </macro> |
| 428 | <macro name="title"> |
| 429 | <content/> |
| 430 | </macro> |
| 431 | |
| 432 | <macro name="appendix" outputname="back-matter" |
| 433 | closes="chapter chapter* section subsection subsubsection |
| 434 | paragraph subparagraph"/> |
| 435 | |
| 436 | <environment name="list" |
| 437 | endcloses="item"> |
| 438 | <attribute name="bullet"/> |
| 439 | <attribute name="init"/> |
| 440 | </environment> |
| 441 | <macro name="item" closes="item"> |
| 442 | <child name="leader" optional="yes"/> |
| 443 | <content implied="yes"/> |
| 444 | </macro> |
| 445 | |
| 446 | <macro name="ref"> |
| 447 | <attribute name="ref"/> |
| 448 | </macro> |
| 449 | |
| 450 | <environment name="description" outputname="descriptionlist" |
| 451 | endcloses="item"/> |
| 452 | |
| 453 | <environment name="enumerate" outputname="enumeration" |
| 454 | endcloses="item"/> |
| 455 | |
| 456 | <environment name="fulllineitems" |
| 457 | endcloses="item"/> |
| 458 | |
| 459 | <environment name="itemize" |
| 460 | endcloses="item"/> |
| 461 | |
| 462 | <environment name="definitions" outputname="definitionlist" |
| 463 | encloses="term"/> |
| 464 | <macro name="term" closes="definition"> |
| 465 | <!-- not really optional, but uses the [] syntax --> |
| 466 | <child name="term" optional="yes"/> |
| 467 | <child name="definition" implied="yes"/> |
| 468 | </macro> |
| 469 | |
Fred Drake | 20931fb | 2001-04-10 19:59:31 +0000 | [diff] [blame] | 470 | <environment name="alltt" outputname="verbatim"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 471 | <environment name="comment" verbatim="yes"/> |
| 472 | <environment name="verbatim" verbatim="yes"/> |
| 473 | <environment name="verbatim*" verbatim="yes"> |
| 474 | <!-- not used anywhere, but it's a standard LaTeXism --> |
| 475 | <attribute name="spaces">visible</attribute> |
| 476 | </environment> |
Fred Drake | baacc08 | 2001-09-27 15:49:23 +0000 | [diff] [blame] | 477 | <macro name="verbatiminput" ouptutname="xi:include"> |
| 478 | <attribute name="parse">text</attribute> |
| 479 | <attribute name="href"/> |
Fred Drake | b6fa789 | 2001-09-27 04:18:39 +0000 | [diff] [blame] | 480 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 481 | |
| 482 | <!-- Table markup. --> |
| 483 | <macro name="hline"/> |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 484 | <environment name="tableii" outputname="table"> |
| 485 | <attribute name="cols">2</attribute> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 486 | <attribute name="colspec"/> |
| 487 | <attribute name="style"/> |
| 488 | <child name="entry"/> |
| 489 | <text> |
| 490 | </text> |
| 491 | <child name="entry"/> |
| 492 | </environment> |
Fred Drake | 2ed27d3 | 2000-11-17 19:05:12 +0000 | [diff] [blame] | 493 | <environment name="longtableii" outputname="table"> |
| 494 | <attribute name="cols">2</attribute> |
| 495 | <attribute name="colspec"/> |
| 496 | <attribute name="style"/> |
| 497 | <child name="entry"/> |
| 498 | <text> |
| 499 | </text> |
| 500 | <child name="entry"/> |
| 501 | </environment> |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 502 | <macro name="lineii" outputname="row"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 503 | <child name="entry"/> |
| 504 | <text> |
| 505 | </text> |
| 506 | <child name="entry"/> |
| 507 | </macro> |
| 508 | |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 509 | <environment name="tableiii" outputname="table"> |
| 510 | <attribute name="cols">3</attribute> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 511 | <attribute name="colspec"/> |
| 512 | <attribute name="style"/> |
| 513 | <child name="entry"/> |
| 514 | <text> |
| 515 | </text> |
| 516 | <child name="entry"/> |
| 517 | <text> |
| 518 | </text> |
| 519 | <child name="entry"/> |
| 520 | </environment> |
Fred Drake | 2ed27d3 | 2000-11-17 19:05:12 +0000 | [diff] [blame] | 521 | <environment name="longtableiii" outputname="table"> |
| 522 | <attribute name="cols">3</attribute> |
| 523 | <attribute name="colspec"/> |
| 524 | <attribute name="style"/> |
| 525 | <child name="entry"/> |
| 526 | <text> |
| 527 | </text> |
| 528 | <child name="entry"/> |
| 529 | <text> |
| 530 | </text> |
| 531 | <child name="entry"/> |
| 532 | </environment> |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 533 | <macro name="lineiii" outputname="row"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 534 | <child name="entry"/> |
| 535 | <text> |
| 536 | </text> |
| 537 | <child name="entry"/> |
| 538 | <text> |
| 539 | </text> |
| 540 | <child name="entry"/> |
| 541 | </macro> |
| 542 | |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 543 | <environment name="tableiv" outputname="table"> |
| 544 | <attribute name="cols">4</attribute> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 545 | <attribute name="colspec"/> |
| 546 | <attribute name="style"/> |
| 547 | <child name="entry"/> |
| 548 | <text> |
| 549 | </text> |
| 550 | <child name="entry"/> |
| 551 | <text> |
| 552 | </text> |
| 553 | <child name="entry"/> |
| 554 | <text> |
| 555 | </text> |
| 556 | <child name="entry"/> |
| 557 | </environment> |
Fred Drake | 2ed27d3 | 2000-11-17 19:05:12 +0000 | [diff] [blame] | 558 | <environment name="longtableiv" outputname="table"> |
| 559 | <attribute name="cols">4</attribute> |
| 560 | <attribute name="colspec"/> |
| 561 | <attribute name="style"/> |
| 562 | <child name="entry"/> |
| 563 | <text> |
| 564 | </text> |
| 565 | <child name="entry"/> |
| 566 | <text> |
| 567 | </text> |
| 568 | <child name="entry"/> |
| 569 | <text> |
| 570 | </text> |
| 571 | <child name="entry"/> |
| 572 | </environment> |
Fred Drake | 2f6ec9c | 1999-08-03 15:27:37 +0000 | [diff] [blame] | 573 | <macro name="lineiv" outputname="row"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 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 | </macro> |
| 585 | |
Fred Drake | 29a67ce | 2001-09-25 20:58:13 +0000 | [diff] [blame] | 586 | <environment name="tablev" outputname="table"> |
| 587 | <attribute name="cols">4</attribute> |
| 588 | <attribute name="colspec"/> |
| 589 | <attribute name="style"/> |
| 590 | <child name="entry"/> |
| 591 | <text> |
| 592 | </text> |
| 593 | <child name="entry"/> |
| 594 | <text> |
| 595 | </text> |
| 596 | <child name="entry"/> |
| 597 | <text> |
| 598 | </text> |
| 599 | <child name="entry"/> |
| 600 | </environment> |
| 601 | <environment name="longtablev" outputname="table"> |
| 602 | <attribute name="cols">4</attribute> |
| 603 | <attribute name="colspec"/> |
| 604 | <attribute name="style"/> |
| 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 | <text> |
| 616 | </text> |
| 617 | <child name="entry"/> |
| 618 | </environment> |
| 619 | <macro name="linev" outputname="row"> |
| 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 | <text> |
| 631 | </text> |
| 632 | <child name="entry"/> |
| 633 | </macro> |
| 634 | |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 635 | <!-- These are handled at a later translation stage, at least for now. --> |
Fred Drake | 031e222 | 1999-08-02 14:32:11 +0000 | [diff] [blame] | 636 | <macro name="Cpp" outputname=""> |
| 637 | <text>C++</text> |
| 638 | </macro> |
Fred Drake | 3cf4eb4 | 1999-08-26 17:56:47 +0000 | [diff] [blame] | 639 | <macro name="geq" outputname=""> |
| 640 | <entityref name="geq"/> |
| 641 | </macro> |
Fred Drake | 0a650d7 | 2001-07-06 21:13:51 +0000 | [diff] [blame] | 642 | <macro name="infinity" outputname=""> |
| 643 | <entityref name="infin"/> |
| 644 | </macro> |
Fred Drake | 3cf4eb4 | 1999-08-26 17:56:47 +0000 | [diff] [blame] | 645 | <macro name="LaTeX" outputname=""> |
| 646 | <text>LaTeX</text> |
| 647 | </macro> |
Fred Drake | 031e222 | 1999-08-02 14:32:11 +0000 | [diff] [blame] | 648 | <macro name="ldots" outputname=""> |
| 649 | <text>...</text> |
| 650 | </macro> |
Fred Drake | 3cf4eb4 | 1999-08-26 17:56:47 +0000 | [diff] [blame] | 651 | <macro name="leq" outputname=""> |
| 652 | <entityref name="leq"/> |
| 653 | </macro> |
Fred Drake | 0a650d7 | 2001-07-06 21:13:51 +0000 | [diff] [blame] | 654 | <macro name="plusminus" outputname=""> |
| 655 | <entityref name="plusmn"/> |
| 656 | </macro> |
Fred Drake | 3cf4eb4 | 1999-08-26 17:56:47 +0000 | [diff] [blame] | 657 | <macro name="TeX" outputname=""> |
| 658 | <text>TeX</text> |
| 659 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 660 | <macro name="version"/> |
| 661 | |
Fred Drake | ce19496 | 2001-03-23 16:29:06 +0000 | [diff] [blame] | 662 | <!-- Distutils things. --> |
| 663 | <macro name="command"> |
| 664 | <content/> |
| 665 | </macro> |
| 666 | <macro name="option"> |
| 667 | <content/> |
| 668 | </macro> |
| 669 | <macro name="filevar" outputname="var"> |
| 670 | <content/> |
| 671 | </macro> |
| 672 | <macro name="XXX" outputname="editorial-comment"> |
| 673 | <content/> |
| 674 | </macro> |
| 675 | |
Fred Drake | 03e88da | 2001-07-09 15:00:42 +0000 | [diff] [blame] | 676 | <!-- Grammar production lists --> |
| 677 | <environment name="productionlist"> |
| 678 | <attribute name="grammar" optional="yes"/> |
| 679 | </environment> |
| 680 | <macro name="production"> |
| 681 | <attribute name="token"/> |
| 682 | <content/> |
| 683 | </macro> |
Fred Drake | b6fa789 | 2001-09-27 04:18:39 +0000 | [diff] [blame] | 684 | <macro name="token" outputname="grammartoken"> |
| 685 | <content/> |
| 686 | </macro> |
| 687 | <macro name="grammartoken"> |
Fred Drake | 03e88da | 2001-07-09 15:00:42 +0000 | [diff] [blame] | 688 | <content/> |
| 689 | </macro> |
| 690 | <macro name="orgroup"> |
| 691 | <content/> |
| 692 | </macro> |
| 693 | <macro name="oritem"/> |
| 694 | |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 695 | <!-- Misc. --> |
| 696 | <macro name="emph"> |
| 697 | <content/> |
| 698 | </macro> |
| 699 | <macro name="strong"> |
| 700 | <content/> |
| 701 | </macro> |
| 702 | <macro name="textrm"> |
| 703 | <content/> |
| 704 | </macro> |
| 705 | <macro name="texttt"> |
| 706 | <content/> |
| 707 | </macro> |
| 708 | <macro name="code"> |
| 709 | <content/> |
| 710 | </macro> |
| 711 | <macro name="exception"> |
| 712 | <content/> |
| 713 | </macro> |
| 714 | <macro name="keyword"> |
| 715 | <content/> |
| 716 | </macro> |
| 717 | <macro name="samp"> |
| 718 | <content/> |
| 719 | </macro> |
| 720 | <macro name="class"> |
| 721 | <content/> |
| 722 | </macro> |
| 723 | <macro name="cdata"> |
| 724 | <content/> |
| 725 | </macro> |
| 726 | <macro name="cfunction"> |
| 727 | <content/> |
| 728 | </macro> |
| 729 | <macro name="ctype"> |
| 730 | <content/> |
| 731 | </macro> |
| 732 | <macro name="pytype"> |
| 733 | <content/> |
| 734 | </macro> |
| 735 | <macro name="character"> |
| 736 | <content/> |
| 737 | </macro> |
| 738 | <macro name="constant"> |
| 739 | <content/> |
| 740 | </macro> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 741 | <macro name="envvar" outputname="envar"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 742 | <content/> |
| 743 | </macro> |
| 744 | <macro name="file" outputname="filename"> |
| 745 | <content/> |
| 746 | </macro> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 747 | <macro name="filenq" outputname="filename"> |
| 748 | <attribute name="quote">no</attribute> |
| 749 | <content/> |
| 750 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 751 | <macro name="function"> |
| 752 | <content/> |
| 753 | </macro> |
Fred Drake | 44845ba | 2001-07-14 03:10:20 +0000 | [diff] [blame] | 754 | <macro name="kbd" outputname="keysym"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 755 | <content/> |
| 756 | </macro> |
Fred Drake | 29a67ce | 2001-09-25 20:58:13 +0000 | [diff] [blame] | 757 | <macro name="mailheader"> |
| 758 | <content/> |
| 759 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 760 | <macro name="makevar"> |
| 761 | <content/> |
| 762 | </macro> |
| 763 | <macro name="method"> |
| 764 | <content/> |
| 765 | </macro> |
| 766 | <macro name="member"> |
| 767 | <content/> |
| 768 | </macro> |
| 769 | <macro name="mimetype"> |
| 770 | <content/> |
| 771 | </macro> |
| 772 | <macro name="newsgroup"> |
| 773 | <content/> |
| 774 | </macro> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 775 | <macro name="program" outputname="command"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 776 | <content/> |
| 777 | </macro> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 778 | <macro name="programopt" outputname="option"> |
Fred Drake | 91f31ea | 1999-11-09 19:33:24 +0000 | [diff] [blame] | 779 | <content/> |
| 780 | </macro> |
Fred Drake | ce19496 | 2001-03-23 16:29:06 +0000 | [diff] [blame] | 781 | <macro name="longprogramopt" outputname="longoption"> |
| 782 | <content/> |
| 783 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 784 | <macro name="regexp"> |
| 785 | <content/> |
| 786 | </macro> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 787 | <macro name="var"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 788 | <content/> |
| 789 | </macro> |
| 790 | <macro name="email"> |
| 791 | <content/> |
| 792 | </macro> |
Fred Drake | 44835d8 | 2001-07-07 06:00:36 +0000 | [diff] [blame] | 793 | <macro name="ulink"> |
| 794 | <!-- order of the parameters makes this difficult; |
Fred Drake | b6fa789 | 2001-09-27 04:18:39 +0000 | [diff] [blame] | 795 | we'll need to fix it up to <ulink href="...">...</ulink> |
Fred Drake | 44835d8 | 2001-07-07 06:00:36 +0000 | [diff] [blame] | 796 | in docfixer.py. |
| 797 | --> |
| 798 | <child name="text"/> |
| 799 | <child name="href"/> |
| 800 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 801 | <macro name="url"> |
| 802 | <content/> |
| 803 | </macro> |
| 804 | <macro name="footnote"> |
| 805 | <content/> |
| 806 | </macro> |
| 807 | <macro name="dfn" outputname="definedterm"> |
| 808 | <content/> |
| 809 | </macro> |
| 810 | |
| 811 | <macro name="mbox"> |
| 812 | <content/> |
| 813 | </macro> |
| 814 | |
| 815 | <!-- minimal math stuff to get by --> |
Fred Drake | 8a3b449 | 1999-11-23 21:48:41 +0000 | [diff] [blame] | 816 | <macro name="pi"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 817 | <macro name="sqrt"> |
| 818 | <content/> |
| 819 | </macro> |
| 820 | <macro name="frac" outputname="fraction"> |
| 821 | <child name="numerator"/> |
| 822 | <child name="denominator"/> |
| 823 | </macro> |
| 824 | <macro name="sum"> |
| 825 | <content/> |
| 826 | </macro> |
| 827 | |
Fred Drake | 95e33f0 | 2001-11-30 19:06:18 +0000 | [diff] [blame] | 828 | <macro name="leftline" outputname=""> |
| 829 | <content/> |
| 830 | </macro> |
| 831 | |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 832 | <!-- Conversions to text; perhaps could be different? There's --> |
| 833 | <!-- no way for a style sheet to work with these this way. --> |
Fred Drake | d95f4e1 | 2000-07-01 06:26:44 +0000 | [diff] [blame] | 834 | <macro name="ABC" outputname=""> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 835 | <text>ABC</text> |
| 836 | </macro> |
| 837 | <macro name="ASCII" outputname=""> |
| 838 | <text>ASCII</text> |
| 839 | </macro> |
| 840 | <macro name="C" outputname=""> |
| 841 | <text>C</text> |
| 842 | </macro> |
| 843 | <macro name="EOF" outputname=""> |
| 844 | <text>EOF</text> |
| 845 | </macro> |
| 846 | <macro name="e" outputname=""> |
| 847 | <text>\</text> |
| 848 | </macro> |
Fred Drake | 031e222 | 1999-08-02 14:32:11 +0000 | [diff] [blame] | 849 | <macro name="NULL" outputname="constant"> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 850 | <text>NULL</text> |
| 851 | </macro> |
| 852 | <macro name="POSIX" outputname=""> |
| 853 | <text>POSIX</text> |
| 854 | </macro> |
| 855 | <macro name="UNIX" outputname=""> |
| 856 | <text>Unix</text> |
| 857 | </macro> |
Fred Drake | 0a650d7 | 2001-07-06 21:13:51 +0000 | [diff] [blame] | 858 | <macro name="textasciicircum" outputname=""> |
| 859 | <text>^</text> |
| 860 | </macro> |
Fred Drake | d397f23 | 2000-11-22 16:45:19 +0000 | [diff] [blame] | 861 | <macro name="textasciitilde" outputname=""> |
| 862 | <text>~</text> |
| 863 | </macro> |
Fred Drake | b6fa789 | 2001-09-27 04:18:39 +0000 | [diff] [blame] | 864 | <macro name="textbackslash" outputname=""> |
| 865 | <text>\</text> |
| 866 | </macro> |
Fred Drake | 0a650d7 | 2001-07-06 21:13:51 +0000 | [diff] [blame] | 867 | <macro name="textbar" outputname=""> |
| 868 | <text>|</text> |
| 869 | </macro> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 870 | |
| 871 | <!-- These will end up disappearing as well! --> |
| 872 | <macro name="catcode" outputname=""/> |
| 873 | <macro name="fi" outputname=""/> |
| 874 | <macro name="ifhtml" outputname=""/> |
| 875 | <macro name="indexname" outputname=""/> |
| 876 | <macro name="labelwidth" outputname=""/> |
| 877 | <macro name="large" outputname=""/> |
| 878 | <macro name="leftmargin" outputname=""/> |
| 879 | <macro name="makeindex" outputname=""/> |
| 880 | <macro name="makemodindex" outputname=""/> |
| 881 | <macro name="maketitle" outputname=""/> |
| 882 | <macro name="noindent" outputname=""/> |
| 883 | <macro name="protect" outputname=""/> |
Fred Drake | af876d7 | 2001-10-25 15:14:57 +0000 | [diff] [blame] | 884 | <macro name="textwidth"/> |
Fred Drake | bc2285e | 1999-07-29 22:03:11 +0000 | [diff] [blame] | 885 | <macro name="renewcommand"> |
| 886 | <attribute name="macro"/> |
| 887 | <attribute name="nargs" optional="yes"/> |
| 888 | <content/> |
| 889 | </macro> |
| 890 | <macro name="tableofcontents" outputname=""/> |
| 891 | <macro name="vspace"> |
| 892 | <attribute name="size"/> |
| 893 | </macro> |
| 894 | </conversion> |