/usr/share/boostbook/xsl/template.xsl is in libboost1.54-tools-dev 1.54.0-4ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 | <?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2002 Douglas Gregor <doug.gregor -at- gmail.com>
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:param name="template.param.brief" select="false()"/>
<!-- Determine the length of a template header synopsis -->
<xsl:template name="template.synopsis.length">
<xsl:variable name="text">
<xsl:apply-templates select="template" mode="synopsis">
<xsl:with-param name="indentation" select="0"/>
<xsl:with-param name="wrap" select="false()"/>
<xsl:with-param name="highlight" select="false()"/>
</xsl:apply-templates>
</xsl:variable>
<xsl:value-of select="string-length($text)"/>
</xsl:template>
<!-- Determine the length of a template header reference -->
<xsl:template name="template.reference.length">
<xsl:choose>
<xsl:when test="not(template)">
0
</xsl:when>
<xsl:when test="template/*/purpose">
<!-- TBD: The resulting value need only be greater than the number of
columns. We chose to add 17 because it's funny for C++
programmers. :) -->
<xsl:value-of select="$max-columns + 17"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="template.synopsis.length"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Output a template header in synopsis mode -->
<xsl:template match="template" mode="synopsis">
<xsl:param name="indentation" select="0"/>
<xsl:param name="wrap" select="true()"/>
<xsl:param name="highlight" select="true()"/>
<xsl:call-template name="template.synopsis">
<xsl:with-param name="indentation" select="$indentation"/>
<xsl:with-param name="wrap" select="$wrap"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:call-template>
</xsl:template>
<!-- Output a template header in reference mode -->
<xsl:template match="template" mode="reference">
<xsl:param name="indentation" select="0"/>
<xsl:param name="highlight" select="true()"/>
<xsl:call-template name="template.reference">
<xsl:with-param name="indentation" select="$indentation"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:call-template>
</xsl:template>
<!-- Emit a template header synopsis -->
<xsl:template name="template.synopsis">
<xsl:param name="indentation" select="0"/>
<xsl:param name="wrap" select="true()"/>
<xsl:param name="highlight" select="true()"/>
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-keyword">
<xsl:with-param name="keyword" select="'template'"/>
</xsl:call-template>
<xsl:call-template name="highlight-special">
<xsl:with-param name="text" select="'<'"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text>template</xsl:text>
<xsl:text><</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:call-template name="template.synopsis.parameters">
<xsl:with-param name="indentation" select="$indentation + 9"/>
<xsl:with-param name="wrap" select="$wrap"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:call-template>
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-special">
<xsl:with-param name="text" select="'>'"/>
</xsl:call-template>
<xsl:text> </xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Display a list of template parameters for a synopsis (no comments) -->
<xsl:template name="template.synopsis.parameters">
<xsl:param name="indentation"/>
<xsl:param name="wrap" select="true()"/>
<xsl:param name="highlight" select="true()"/>
<xsl:param name="column" select="$indentation"/>
<xsl:param name="prefix" select="''"/>
<xsl:param name="parameters" select="template-type-parameter|template-varargs|template-nontype-parameter"/>
<xsl:param name="first-on-line" select="true()"/>
<xsl:if test="$parameters">
<!-- Emit the prefix (either a comma-space, or empty if this is
the first parameter) -->
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-text">
<xsl:with-param name="text" select="$prefix"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$prefix"/>
</xsl:otherwise>
</xsl:choose>
<!-- Get the actual parameter and its attributes -->
<xsl:variable name="parameter" select="$parameters[position()=1]"/>
<xsl:variable name="rest" select="$parameters[position()!=1]"/>
<!-- Compute the actual text of this parameter -->
<xsl:variable name="text">
<xsl:call-template name="template.parameter">
<xsl:with-param name="parameter" select="$parameter"/>
<xsl:with-param name="is-last" select="not(rest)"/>
<xsl:with-param name="highlight" select="false()"/>
</xsl:call-template>
</xsl:variable>
<!-- Where will this template parameter finish? -->
<xsl:variable name="end-column"
select="$column + string-length($prefix) + string-length($text)"/>
<!-- Should the text go on this line or on the next? -->
<xsl:choose>
<xsl:when test="$first-on-line or ($end-column < $max-columns) or
not($wrap)">
<!-- Print on this line -->
<xsl:call-template name="template.parameter">
<xsl:with-param name="parameter" select="$parameter"/>
<xsl:with-param name="is-last" select="not($rest)"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:call-template>
<!-- Recurse -->
<xsl:call-template name="template.synopsis.parameters">
<xsl:with-param name="indentation" select="$indentation"/>
<xsl:with-param name="wrap" select="$wrap"/>
<xsl:with-param name="highlight" select="$highlight"/>
<xsl:with-param name="column" select="$end-column"/>
<xsl:with-param name="prefix" select="', '"/>
<xsl:with-param name="parameters" select="$rest"/>
<xsl:with-param name="first-on-line" select="false()"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<!-- Print on next line -->
<xsl:text> </xsl:text>
<xsl:call-template name="indent">
<xsl:with-param name="indentation" select="$indentation"/>
</xsl:call-template>
<xsl:call-template name="template.parameter">
<xsl:with-param name="parameter" select="$parameter"/>
<xsl:with-param name="is-last" select="not($rest)"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:call-template>
<xsl:call-template name="template.synopsis.parameters">
<xsl:with-param name="indentation" select="$indentation"/>
<xsl:with-param name="wrap" select="$wrap"/>
<xsl:with-param name="highlight" select="$highlight"/>
<xsl:with-param name="column"
select="$indentation + string-length($text)"/>
<xsl:with-param name="prefix" select="', '"/>
<xsl:with-param name="parameters" select="$rest"/>
<xsl:with-param name="first-on-line" select="false()"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:template>
<!-- Emit a template header reference -->
<xsl:template name="template.reference">
<xsl:param name="indentation" select="0"/>
<xsl:param name="highlight" select="true()"/>
<xsl:if test="template-type-parameter|template-varargs|template-nontype-parameter">
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-keyword">
<xsl:with-param name="keyword" select="'template'"/>
</xsl:call-template>
<xsl:call-template name="highlight-special">
<xsl:with-param name="text" select="'<'"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text>template</xsl:text>
<xsl:text><</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:call-template name="template.reference.parameters">
<xsl:with-param name="indentation" select="$indentation + 9"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:call-template>
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-special">
<xsl:with-param name="text" select="'>'"/>
</xsl:call-template>
<xsl:text> </xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:template>
<!-- Display a set of template parameters for a reference -->
<xsl:template name="template.reference.parameters">
<xsl:param name="indentation"/>
<xsl:param name="highlight" select="true()"/>
<xsl:param name="parameters" select="template-type-parameter|template-varargs|template-nontype-parameter"/>
<xsl:choose>
<xsl:when test="$parameters/purpose and $template.param.brief">
<xsl:call-template name="template.reference.parameters.comments">
<xsl:with-param name="indentation" select="$indentation"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="template.synopsis.parameters">
<xsl:with-param name="indentation" select="$indentation"/>
<xsl:with-param name="wrap" select="true()"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Output template parameters when there are comments with the parameters.
For clarity, we output each template parameter on a separate line. -->
<xsl:template name="template.reference.parameters.comments">
<xsl:param name="indentation"/>
<xsl:param name="highlight" select="true()"/>
<xsl:param name="parameters" select="template-type-parameter|template-varargs|template-nontype-parameter"/>
<xsl:if test="$parameters">
<!-- Get the actual parameter and its attributes -->
<xsl:variable name="parameter" select="$parameters[position()=1]"/>
<xsl:variable name="rest" select="$parameters[position()!=1]"/>
<!-- Display the parameter -->
<xsl:call-template name="template.parameter">
<xsl:with-param name="parameter" select="$parameter"/>
<xsl:with-param name="is-last" select="not($rest)"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:call-template>
<xsl:if test="$rest">
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-text">
<xsl:with-param name="text" select="', '"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text>, </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
<!-- Display the comment -->
<xsl:if test="$parameter/purpose">
<xsl:variable name="param-text">
<!-- Display the parameter -->
<xsl:call-template name="template.parameter">
<xsl:with-param name="parameter" select="$parameter"/>
<xsl:with-param name="is-last" select="not($rest)"/>
<xsl:with-param name="highlight" select="false()"/>
</xsl:call-template>
</xsl:variable>
<xsl:call-template name="highlight-comment">
<xsl:with-param name="text">
<xsl:text> // </xsl:text>
<xsl:apply-templates
select="$parameter/purpose/*|$parameter/purpose/text()" mode="comment">
<xsl:with-param name="wrap" select="true()"/>
<xsl:with-param name="prefix">
<xsl:call-template name="indent">
<xsl:with-param name="indentation" select="$indentation + string-length($param-text)"/>
</xsl:call-template>
<xsl:if test="$rest">
<xsl:text> </xsl:text>
</xsl:if>
<xsl:text> // </xsl:text>
</xsl:with-param>
</xsl:apply-templates>
</xsl:with-param>
</xsl:call-template>
</xsl:if>
<!-- Indent the next line -->
<xsl:if test="$parameter/purpose or $rest">
<xsl:text> </xsl:text>
<xsl:call-template name="indent">
<xsl:with-param name="indentation" select="$indentation"/>
</xsl:call-template>
</xsl:if>
<!-- Recurse to print the rest of the parameters -->
<xsl:call-template name="template.reference.parameters.comments">
<xsl:with-param name="indentation" select="$indentation"/>
<xsl:with-param name="highlight" select="$highlight"/>
<xsl:with-param name="parameters" select="$rest"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<!-- Print a template parameter -->
<xsl:template name="template.parameter">
<xsl:param name="parameter"/>
<xsl:param name="is-last"/>
<xsl:param name="highlight" select="true()"/>
<xsl:apply-templates select="$parameter"
mode="print.parameter">
<xsl:with-param name="parameter" select="$parameter"/>
<xsl:with-param name="is-last" select="$is-last"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:apply-templates>
</xsl:template>
<xsl:template name="template.parameter.name">
<xsl:param name="name" select="@name"/>
<xsl:param name="highlight" select="true()"/>
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="concept.link">
<xsl:with-param name="name"
select="translate($name, '0123456789', '')"/>
<xsl:with-param name="text" select="$name"/>
<xsl:with-param name="warn" select="false"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$name"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="template-type-parameter" mode="print.parameter">
<xsl:param name="parameter"/>
<xsl:param name="is-last"/>
<xsl:param name="highlight"/>
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-keyword">
<xsl:with-param name="keyword" select="'typename'"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text>typename</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="$parameter/@pack=1">
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-text">
<xsl:with-param name="text" select="'...'"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text>...</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
<xsl:text> </xsl:text>
<xsl:call-template name="template.parameter.name">
<xsl:with-param name="name" select="$parameter/@name"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:call-template>
<xsl:variable name="def">
<xsl:choose>
<xsl:when test="$parameter/@default">
<xsl:message>
<xsl:text>Warning: 'default' attribute of template parameter element is deprecated. Use 'default' element.</xsl:text>
<xsl:call-template name="print.warning.context"/>
</xsl:message>
<xsl:choose>
<xsl:when test="$highlight and false()">
<xsl:call-template name="source-highlight">
<xsl:with-param name="text">
<xsl:value-of select="$parameter/@default"/>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$parameter/@default"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:when test="$parameter/default">
<xsl:choose>
<xsl:when test="$highlight">
<xsl:apply-templates
select="$parameter/default/*|$parameter/default/text()"
mode="highlight"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="string($parameter/default)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:if test="not($def='')">
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-text">
<xsl:with-param name="text" select="' = '"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text> = </xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:copy-of select="$def"/>
<!-- If this is the last parameter, add an extra space to
avoid printing >> -->
<xsl:if
test="$is-last and (substring($def, string-length($def))='>')">
<xsl:text> </xsl:text>
</xsl:if>
</xsl:if>
</xsl:template>
<xsl:template match="template-nontype-parameter" mode="print.parameter">
<xsl:param name="parameter"/>
<xsl:param name="is-last"/>
<xsl:param name="highlight"/>
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="source-highlight">
<xsl:with-param name="text">
<xsl:apply-templates
select="$parameter/type/*|$parameter/type/text()"/>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$parameter/type/*|$parameter/type/text()"/>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="$parameter/@pack=1">
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-text">
<xsl:with-param name="text" select="'...'"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text>...</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
<xsl:text> </xsl:text>
<xsl:call-template name="template.parameter.name">
<xsl:with-param name="name" select="$parameter/@name"/>
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:call-template>
<xsl:variable name="def">
<xsl:value-of select="string($parameter/default)"/>
</xsl:variable>
<xsl:if test="not($def='')">
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-text">
<xsl:with-param name="text" select="' = '"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text> = </xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="$highlight">
<xsl:apply-templates select="$parameter/default/*|$parameter/default/text()" mode="highlight"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$def"/>
</xsl:otherwise>
</xsl:choose>
<!-- If this is the last parameter, add an extra space to
avoid printing >> -->
<xsl:if
test="$is-last and (substring($def, string-length($def))='>')">
<xsl:text> </xsl:text>
</xsl:if>
</xsl:if>
</xsl:template>
<xsl:template match="template-varargs" mode="print.parameter">
<xsl:param name="highlight" select="true()"/>
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-text">
<xsl:with-param name="text" select="'...'"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text>...</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="specialization">
<xsl:param name="highlight" select="true()"/>
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-text">
<xsl:with-param name="text" select="'<'"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text><</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates select="template-arg">
<xsl:with-param name="highlight" select="$highlight"/>
</xsl:apply-templates>
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-text">
<xsl:with-param name="text" select="'>'"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text>></xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="template-arg">
<xsl:param name="highlight" select="true()"/>
<xsl:if test="position() > 1">
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-text">
<xsl:with-param name="text" select="', '"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text>, </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
<xsl:apply-templates mode="highlight"/>
<xsl:if test="@pack=1">
<xsl:choose>
<xsl:when test="$highlight">
<xsl:call-template name="highlight-text">
<xsl:with-param name="text" select="'...'"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:text>...</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
|