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 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198
|
<?xml version="1.0"?>
<!--
docbook-refentry-to-manual-dita.xsl:
XSLT stylesheet for converting a refentry (manpage)
to dita for use in the user manual.
-->
<!--
Copyright (C) 2006-2024 Oracle and/or its affiliates.
This file is part of VirtualBox base platform packages, as
available from https://www.virtualbox.org.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, in version 3 of the
License.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <https://www.gnu.org/licenses>.
SPDX-License-Identifier: GPL-3.0-only
-->
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:str="http://xsltsl.org/string"
>
<xsl:import href="string.xsl"/>
<xsl:import href="common-formatcfg.xsl"/>
<xsl:output method="xml" version="1.0" encoding="utf-8" indent="no"/>
<xsl:preserve-space elements="*"/>
<!-- xsl:strip-space elements="*"/ - never -->
<!-- - - - - - - - - - - - - - - - - - - - - - -
parameters
- - - - - - - - - - - - - - - - - - - - - - -->
<!-- Replace dashes with non-breaking dashes.
Note! If the monospace font used in the PDF doesn't support it,
then '#' shows up instead for instance. This is currently
the case, so it's disabled by default. When we switch to
4.0.x with the latest com.elovirta.pdf plugin (2023-03-xx
or later), we can enable this by default again. -->
<xsl:param name="g_fReplaceHyphens">true</xsl:param>
<!-- Render the syntax diagram more as text than as proper markup. -->
<xsl:param name="g_fRenderSyntaxAsText">true</xsl:param>
<!-- Convert to reference if true, to topic structure if not. -->
<xsl:param name="g_fToReference">false</xsl:param>
<!-- - - - - - - - - - - - - - - - - - - - - - -
global XSLT variables
- - - - - - - - - - - - - - - - - - - - - - -->
<!-- - - - - - - - - - - - - - - - - - - - - - -
base operation is to fail on nodes w/o explicit matching.
- - - - - - - - - - - - - - - - - - - - - - -->
<xsl:template match="*">
<xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>unhandled element</xsl:message>
</xsl:template>
<!-- - - - - - - - - - - - - - - - - - - - - - -
transformations starting with root and going deeper.
- - - - - - - - - - - - - - - - - - - - - - -->
<!-- Rename refentry to reference.
Also we need to wrap the refsync and refsect1 elements in a refbody. -->
<xsl:template match="refentry">
<xsl:variable name="sRootElement">
<xsl:choose>
<xsl:when test="$g_fToReference = 'true'">reference</xsl:when>
<xsl:otherwise>topic</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- !DOCTYPE -->
<xsl:choose>
<xsl:when test="$g_fToReference = 'true'">
<xsl:text disable-output-escaping='yes'><!DOCTYPE reference PUBLIC "-//OASIS//DTD DITA Reference//EN" "reference.dtd"></xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text disable-output-escaping='yes'><!DOCTYPE topic PUBLIC "-//OASIS//DTD DITA Topic//EN" "topic.dtd"></xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:text>
</xsl:text>
<!-- Root element -->
<xsl:element name="{$sRootElement}">
<xsl:if test="not(@id)">
<xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refentry must have an id attribute!</xsl:message>
</xsl:if>
<xsl:attribute name="rev">refentry</xsl:attribute>
<xsl:attribute name="id"><xsl:value-of select="@id"/></xsl:attribute>
<!-- Copy title element from refentryinfo -->
<xsl:if test="./refentryinfo/title">
<xsl:copy-of select="./refentryinfo/title"/>
</xsl:if>
<!-- Create a shortdesc element from the text in refnamediv/refpurpose -->
<xsl:if test="./refnamediv/refpurpose">
<xsl:element name="shortdesc">
<xsl:attribute name="rev">refnamediv/refpurpose</xsl:attribute>
<xsl:call-template name="capitalize">
<xsl:with-param name="text" select="normalize-space(./refnamediv/refpurpose)"/>
</xsl:call-template>
</xsl:element>
</xsl:if>
<!-- Put everything else side a refbody element if in 'reference' mode, otherwise no body. -->
<xsl:choose>
<xsl:when test="$g_fToReference = 'true'">
<xsl:element name="refbody">
<xsl:apply-templates />
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates />
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:template>
<!-- Remove refentryinfo (we extracted the title element already). -->
<xsl:template match="refentryinfo" />
<!-- Remove refmeta (manpage info). -->
<xsl:template match="refmeta"/>
<!-- Remove the refnamediv (we extracted a shortdesc from it already). -->
<xsl:template match="refnamediv"/>
<!-- Morph the refsynopsisdiv part into a refsyn section. -->
<xsl:template match="refsynopsisdiv">
<xsl:if test="name(*[1]) != 'cmdsynopsis'"><xsl:message terminate="yes">Expected refsynopsisdiv to start with cmdsynopsis</xsl:message></xsl:if>
<xsl:if test="title"><xsl:message terminate="yes">No title element supported in refsynopsisdiv</xsl:message></xsl:if>
<xsl:choose>
<xsl:when test="$g_fToReference = 'true'">
<xsl:element name="refsyn">
<xsl:attribute name="rev">refsynopsisdiv</xsl:attribute>
<xsl:element name="title">
<xsl:text>Synopsis</xsl:text>
</xsl:element>
<xsl:apply-templates />
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:element name="topic">
<xsl:attribute name="rev">refsynopsisdiv</xsl:attribute>
<!-- <xsl:attribute name="toc">no</xsl:attribute> - topicref only. sigh -->
<xsl:attribute name="id"><xsl:value-of select="concat(../@id,'-synopsis')"/></xsl:attribute>
<xsl:element name="title">
<xsl:text>Synopsis</xsl:text>
</xsl:element>
<xsl:element name="body">
<xsl:apply-templates />
</xsl:element>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- refsect1 -> section or topic -->
<xsl:template match="refsect1">
<xsl:if test="not(title)"><xsl:message terminate="yes">refsect1 requires title</xsl:message></xsl:if>
<xsl:choose>
<xsl:when test="$g_fToReference = 'true'">
<xsl:element name="section">
<xsl:attribute name="rev">refsect1</xsl:attribute>
<xsl:if test="@id">
<xsl:attribute name="id"><xsl:value-of select="@id"/></xsl:attribute>
</xsl:if>
<xsl:apply-templates />
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:element name="topic">
<xsl:attribute name="rev">refsect1</xsl:attribute>
<!-- <xsl:attribute name="toc">no</xsl:attribute> - topicref only. sigh -->
<xsl:attribute name="id">
<xsl:choose>
<xsl:when test="@id"><xsl:value-of select="@id"/></xsl:when>
<xsl:otherwise><xsl:value-of select="concat(../@id, '-no', count(./preceding-sibling::refsect1))"/></xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:apply-templates select="title"/>
<!-- Must put cmdsynopsis in a paragraph or it'll get too close to any preceeding section title -->
<xsl:element name="body">
<xsl:for-each select="node()">
<xsl:choose>
<xsl:when test="self::title"/>
<xsl:when test="self::refsect2"/>
<xsl:when test="self::cmdsynopsis">
<xsl:element name="p">
<xsl:attribute name="rev">refsect1/cmdsynopsis</xsl:attribute>
<xsl:apply-templates select="." />
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="." />
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:element>
<xsl:apply-templates select="refsect2"/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- refsect2 -> sectiondiv or topic. -->
<xsl:template match="refsect2">
<xsl:if test="not(title)"><xsl:message terminate="yes">refsect2 requires title</xsl:message></xsl:if>
<xsl:choose>
<xsl:when test="$g_fToReference = 'true'">
<xsl:element name="sectiondiv">
<xsl:attribute name="rev">refsect2</xsl:attribute>
<xsl:attribute name="outputclass">refsect2</xsl:attribute> <!-- how to make xhtml pass these thru... -->
<xsl:if test="@id">
<xsl:attribute name="id"><xsl:value-of select="@id"/></xsl:attribute>
</xsl:if>
<xsl:apply-templates />
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:element name="topic">
<xsl:attribute name="rev">refsect2</xsl:attribute>
<!-- <xsl:attribute name="toc">no</xsl:attribute> - topicref only. sigh -->
<xsl:attribute name="id">
<xsl:choose>
<xsl:when test="@id"><xsl:value-of select="@id"/></xsl:when>
<xsl:otherwise>
<xsl:if test="not(../@id)">
<xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>both refsect2 and parent refsect1 are missing an @id attribute! Please fix add at least one of these to facilitate proper dita topic splitting.</xsl:message>
</xsl:if>
<xsl:value-of select="concat(../@id, '-no', count(./preceding-sibling::refsect2))"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:apply-templates select="title"/>
<xsl:element name="body">
<xsl:for-each select="node()">
<xsl:choose>
<xsl:when test="self::title"/>
<xsl:when test="self::refsect3"/>
<xsl:when test="self::cmdsynopsis">
<xsl:element name="p">
<xsl:attribute name="rev">refsect2/cmdsynopsis</xsl:attribute>
<xsl:apply-templates select="." />
</xsl:element>
<xsl:element name="p">
<xsl:attribute name="rev">space hack</xsl:attribute>
<xsl:text> </xsl:text>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="." />
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:element>
<xsl:apply-templates select="refsect3"/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- refsect1/title -> title -->
<xsl:template match="refsect1/title">
<xsl:copy>
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<!-- refsect2/title -> b or title -->
<xsl:template match="refsect2/title">
<xsl:choose>
<xsl:when test="$g_fToReference = 'true'">
<xsl:element name="b">
<xsl:attribute name="rev">refsect2/title</xsl:attribute>
<xsl:attribute name="outputclass">refsect2title</xsl:attribute> <!-- how to make xhtml pass these thru... -->
<xsl:apply-templates />
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:copy>
<xsl:apply-templates />
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- para -> p -->
<xsl:template match="para">
<xsl:element name="p">
<xsl:attribute name="rev">para</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- note in a section -> note (no change needed) -->
<xsl:template match="refsect1/note | refsect2/note">
<xsl:copy>
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<!-- variablelist -> parml -->
<xsl:template match="variablelist">
<xsl:element name="parml">
<xsl:attribute name="rev">variablelist</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- varlistentry -> plentry -->
<xsl:template match="varlistentry">
<xsl:element name="plentry">
<xsl:attribute name="rev">varlistentry</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- term (in varlistentry) -> pt -->
<xsl:template match="varlistentry/term">
<xsl:element name="pt">
<xsl:attribute name="rev">term</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- listitem (in varlistentry) -> pd -->
<xsl:template match="varlistentry/listitem">
<xsl:element name="pd">
<xsl:attribute name="rev">listitem</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- itemizedlist -> ul -->
<xsl:template match="itemizedlist">
<xsl:element name="ul">
<xsl:attribute name="rev">itemizedlist</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- listitem in itemizedlist -> li -->
<xsl:template match="itemizedlist/listitem">
<xsl:element name="li">
<xsl:attribute name="rev">listitem</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- orderedlist -> ol -->
<xsl:template match="orderedlist">
<xsl:element name="ol">
<xsl:attribute name="rev">orderedlist</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- listitem in orderedlist -> li -->
<xsl:template match="orderedlist/listitem">
<xsl:element name="li">
<xsl:attribute name="rev">listitem</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- cmdsynopsis -> syntaxdiagram
If sbr is used, this gets a bit more complicated... -->
<xsl:template match="cmdsynopsis[not(sbr)]">
<xsl:element name="syntaxdiagram">
<xsl:attribute name="rev">cmdsynopsis</xsl:attribute>
<xsl:if test="@id">
<xsl:attribute name="id"><xsl:value-of select="@id"/></xsl:attribute>
</xsl:if>
<xsl:choose>
<xsl:when test="$g_fRenderSyntaxAsText = 'true'">
<xsl:element name="groupseq">
<xsl:apply-templates />
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates />
</xsl:otherwise>
</xsl:choose>
</xsl:element>
<!-- HACK ALERT! Add an empty paragraph to keep syntax diagrams apart in the
PDF output, otherwise the commands becomes hard to tell apart. -->
<xsl:if test="position() < last()">
<xsl:element name="p">
<xsl:attribute name="platform">ohc</xsl:attribute> <!-- 'och', so it gets filtered out from the html(help) docs. -->
<xsl:attribute name="rev">pdf space hack</xsl:attribute>
<xsl:text> </xsl:text>
</xsl:element>
</xsl:if>
</xsl:template>
<!-- TODO: sbr cannot be translated, it seems. Whether we wrap things in
synblk, groupcomp or groupseq elements, the result is always the same:
- HTML: ignored.
- PDF: condensed arguments w/o spaces between. 4.0.2 doesn't seem
to condense stuff any more inside synblk elements, but then the
rending isn't much changed for PDFs anyway since its one element
per line.
Update: Turns out the condensing was because we stripped element
whitespace instead of preserving it. svn copy. sigh. -->
<xsl:template match="cmdsynopsis[sbr]">
<xsl:variable name="sWrapperElement">
<xsl:choose>
<xsl:when test="$g_fRenderSyntaxAsText = 'true'"><xsl:text>groupseq</xsl:text></xsl:when>
<xsl:otherwise><!--synblk--></xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:element name="syntaxdiagram">
<xsl:attribute name="rev">cmdsynopsis</xsl:attribute>
<xsl:if test="@id">
<xsl:attribute name="id"><xsl:value-of select="@id"/></xsl:attribute>
</xsl:if>
<xsl:for-each select="sbr">
<xsl:variable name="idxSbr" select="position()"/>
<xsl:choose>
<xsl:when test="$sWrapperElement != ''">
<xsl:element name="{$sWrapperElement}">
<xsl:attribute name="rev">sbr/<xsl:value-of select="position()"/></xsl:attribute>
<xsl:if test="$idxSbr = 1">
<xsl:apply-templates select="preceding-sibling::node()"/>
</xsl:if>
<xsl:if test="$idxSbr != 1">
<xsl:apply-templates select="preceding-sibling::node()[ count(. | ../sbr[$idxSbr - 1]/following-sibling::node())
= count(../sbr[$idxSbr - 1]/following-sibling::node())]"/>
</xsl:if>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:if test="$idxSbr = 1">
<xsl:apply-templates select="preceding-sibling::node()"/>
</xsl:if>
<xsl:if test="$idxSbr != 1">
<xsl:apply-templates select="preceding-sibling::node()[ count(. | ../sbr[$idxSbr - 1]/following-sibling::node())
= count(../sbr[$idxSbr - 1]/following-sibling::node())]"/>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
<!-- Ensure some space between these.-->
<xsl:text>
</xsl:text>
<xsl:if test="$idxSbr = last()">
<xsl:choose>
<xsl:when test="$sWrapperElement != ''">
<xsl:element name="{$sWrapperElement}">
<xsl:attribute name="rev">sbr/<xsl:value-of select="position()"/></xsl:attribute>
<xsl:apply-templates select="following-sibling::node()"/>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="following-sibling::node()"/>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:for-each>
</xsl:element>
<!-- HACK ALERT! Add an empty paragraph to keep syntax diagrams apart in the
PDF output, otherwise the commands becomes hard to tell apart. -->
<xsl:if test="position() < last()">
<xsl:element name="p">
<xsl:attribute name="platform">ohc</xsl:attribute> <!-- 'och', so it gets filtered out from the html(help) docs. -->
<xsl:attribute name="rev">pdf space hack</xsl:attribute>
<xsl:text> </xsl:text>
</xsl:element>
</xsl:if>
</xsl:template>
<!-- text (whitespace) under synopsis may need removing. -->
<xsl:template match="cmdsynopsis/text()">
<xsl:if test="normalize-space(.) != ''">
<xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>text in cmdsynopsis '<xsl:value-of select="."/>'</xsl:message>
</xsl:if>
<xsl:choose>
<xsl:when test="$g_fRenderSyntaxAsText = 'true'">
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- command with text and/or replaceable in cmdsynopsis -> groupseq + kwd -->
<xsl:template match="cmdsynopsis/command | cmdsynopsis/*/command" >
<xsl:element name="groupseq">
<xsl:attribute name="rev">command</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<xsl:template match="cmdsynopsis/command/text() | cmdsynopsis/*/command/text()" >
<xsl:element name="kwd">
<xsl:attribute name="rev">command/text</xsl:attribute>
<xsl:call-template name="emit-text-with-replacements"/>
</xsl:element>
</xsl:template>
<xsl:template match="cmdsynopsis/command/replaceable | cmdsynopsis/*/command/replaceable" >
<xsl:call-template name="check-children"/>
<xsl:element name="var">
<xsl:attribute name="rev">command/replaceable</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- command with text and/or replaceable in not cmdsynopsis -> userinput + cmdname -->
<xsl:template match="command[not(ancestor::cmdsynopsis)]">
<xsl:element name="userinput">
<xsl:attribute name="rev">command</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<xsl:template match="command[not(ancestor::cmdsynopsis)]/text()">
<xsl:element name="cmdname">
<xsl:attribute name="rev">command/text</xsl:attribute>
<xsl:value-of select="."/>
</xsl:element>
</xsl:template>
<xsl:template match="command[not(ancestor::cmdsynopsis)]/replaceable">
<xsl:call-template name="check-children"/>
<xsl:element name="varname">
<xsl:attribute name="rev">command/replaceable</xsl:attribute>
<xsl:value-of select="."/>
</xsl:element>
</xsl:template>
<!--
arg -> groupseq; A bit complicated though, because text needs to be wrapping
in 'kwd' and any nested arguments needs explicit 'sep' elements containing a
space or the nested arguments gets bunched up tight.
Examples:
{arg}-output={replaceable}file{/replaceable}{/arg}
= {groupcomp importance="optional"}{kwd}-output{/kwd}{sep}={/sep}{var}file{/var}{/groupcomp}
{arg}-output {replaceable}file{/replaceable}{/arg}
= {groupcomp importance="optional"}{kwd}-output{/kwd}{sep} {/sep}{var}file{/var}{/groupcomp}
{arg}-R {arg}-L{/arg}{/arg}
= {groupseq importance="optional"}{groupcomp}{kwd}-R{/groupcomp}{sep} {/sep}
or {groupseq importance="optional"}{kwd}-R{sep} {/sep}{groupcomp}{kwd}-L{/groupcomp}{/groupseq}
note: Important to specify {sep} here as whitespace might otherwise be squashed.
-->
<!-- Plaintext within arg is generally translated to kwd, but value separators
like '=' and ',' should be wrapped in a delim element. -->
<xsl:template match="arg/text()">
<xsl:choose>
<!-- put trailing '=' inside <sep> -->
<xsl:when test="substring(., string-length(.)) = '='">
<xsl:element name="kwd">
<xsl:attribute name="rev">arg=</xsl:attribute>
<xsl:call-template name="emit-text-with-replacements">
<xsl:with-param name="a_sText" select="substring(., 1, string-length(.) - 1)"/>
</xsl:call-template>
</xsl:element>
<xsl:element name="delim">
<xsl:attribute name="rev">arg=</xsl:attribute>
<xsl:text>=</xsl:text>
</xsl:element>
</xsl:when>
<!-- Special case, single space, assuming it's deliberate so put in inside a sep element. -->
<xsl:when test=". = ' '">
<xsl:element name="sep">
<xsl:attribute name="rev">arg-space</xsl:attribute>
<xsl:text> </xsl:text>
</xsl:element>
</xsl:when>
<!-- Don't wrap other pure whitespace kwd sequences, but emit single space 'sep'
element if a arg or groups follows. If the whitespace includes a newline
we'll emit it, but otherways we'll generally suppress it to avoid
accidentally padding spaces between arguments. -->
<xsl:when test="normalize-space(.) = ''">
<xsl:if test="following::*[position() = 1 and (self::arg or self::group)] and not(ancestor-or-self::*[@role='compact'])">
<xsl:element name="sep">
<xsl:attribute name="rev">arg-whitespace</xsl:attribute>
<xsl:text> </xsl:text>
</xsl:element>
</xsl:if>
<xsl:if test="contains(., ' ') and $g_fRenderSyntaxAsText != 'true'">
<xsl:value-of select="."/>
</xsl:if>
</xsl:when>
<!-- Remainder is all wrapped in kwd, after space normalization. -->
<xsl:otherwise>
<xsl:element name="kwd">
<xsl:attribute name="rev">arg</xsl:attribute>
<xsl:call-template name="emit-text-with-replacements">
<xsl:with-param name="a_sText" select="normalize-space(.)"/>
</xsl:call-template>
</xsl:element>
<xsl:if test="normalize-space(substring(., string-length(.), 1)) = ''
and following::*[position() = 1 and (self::arg or self::group)]
and not(ancestor-or-self::*[@role='compact'])">
<xsl:element name="sep">
<xsl:attribute name="rev">arg-trailing</xsl:attribute>
<xsl:text> </xsl:text>
</xsl:element>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- arg -> groupseq or groupcomp and optionally a repsep element if repeatable. -->
<xsl:template match="arg" >
<xsl:choose>
<xsl:when test="$g_fRenderSyntaxAsText = 'true'">
<xsl:call-template name="arg_or_group_as_text"/>
</xsl:when>
<xsl:otherwise>
<!-- If it's a tighly packed arg, we use groupcomp instead of groupseq to try
avoid it being split in the middle. -->
<xsl:variable name="sGroupType">
<xsl:call-template name="determine_arg_wrapper_element"/>
</xsl:variable>
<xsl:element name="{$sGroupType}">
<xsl:attribute name="rev">arg[<xsl:value-of select="concat(@choice,',',@rep)"/>]</xsl:attribute>
<xsl:choose>
<xsl:when test="not(@choice) or @choice = 'opt'">
<xsl:attribute name="importance">optional</xsl:attribute>
</xsl:when>
<xsl:when test="@choice = 'req'">
<xsl:attribute name="importance">required</xsl:attribute>
</xsl:when>
<xsl:when test="@choice = 'plain'"/>
<xsl:otherwise>
<xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Unexpected @choice value: <xsl:value-of select="@choice"/></xsl:message>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates />
<xsl:if test="@rep = 'repeat'">
<!-- repsep can only be placed at the start of a groupseq/whatever and
the documenation and examples of the element is very sparse. The
PDF output plugin will place the '...' where it finds it and do
nothing if it's empty. The XHTML output plugin ignores it, it seems. -->
<xsl:element name="sep">
<xsl:attribute name="rev">arg[<xsl:value-of select="@choice"/>,repeat]</xsl:attribute>
<xsl:text> </xsl:text>
</xsl:element>
<xsl:element name="groupcomp">
<xsl:attribute name="importance">optional</xsl:attribute>
<xsl:attribute name="rev">arg[<xsl:value-of select="@choice"/>,repeat]</xsl:attribute>
<xsl:attribute name="outputclass">repeatarg</xsl:attribute> <!-- how to make xhtml pass these thru... -->
<xsl:element name="repsep">
<xsl:attribute name="rev">arg[<xsl:value-of select="@choice"/>,repeat]</xsl:attribute>
<xsl:text>...</xsl:text>
</xsl:element>
</xsl:element>
</xsl:if>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="parent::group and @choice != 'plain'">
<xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Expected arg in group to be plain, not optional.</xsl:message>
</xsl:if>
</xsl:template>
<xsl:template name="determine_arg_wrapper_element">
<xsl:choose>
<xsl:when test="not(descendant::group) and not(descendant::text()[contains(.,' ') or normalize-space(.) != .])">
<xsl:text>groupcomp</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>groupseq</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- replaceable under arg -> var -->
<xsl:template match="arg/replaceable" >
<xsl:element name="var">
<xsl:attribute name="rev">replaceable</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- replaceable in para or term -> synph+var -->
<xsl:template match="para/replaceable | term/replaceable | screen/replaceable" >
<xsl:element name="synph">
<xsl:attribute name="rev">replaceable</xsl:attribute>
<xsl:element name="var">
<xsl:attribute name="rev">replaceable</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:element>
</xsl:template>
<!-- replaceable in option -> var -->
<xsl:template match="option/replaceable" >
<xsl:element name="var">
<xsl:attribute name="rev">option/replaceable</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- replaceable in computeroutput or filename -> varname -->
<xsl:template match="computeroutput/replaceable | filename/replaceable" >
<xsl:element name="varname">
<xsl:attribute name="rev">computeroutput/replaceable</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- replaceable/text() in a cmdsynopsis should have hyphens replaced. -->
<xsl:template match="replaceable/text()[ancestor::cmdsynopsis]" >
<xsl:call-template name="emit-text-with-replacements"/>
</xsl:template>
<!--
DocBook 'group' elements are only ever used for multiple choice options
in our refentry XML, it is never used for argument groupings. For
grouping arguments we use nested 'arg' elements.
This is because 'group' with 'group' parent is poorly defned/handled.
Whether the DocBook HTML formatters uses ' | ' separators depends on what
other elements are in the group and their order. arg1+group2+group3 won't
get any, but group1+arg2+group3 will get one between the first two.
-->
<xsl:template match="group[group]" priority="3.0">
<xsl:message terminate="yes">
<xsl:call-template name="error-prefix"/>Immediate group nesting is not allowed! Put nested group inside arg element.
</xsl:message>
</xsl:template>
<xsl:template match="group[count(arg) < 2]" priority="3.0">
<xsl:message terminate="yes">
<xsl:call-template name="error-prefix"/>Group with fewer than two 'arg' elements is not allowed!
</xsl:message>
</xsl:template>
<!-- group -> groupchoice w/attrib -->
<xsl:template match="group">
<xsl:choose>
<xsl:when test="$g_fRenderSyntaxAsText = 'true'">
<xsl:call-template name="arg_or_group_as_text"/>
</xsl:when>
<xsl:otherwise>
<xsl:element name="groupchoice">
<xsl:choose>
<xsl:when test="@choice = 'req'">
<xsl:attribute name="rev">group[req]</xsl:attribute>
<xsl:attribute name="importance">required</xsl:attribute>
</xsl:when>
<xsl:when test="@choice = 'plain'">
<xsl:attribute name="rev">group[plain]</xsl:attribute>
<!-- We don't set the importance here. @todo Check what it does to the output formatting -->
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="rev">group[opt]</xsl:attribute>
<xsl:attribute name="importance">optional</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates />
<xsl:if test="@rep = 'repeat'">
<!-- repsep can only be placed at the start of a groupseq/whatever and
the documenation and examples of the element is very sparse. The
PDF output plugin will place the '...' where it finds it and do
nothing if it's empty. The XHTML output plugin ignores it, it seems. -->
<xsl:message terminate="no"><xsl:call-template name="error-prefix"/>Repeating group is not a good idea...</xsl:message>
<xsl:element name="sep">
<xsl:attribute name="rev">arg[<xsl:value-of select="@choice"/>,repeat]</xsl:attribute>
<xsl:text> </xsl:text>
</xsl:element>
<xsl:element name="groupcomp">
<xsl:attribute name="importance">optional</xsl:attribute>
<xsl:attribute name="rev">arg[<xsl:value-of select="@choice"/>,repeat]</xsl:attribute>
<xsl:attribute name="outputclass">repeatarg</xsl:attribute> <!-- how to make xhtml pass these thru... -->
<xsl:element name="repsep">
<xsl:attribute name="rev">arg[<xsl:value-of select="@choice"/>,repeat]</xsl:attribute>
<xsl:text>...</xsl:text>
</xsl:element>
</xsl:element>
</xsl:if>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- text under a group may need removing. -->
<xsl:template match="group/text()">
<xsl:if test="normalize-space(.) != ''">
<xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>text in group: '<xsl:value-of select="."/>'</xsl:message>
</xsl:if>
<xsl:choose>
<xsl:when test="$g_fRenderSyntaxAsText = 'true'">
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!--
arg or group -> kwd + text
(Code duplicated in docbook-refentry-to-C-help.xsl & docbook2latex.xsl, with local differences.)
-->
<xsl:template name="arg_or_group_as_text" >
<xsl:variable name="fWrappers" select="not(ancestor::group)"/>
<!-- lead separators -->
<xsl:variable name="sLeadSeps">
<xsl:call-template name="arg_or_group_as_text_calc_lead_seps">
<xsl:with-param name="a_fWrappers" select="$fWrappers"/>
</xsl:call-template>
</xsl:variable>
<xsl:if test="$sLeadSeps != ''">
<xsl:element name="sep">
<xsl:attribute name="rev"><xsl:value-of select="concat(local-name(.), '-leadseps')"/></xsl:attribute>
<xsl:value-of select="$sLeadSeps"/>
</xsl:element>
</xsl:if>
<!-- render the arg (TODO: may need to do more work here) -->
<xsl:apply-templates />
<!-- repeat wrapping -->
<xsl:choose>
<xsl:when test="@rep = 'norepeat' or not(@rep) or @rep = ''"/>
<xsl:when test="@rep = 'repeat'"> <xsl:element name="sep"><xsl:value-of select="$arg.rep.repeat.str"/></xsl:element></xsl:when>
<xsl:otherwise><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Invalid rep choice: "<xsl:value-of select="@rep"/>"</xsl:message></xsl:otherwise>
</xsl:choose>
<!-- close wrapping -->
<xsl:if test="$fWrappers">
<xsl:choose>
<xsl:when test="not(@choice) or @choice = ''"> <xsl:element name="sep"><xsl:value-of select="$arg.choice.def.close.str"/></xsl:element></xsl:when>
<xsl:when test="@choice = 'opt'"> <xsl:element name="sep"><xsl:value-of select="$arg.choice.opt.close.str"/></xsl:element></xsl:when>
<xsl:when test="@choice = 'req'"> <xsl:element name="sep"><xsl:value-of select="$arg.choice.req.close.str"/></xsl:element></xsl:when>
</xsl:choose>
<!-- Add a space padding if we're the last element in a repeating arg or group -->
<!-- 2023-03-22 bird: This is incorrectly written. Fix as needed...
<xsl:if test="(parent::arg or parent::group) and not(following-sibiling) and not(ancestor::*[@role='compact'])">
<xsl:text> </xsl:text>
</xsl:if>
-->
</xsl:if>
</xsl:template>
<!-- Helper for arg_or_group_as_text. -->
<xsl:template name="arg_or_group_as_text_calc_lead_seps">
<xsl:param name="a_fWrappers"/>
<xsl:variable name="idSelf" select="generate-id(.)"/>
<!-- separator char if we're not the first child -->
<xsl:if test="../*[generate-id(.) = $idSelf and position() > 1]">
<!--<xsl:value-of select="concat('*',name(),'=', position(),'#')"/>-->
<xsl:choose>
<xsl:when test="parent::group and ancestor::*[@role='compact']"><xsl:value-of select="$arg.or.sep.compact"/></xsl:when>
<xsl:when test="parent::group"><xsl:value-of select="$arg.or.sep"/></xsl:when>
<xsl:when test="ancestor::*[@role='compact']"></xsl:when>
<xsl:when test="ancestor::*/@sepchar"><xsl:value-of select="ancestor::*/@sepchar"/></xsl:when>
<xsl:otherwise><xsl:text> </xsl:text></xsl:otherwise>
</xsl:choose>
</xsl:if>
<!-- open wrapping -->
<xsl:if test="$a_fWrappers">
<xsl:choose>
<xsl:when test="not(@choice) or @choice = ''"> <xsl:value-of select="$arg.choice.def.open.str"/></xsl:when>
<xsl:when test="@choice = 'opt'"> <xsl:value-of select="$arg.choice.opt.open.str"/></xsl:when>
<xsl:when test="@choice = 'req'"> <xsl:value-of select="$arg.choice.req.open.str"/></xsl:when>
<xsl:when test="@choice = 'plain'"/>
<xsl:otherwise><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Invalid arg choice: "<xsl:value-of select="@choice"/>"</xsl:message></xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:template>
<!-- option -->
<xsl:template match="option/text()" >
<xsl:element name="kwd">
<xsl:attribute name="rev">option</xsl:attribute>
<xsl:value-of select="."/>
</xsl:element>
</xsl:template>
<xsl:template match="option" >
<xsl:element name="synph">
<xsl:attribute name="rev">option</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- literal w/o sub-elements -> codeph -->
<xsl:template match="literal[not(*)]" >
<xsl:element name="codeph">
<xsl:attribute name="rev">literal</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- literal with replaceable sub-elements -> synph -->
<xsl:template match="literal[replaceable]" >
<xsl:element name="synph">
<xsl:attribute name="rev">literal/replaceable</xsl:attribute>
<xsl:for-each select="node()">
<xsl:choose>
<xsl:when test="self::text()">
<xsl:element name="kwd">
<xsl:value-of select="."/>
</xsl:element>
</xsl:when>
<xsl:when test="self::replaceable">
<xsl:if test="./*">
<xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Unexpected literal/replaceable child</xsl:message>
</xsl:if>
<xsl:element name="var">
<xsl:value-of select="."/>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Unexpected literal child:
<xsl:value-of select="name(.)" />
</xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:element>
</xsl:template>
<!-- filename -> filepath -->
<xsl:template match="filename" >
<xsl:element name="filepath">
<xsl:attribute name="rev">filename</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- screen - pass thru -->
<xsl:template match="screen" >
<xsl:copy>
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<!-- computeroutput -> systemoutput-->
<xsl:template match="computeroutput">
<xsl:element name="systemoutput">
<xsl:attribute name="rev">computeroutput</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- xref -> xref, but attributes differ. -->
<xsl:template match="xref">
<xsl:element name="xref">
<xsl:attribute name="href"><xsl:value-of select="@linkend"/></xsl:attribute>
<xsl:if test="contains(@linkend, 'http')"><xsl:message terminate="yes">xref/linkend with http</xsl:message></xsl:if>
</xsl:element>
</xsl:template>
<!-- ulink -> xref -->
<xsl:template match="ulink">
<xsl:element name="xref">
<xsl:attribute name="rev">ulink</xsl:attribute>
<xsl:attribute name="scope">external</xsl:attribute> <!-- Just assumes this is external. -->
<xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
<xsl:attribute name="format">html</xsl:attribute>
<xsl:if test="not(starts-with(@url, 'http'))"><xsl:message terminate="yes">ulink url is not http: <xsl:value-of select="@url"/></xsl:message></xsl:if>
</xsl:element>
</xsl:template>
<!-- emphasis -> i -->
<xsl:template match="emphasis">
<xsl:if test="*">
<xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Did not expect emphasis to have children!</xsl:message>
</xsl:if>
<xsl:element name="i">
<xsl:attribute name="rev">emphasis</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!-- note -> note -->
<xsl:template match="note">
<xsl:copy>
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<!-- citetitle -> cite -->
<xsl:template match="citetitle">
<xsl:element name="cite">
<xsl:attribute name="rev">citetitle</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<!--
remark extensions:
-->
<!-- Default: remove all remarks. -->
<xsl:template match="remark"/>
<!--
Captializes the given text.
-->
<xsl:template name="capitalize">
<xsl:param name="text"/>
<xsl:call-template name="str:to-upper">
<xsl:with-param name="text" select="substring($text,1,1)"/>
</xsl:call-template>
<xsl:value-of select="substring($text,2)"/>
</xsl:template>
<!--
Maybe replace hyphens (dashes) with non-breaking ones.
-->
<xsl:template name="emit-text-with-replacements">
<xsl:param name="a_sText" select="."/>
<xsl:choose>
<xsl:when test="$g_fReplaceHyphens = 'true'">
<xsl:call-template name="str:subst">
<xsl:with-param name="text" select="$a_sText"/>
<xsl:with-param name="replace">-</xsl:with-param>
<xsl:with-param name="with">‑</xsl:with-param> <!-- U+2011 / ‑ -->
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$a_sText"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!--
Debug/Diagnostics: Return the path to the specified node (by default the current).
-->
<xsl:template name="get-node-path">
<xsl:param name="Node" select="."/>
<xsl:for-each select="$Node">
<xsl:for-each select="ancestor-or-self::node()">
<xsl:choose>
<xsl:when test="name(.) = ''">
<xsl:value-of select="concat('/text(',')')"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat('/', name(.))"/>
<xsl:choose>
<xsl:when test="@id">
<xsl:text>[@id=</xsl:text>
<xsl:value-of select="@id"/>
<xsl:text>]</xsl:text>
</xsl:when>
<xsl:otherwise>
<!-- Use generate-id() to find the current node position among its siblings. -->
<xsl:variable name="id" select="generate-id(.)"/>
<xsl:for-each select="../node()">
<xsl:if test="generate-id(.) = $id">
<xsl:text>[</xsl:text><xsl:value-of select="position()"/><xsl:text>]</xsl:text>
</xsl:if>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:for-each>
</xsl:template>
<!--
Debug/Diagnostics: Return error message prefix.
-->
<xsl:template name="error-prefix">
<xsl:param name="Node" select="."/>
<xsl:text>error: </xsl:text>
<xsl:call-template name="get-node-path">
<xsl:with-param name="Node" select="$Node"/>
</xsl:call-template>
<xsl:text>: </xsl:text>
</xsl:template>
<!--
Debug/Diagnostics: Print list of nodes (by default all children of current node).
-->
<xsl:template name="list-nodes">
<xsl:param name="Nodes" select="node()"/>
<xsl:for-each select="$Nodes">
<xsl:if test="position() != 1">
<xsl:text>, </xsl:text>
</xsl:if>
<xsl:choose>
<xsl:when test="name(.) = ''">
<xsl:text>text:text()</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="name(.)"/>
<xsl:if test="@id">
<xsl:text>[@id=</xsl:text>
<xsl:value-of select="@id"/>
<xsl:text>]</xsl:text>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>
<xsl:template name="check-children">
<xsl:param name="Node" select="."/>
<xsl:param name="UnsupportedNodes" select="*"/>
<xsl:param name="SupportedNames" select="'none'"/>
<xsl:if test="count($UnsupportedNodes) != 0">
<xsl:message terminate="yes">
<xsl:call-template name="get-node-path">
<xsl:with-param name="Node" select="$Node"/>
</xsl:call-template>
<!-- -->: error: Only <xsl:value-of select="$SupportedNames"/> are supported as children to <!-- -->
<xsl:value-of select="name($Node)"/>
<!-- -->
Unsupported children: <!-- -->
<xsl:call-template name="list-nodes">
<xsl:with-param name="Nodes" select="$UnsupportedNodes"/>
</xsl:call-template>
</xsl:message>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
|