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 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
|
<?xml version="1.0" encoding="ISO-8859-1"?><CONFIG_JAXE>
<LANGAGE>
<FICHIER_SCHEMA nom="dita/schema/technicalContent/xsd/map.xsd"/>
<RACINE element="map"/>
</LANGAGE>
<ENREGISTREMENT>
<DOCTYPE publicId="-//OASIS//DTD DITA Map//EN" systemId="map.dtd"/>
</ENREGISTREMENT>
<MENUS>
<MENU nom="Map">
<MENU_INSERTION nom="map"/>
<MENU_INSERTION nom="anchor"/>
<MENU_INSERTION nom="navref"/>
<MENU_INSERTION nom="reltable"/>
<MENU_INSERTION nom="relrow"/>
<MENU_INSERTION nom="relcell"/>
<MENU_INSERTION nom="relheader"/>
<MENU_INSERTION nom="relcolspec"/>
<MENU_INSERTION nom="topicmeta"/>
<MENU_INSERTION nom="topicref"/>
<MENU_INSERTION nom="keydef"/>
<MENU_INSERTION nom="glossref"/>
<MENU_INSERTION nom="linktext"/>
<SEPARATEUR/>
<MENU_INSERTION nom="topicgroup"/>
<MENU_INSERTION nom="topichead"/>
<MENU_INSERTION nom="anchorref"/>
<MENU_INSERTION nom="mapref"/>
<MENU_INSERTION nom="topicset"/>
<MENU_INSERTION nom="topicsetref"/>
<SEPARATEUR/>
<MENU_INSERTION nom="exportanchors"/>
<MENU_INSERTION nom="anchorid"/>
<MENU_INSERTION nom="anchorkey"/>
</MENU>
<MENU nom="Topic">
<MENU_INSERTION nom="title"/>
<MENU_INSERTION nom="navtitle"/>
<MENU_INSERTION nom="searchtitle"/>
<MENU_INSERTION nom="shortdesc"/>
</MENU>
<MENU nom="Body">
<MENU_INSERTION nom="alt"/>
<MENU_INSERTION nom="cite"/>
<MENU_INSERTION nom="desc"/>
<MENU_INSERTION nom="dd"/>
<MENU_INSERTION nom="ddhd"/>
<MENU_INSERTION nom="dl"/>
<MENU_INSERTION nom="dlentry"/>
<MENU_INSERTION nom="dlhead"/>
<MENU_INSERTION nom="dt"/>
<MENU_INSERTION nom="dthd"/>
<MENU_INSERTION nom="fig"/>
<MENU_INSERTION nom="figgroup"/>
<MENU_INSERTION nom="image"/>
<MENU_INSERTION nom="keyword"/>
<MENU_INSERTION nom="li"/>
<MENU_INSERTION nom="lines"/>
<MENU_INSERTION nom="longdescref"/>
<MENU_INSERTION nom="longquoteref"/>
<MENU_INSERTION nom="lq"/>
<MENU_INSERTION nom="note"/>
<MENU_INSERTION nom="object"/>
<MENU_INSERTION nom="ol"/>
<MENU_INSERTION nom="p"/>
<MENU_INSERTION nom="param"/>
<MENU_INSERTION nom="ph"/>
<MENU_INSERTION nom="pre"/>
<MENU_INSERTION nom="q"/>
<MENU_INSERTION nom="sl"/>
<MENU_INSERTION nom="sli"/>
<MENU_INSERTION nom="text"/>
<MENU_INSERTION nom="ul"/>
<MENU_INSERTION nom="xref"/>
</MENU>
<MENU nom="Table">
<MENU_INSERTION nom="table"/>
<MENU_INSERTION nom="tgroup"/>
<MENU_INSERTION nom="colspec"/>
<MENU_INSERTION nom="thead"/>
<MENU_INSERTION nom="tbody"/>
<MENU_INSERTION nom="row"/>
<MENU_INSERTION nom="entry"/>
<SEPARATEUR/>
<MENU_INSERTION nom="simpletable"/>
<MENU_INSERTION nom="sthead"/>
<MENU_INSERTION nom="strow"/>
<MENU_INSERTION nom="stentry"/>
</MENU>
<MENU nom="Prolog">
<MENU_INSERTION nom="metadata"/>
<MENU_INSERTION nom="author"/>
<MENU_INSERTION nom="source"/>
<MENU_INSERTION nom="publisher"/>
<MENU_INSERTION nom="copyright"/>
<MENU_INSERTION nom="copyryear"/>
<MENU_INSERTION nom="copyrholder"/>
<MENU_INSERTION nom="critdates"/>
<MENU_INSERTION nom="revised"/>
<MENU_INSERTION nom="created"/>
<MENU_INSERTION nom="resourceid"/>
<MENU_INSERTION nom="audience"/>
<MENU_INSERTION nom="category"/>
<MENU_INSERTION nom="keywords"/>
<MENU_INSERTION nom="othermeta"/>
<MENU_INSERTION nom="permissions"/>
<MENU_INSERTION nom="prodinfo"/>
<MENU_INSERTION nom="brand"/>
<MENU_INSERTION nom="series"/>
<MENU_INSERTION nom="platform"/>
<MENU_INSERTION nom="prognum"/>
<MENU_INSERTION nom="featnum"/>
<MENU_INSERTION nom="component"/>
<MENU_INSERTION nom="prodname"/>
<MENU_INSERTION nom="vrmlist"/>
<MENU_INSERTION nom="vrm"/>
</MENU>
<MENU nom="Specialized">
<MENU_INSERTION nom="boolean"/>
<MENU_INSERTION nom="data"/>
<MENU_INSERTION nom="data-about"/>
<MENU_INSERTION nom="draft-comment"/>
<MENU_INSERTION nom="fn"/>
<MENU_INSERTION nom="foreign"/>
<MENU_INSERTION nom="itemgroup"/>
<MENU_INSERTION nom="required-cleanup"/>
<MENU_INSERTION nom="state"/>
<MENU_INSERTION nom="term"/>
<MENU_INSERTION nom="tm"/>
<MENU_INSERTION nom="unknown"/>
</MENU>
<MENU nom="Index">
<MENU_INSERTION nom="index-base"/>
<MENU_INSERTION nom="index-see"/>
<MENU_INSERTION nom="index-see-also"/>
<MENU_INSERTION nom="index-sort-as"/>
<MENU_INSERTION nom="indexterm"/>
<MENU_INSERTION nom="indextermref"/>
</MENU>
</MENUS>
<AFFICHAGE_NOEUDS>
<AFFICHAGE_ELEMENT element="map" type="division">
<PARAMETRE nom="titreAtt" valeur="title"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="anchor" type="vide">
<PARAMETRE nom="titreAtt" valeur="id"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="navref" type="vide"/>
<AFFICHAGE_ELEMENT element="reltable" type="zone"/>
<AFFICHAGE_ELEMENT element="relrow" type="zone"/>
<AFFICHAGE_ELEMENT element="relcell" type="zone"/>
<AFFICHAGE_ELEMENT element="relheader" type="zone"/>
<AFFICHAGE_ELEMENT element="relcolspec" type="zone"/>
<AFFICHAGE_ELEMENT element="topicmeta" type="zone"/>
<AFFICHAGE_ELEMENT element="topicref" type="zone">
<PARAMETRE nom="titreAtt" valeur="href"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="keydef" type="zone">
<PARAMETRE nom="titreAtt" valeur="keys"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="glossref" type="zone">
<PARAMETRE nom="attributsVisibles" valeur="true"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="linktext" type="zone"/>
<AFFICHAGE_ELEMENT element="topicgroup" type="zone"/>
<AFFICHAGE_ELEMENT element="topichead" type="zone"/>
<AFFICHAGE_ELEMENT element="anchorref" type="zone"/>
<AFFICHAGE_ELEMENT element="mapref" type="zone"/>
<AFFICHAGE_ELEMENT element="topicset" type="zone">
<PARAMETRE nom="titreAtt" valeur="id"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="topicsetref" type="zone"/>
<AFFICHAGE_ELEMENT element="exportanchors" type="zone"/>
<AFFICHAGE_ELEMENT element="anchorid" type="vide">
<PARAMETRE nom="titreAtt" valeur="id"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="anchorkey" type="vide">
<PARAMETRE nom="titreAtt" valeur="keyref"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="title" type="zone">
<PARAMETRE nom="style" valeur="GRAS"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="navtitle" type="zone"/>
<AFFICHAGE_ELEMENT element="searchtitle" type="zone"/>
<AFFICHAGE_ELEMENT element="shortdesc" type="zone"/>
<AFFICHAGE_ELEMENT element="alt" type="zone"/>
<AFFICHAGE_ELEMENT element="cite" type="zone"/>
<AFFICHAGE_ELEMENT element="desc" type="zone"/>
<AFFICHAGE_ELEMENT element="dd" type="zone"/>
<AFFICHAGE_ELEMENT element="ddhd" type="zone"/>
<AFFICHAGE_ELEMENT element="dl" type="zone"/>
<AFFICHAGE_ELEMENT element="dlentry" type="zone"/>
<AFFICHAGE_ELEMENT element="dlhead" type="zone"/>
<AFFICHAGE_ELEMENT element="dt" type="zone"/>
<AFFICHAGE_ELEMENT element="dthd" type="zone"/>
<AFFICHAGE_ELEMENT element="fig" type="zone"/>
<AFFICHAGE_ELEMENT element="figgroup" type="zone"/>
<AFFICHAGE_ELEMENT element="image" type="fichier">
<PARAMETRE nom="srcAtt" valeur="href"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="keyword" type="zone"/>
<AFFICHAGE_ELEMENT element="li" type="item"/>
<AFFICHAGE_ELEMENT element="lines" type="zone"/>
<AFFICHAGE_ELEMENT element="longdescref" type="vide"/>
<AFFICHAGE_ELEMENT element="longquoteref" type="vide"/>
<AFFICHAGE_ELEMENT element="lq" type="zone"/>
<AFFICHAGE_ELEMENT element="note" type="zone"/>
<AFFICHAGE_ELEMENT element="object" type="zone"/>
<AFFICHAGE_ELEMENT element="ol" type="liste">
<PARAMETRE nom="typeListe" valeur="NUMEROS"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="p" type="zone"/>
<AFFICHAGE_ELEMENT element="param" type="zone"/>
<AFFICHAGE_ELEMENT element="ph" type="string"/>
<AFFICHAGE_ELEMENT element="pre" type="zone"/>
<AFFICHAGE_ELEMENT element="q" type="zone"/>
<AFFICHAGE_ELEMENT element="sl" type="liste">
<PARAMETRE nom="typeListe" valeur="POINTS"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="sli" type="item"/>
<AFFICHAGE_ELEMENT element="text" type="string"/>
<AFFICHAGE_ELEMENT element="ul" type="liste">
<PARAMETRE nom="typeListe" valeur="POINTS"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="xref" type="zone"/>
<AFFICHAGE_ELEMENT element="table" type="zone"/>
<AFFICHAGE_ELEMENT element="tgroup" type="zone"/>
<AFFICHAGE_ELEMENT element="colspec" type="zone"/>
<AFFICHAGE_ELEMENT element="thead" type="tabletexte">
<PARAMETRE nom="trTag" valeur="row"/>
<PARAMETRE nom="tdTag" valeur="entry"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="tbody" type="tabletexte">
<PARAMETRE nom="trTag" valeur="row"/>
<PARAMETRE nom="tdTag" valeur="entry"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="row" type="zone"/>
<AFFICHAGE_ELEMENT element="entry" type="zone"/>
<AFFICHAGE_ELEMENT element="simpletable" type="zone"/>
<AFFICHAGE_ELEMENT element="sthead" type="zone"/>
<AFFICHAGE_ELEMENT element="strow" type="zone"/>
<AFFICHAGE_ELEMENT element="stentry" type="zone"/>
<AFFICHAGE_ELEMENT element="metadata" type="zone"/>
<AFFICHAGE_ELEMENT element="author" type="zone"/>
<AFFICHAGE_ELEMENT element="source" type="zone"/>
<AFFICHAGE_ELEMENT element="publisher" type="zone"/>
<AFFICHAGE_ELEMENT element="copyright" type="zone"/>
<AFFICHAGE_ELEMENT element="copyryear" type="vide">
<PARAMETRE nom="titreAtt" valeur="year"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="copyrholder" type="zone"/>
<AFFICHAGE_ELEMENT element="critdates" type="zone"/>
<AFFICHAGE_ELEMENT element="revised" type="vide">
<PARAMETRE nom="titreAtt" valeur="modified"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="created" type="vide">
<PARAMETRE nom="titreAtt" valeur="date"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="resourceid" type="vide">
<PARAMETRE nom="titreAtt" valeur="id"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="audience" type="vide"/>
<AFFICHAGE_ELEMENT element="category" type="zone"/>
<AFFICHAGE_ELEMENT element="keywords" type="zone"/>
<AFFICHAGE_ELEMENT element="othermeta" type="vide">
<PARAMETRE nom="attributsVisibles" valeur="true"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="permissions" type="vide">
<PARAMETRE nom="titreAtt" valeur="view"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="prodinfo" type="zone"/>
<AFFICHAGE_ELEMENT element="brand" type="zone"/>
<AFFICHAGE_ELEMENT element="series" type="zone"/>
<AFFICHAGE_ELEMENT element="platform" type="zone"/>
<AFFICHAGE_ELEMENT element="prognum" type="zone"/>
<AFFICHAGE_ELEMENT element="featnum" type="zone"/>
<AFFICHAGE_ELEMENT element="component" type="zone"/>
<AFFICHAGE_ELEMENT element="prodname" type="zone"/>
<AFFICHAGE_ELEMENT element="vrmlist" type="zone"/>
<AFFICHAGE_ELEMENT element="vrm" type="vide">
<PARAMETRE nom="titreAtt" valeur="version"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="boolean" type="vide">
<PARAMETRE nom="titreAtt" valeur="state"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="data" type="zone"/>
<AFFICHAGE_ELEMENT element="data-about" type="zone"/>
<AFFICHAGE_ELEMENT element="draft-comment" type="zone"/>
<AFFICHAGE_ELEMENT element="fn" type="zone"/>
<AFFICHAGE_ELEMENT element="foreign" type="zone"/>
<AFFICHAGE_ELEMENT element="itemgroup" type="zone"/>
<AFFICHAGE_ELEMENT element="required-cleanup" type="zone"/>
<AFFICHAGE_ELEMENT element="state" type="vide">
<PARAMETRE nom="attributsVisibles" valeur="true"/>
</AFFICHAGE_ELEMENT>
<AFFICHAGE_ELEMENT element="term" type="zone"/>
<AFFICHAGE_ELEMENT element="tm" type="zone"/>
<AFFICHAGE_ELEMENT element="unknown" type="zone"/>
<AFFICHAGE_ELEMENT element="index-base" type="zone"/>
<AFFICHAGE_ELEMENT element="index-see" type="zone"/>
<AFFICHAGE_ELEMENT element="index-see-also" type="zone"/>
<AFFICHAGE_ELEMENT element="index-sort-as" type="zone"/>
<AFFICHAGE_ELEMENT element="indexterm" type="zone"/>
<AFFICHAGE_ELEMENT element="indextermref" type="vide">
<PARAMETRE nom="titreAtt" valeur="keyref"/>
</AFFICHAGE_ELEMENT>
</AFFICHAGE_NOEUDS>
<EXPORTS>
<EXPORT nom="HTML" sortie="HTML">
<FICHIER_XSL nom="dita/xsl/map2htmtoc.xsl"/>
</EXPORT>
<EXPORT nom="Docbook" sortie="XML">
<FICHIER_XSL nom="dita/xsl/map2docbook.xsl"/>
</EXPORT>
<EXPORT nom="PDF" sortie="PDF">
<FICHIER_XSL nom="dita/xsl/topicmerge.xsl"/>
<FICHIER_XSL nom="dita/xsl/dita2fo-shell.xsl"/>
</EXPORT>
</EXPORTS>
<STRINGS>
<DESCRIPTION_CONFIG>DITA map</DESCRIPTION_CONFIG>
<STRINGS_ELEMENT element="map">
<TITRE>map</TITRE>
<DOCUMENTATION>
The <map> element is used to define a map
which describes the relationships among a set of DITA topics. Maps consist
of references to topics organized into hierarchies and tables. Maps provide
a way to express these relationships in a single common format that can be
used for different outputs.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="anchor">
<TITRE>anchor</TITRE>
<DOCUMENTATION>
The <anchor> element is used for runtime
integration of navigation. It provides an integration point that another map
can point to in order to insert its navigation into the current navigation
tree. It is currently supported by Eclipse output only.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="navref">
<TITRE>navref</TITRE>
<DOCUMENTATION>
The <navref> element references a map file
from within a map file. The reference is resolved at runtime for Eclipse
navigation, typically to pull together the navigation for multiple components
into a product navigation.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="reltable">
<TITRE>reltable</TITRE>
<DOCUMENTATION>
The relationship table (<reltable>) defines
relationships between topics, based on the familiar table model of rows (<relrow>),
columns (<relheader>), and cells (<relcell>).
The <relcell> elements can contain <topicref>
elements, which are then related to other <topicref>
elements in the same row (although not necessarily in the same cell). By default,
the contents of a <reltable> element are not output
for navigation or TOC purposes, and are used only to define relationships
that can be expressed as topic-to-topic links.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="relrow">
<TITRE>relrow</TITRE>
<DOCUMENTATION>
A <relrow> is a row in the relationship table.
This creates a relationship between the cells in the row, which will end up
expressed as links among the <topicref> elements in
the cells.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="relcell">
<TITRE>relcell</TITRE>
<DOCUMENTATION>
A <relcell> element is a cell in the relationship
table. The <topicref> elements it contains will be related
to topicrefs in other cells of the same row. By default, topicrefs in the
same cell are not related to each other, unless you change the relcell's collection-type
attribute to indicate that they are related.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="relheader">
<TITRE>relheader</TITRE>
<DOCUMENTATION>
The <relheader> element is a row of column
definitions (<relcolspec> elements) in a relationship
table. Each table can have only one set of column definitions.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="relcolspec">
<TITRE>relcolspec</TITRE>
<DOCUMENTATION>
A column definition in the relationship table. You can use <relcolspec>
column definitions to set defaults for the attributes of <topicref>
elements in the column. For example, you can set type="concept" to treat all
untyped <topicref> elements in the column as concepts.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="topicmeta">
<TITRE>topicmeta</TITRE>
<DOCUMENTATION>
The <topicmeta> element defines the metadata
that applies to a topic and the topic's children. When creating links, it
can also be used to override the title and short description of the topic.
In addition, it can insert index entries through the <keywords>
element.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="topicref">
<TITRE>topicref</TITRE>
<DOCUMENTATION>
The <topicref> element designates a topic
(such as a concept, task, or reference) as a link in a DITA map. A <topicref>
can contain other<topicref> elements, allowing you to
express navigation or table-of-contents hierarchies, as well as implying relationships
between the containing <topicref> and its children.
You can set the collection-type of a container <topicref>
to determine how its children are related to each other. Relationships end
up expressed as links in the output (with each participant in a relationship
having links to the other participants).
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="keydef">
<TITRE>keydef</TITRE>
<DOCUMENTATION>The <keydef> specializes <topicref> to set a chunk="to-navigation"
default and required id attribute to make it easy to delimit standalone, reusable collections of content within a
map (such as lessons within a course or large tasks explained by a collection of discrete task topics).
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="glossref">
<TITRE>glossref</TITRE>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="linktext">
<TITRE>linktext</TITRE>
<DOCUMENTATION>
The <linktext> element provides the literal
label or line of text for a link. In most cases, the text of a link can be
resolved during processing by cross reference with the target resource. Use
the <linktext> element only when the target cannot be
reached, such as when it is a peer or external link.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="topicgroup">
<TITRE>topicgroup</TITRE>
<DOCUMENTATION>The <topicgroup> element is for creating
groups of <topicref> elements without affecting the
hierarchy, as opposed to nested <topicref> elements
within a <topicref>, which does imply a structural hierarchy.
It is typically used outside a hierarchy to identify groups for linking without
affecting the resulting toc/navigation output.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="topichead">
<TITRE>topichead</TITRE>
<DOCUMENTATION>The <topichead> element provides a title-only
entry in a navigation map, as an alternative to the fully-linked title provided
by the <topicref> element.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="anchorref">
<TITRE>anchorref</TITRE>
<DOCUMENTATION>The <anchorref> specializes <topicref> to set format="ditamap"
and type="anchor" defaults for a reference to an <anchor> to enable push of collections
of content smaller than a map onto an anchor.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="mapref">
<TITRE>mapref</TITRE>
<DOCUMENTATION>The <anchorref> specializes <topicref> to set a format="ditamap"
default for more intuitive map references
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="topicset">
<TITRE>topicset</TITRE>
<DOCUMENTATION>The <topicset> specializes <topicref> to set a chunk="to-navigation"
default and required id attribute to make it easy to delimit standalone, reusable collections of content within a
map (such as lessons within a course or large tasks explained by a collection of discrete task topics).
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="topicsetref">
<TITRE>topicsetref</TITRE>
<DOCUMENTATION>The <topicsetref> pecializes <topicref> to set format="ditamap" and
type="branch" defaults for a reference to a <topicset> to enable reuse of small collections within a
map (especially for task composition approaches in which multiple larger task collections reuse smaller component task collections).
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="exportanchors">
<TITRE>exportanchors</TITRE>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="anchorid">
<TITRE>anchorid</TITRE>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="anchorkey">
<TITRE>anchorkey</TITRE>
<DOCUMENTATION>The <keyword> element identifies a keyword
or token, such as a single value from an enumerated list, the name of a command
or parameter, or a lookup key for a message (contrast with
term
).
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="title">
<TITRE>title</TITRE>
<DOCUMENTATION>The <title> element contains a heading or
label for the main parts of a document such as <topic>, <section>, and
<example> and for the display elements such as figure (<fig>)
and <table>.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="navtitle">
<TITRE>navtitle</TITRE>
<DOCUMENTATION>The navigation title (<navtitle>) element
is one of a set of alternate titles that can be included inside the <titlealts>
element. This navigation title may differ from the first level heading that
shows in the main browser window. Use <navtitle> when
the actual title of the topic isn't appropriate for use in navigation panes
or online contents (for example, because the actual title is too long or needs
stated in terse, imperative voice in the navigation).
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="searchtitle">
<TITRE>searchtitle</TITRE>
<DOCUMENTATION>
When your DITA topic is transformed to XHTML, the <searchtitle>
element is used to create a title element at the top of the resulting HTML
file. This title is normally used in search result summaries by some search
engines, such as that in Eclipse (
http://eclipse.org
); if not set, the XHTML's
title element defaults to the source topic's title content (which may not
be as well optimized for search summaries)
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="shortdesc">
<TITRE>shortdesc</TITRE>
<DOCUMENTATION>
The short description (<shortdesc>) element
occurs between the topic title and the topic body, as the initial paragraph-like
content of a topic. The short description, which represents the purpose or
theme of the topic, is also intended to be used as a link preview and for
searching.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="alt">
<TITRE>alt</TITRE>
<DOCUMENTATION>The alt element provides an element equivalent of the alt attribute
on the image element. As an element, it provides direct text entry within
an XML editor and is more easily accessed than an attribute for translation.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="cite">
<TITRE>cite</TITRE>
<DOCUMENTATION>The <cite> element is used when you need
a bibliographic citation that refers to a book or article. It specifically
identifies the title of the resource. Its keyref attribute
allows the citation to be associated to other possible bibliographic processing
(not supported yet).
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="desc">
<TITRE>desc</TITRE>
<DOCUMENTATION>The <desc> element contains the description
of the current element. A description should provide more information than
the title.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="dd">
<TITRE>dd</TITRE>
<DOCUMENTATION>The definition description (<dd>) element
contains the description of a term in a definition list entry.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="ddhd">
<TITRE>ddhd</TITRE>
<DOCUMENTATION>The definition descriptions heading (<ddhd>) element contains
an optional heading or title for a column of descriptions or definitions in
a definition list
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="dl">
<TITRE>dl</TITRE>
<DOCUMENTATION>A definition list (<dl>) is a list of terms
and corresponding definitions. The term (<dt>) is usually
flush left. The description or definition (<dt>) is
usually either indented and on the next line, or on the same line to the right
of the term.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="dlentry">
<TITRE>dlentry</TITRE>
<DOCUMENTATION>In a definition list, each list item is defined by the definition
list entry (<dlentry>) element. The definition list entry element includes
a term <dt> and one or more definitions or descriptions <dd> of that
term.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="dlhead">
<TITRE>dlhead</TITRE>
<DOCUMENTATION>The <dlhead> element contains optional headings
for the term and description columns in a definition list. The definition
list heading contains a heading <dthd> for the column
of terms and an optional heading <ddhd>for the column
of descriptions.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="dt">
<TITRE>dt</TITRE>
<DOCUMENTATION>The definition term <dt> element contains
a term in a definition list entry.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="dthd">
<TITRE>dthd</TITRE>
<DOCUMENTATION>The definition term heading (<dthd>) element is contained in
a definition list head (<dlhead>) and provides an optional heading for
the column of terms in a description list.</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="fig">
<TITRE>fig</TITRE>
<DOCUMENTATION>The figure (<fig>) element is a display context
(sometimes called an exhibit) with an optional title for a wide variety
of content. Most commonly, the figure element contains an image element (a
graphic or artwork), but it can contain several kinds of text objects as well.
A title is placed inside the figure element to provide a caption to describe
the content.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="figgroup">
<TITRE>figgroup</TITRE>
<DOCUMENTATION>The <figgroup> element is used only for specialization
at this time. Figure groups can be used to contain multiple cross-references,
footnotes or keywords, but not multipart images. Multipart images in DITA
should be represented by a suitable media type displayed by the <object>
element.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="image">
<TITRE>image</TITRE>
<DOCUMENTATION>Include artwork or images in a DITA topic by using the <image>
element. The <image> element has optional attributes
that indicate whether the placement of the included graphic or artwork should
be inline (like a button or icon), or on a separate line for a larger image.
An href attribute is required on the image element,
as this attribute creates a pointer to the image, and allows the output formatting
processor to bring the image into the text flow. To make the intent of the
image more accessible for users using screen readers or text-only readers,
always include a description of the image's content in the alt attribute.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="keyword">
<TITRE>keyword</TITRE>
<DOCUMENTATION>The <keyword> element identifies a keyword
or token, such as a single value from an enumerated list, the name of a command
or parameter, or a lookup key for a message (contrast with
term
).
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="li">
<TITRE>li</TITRE>
<DOCUMENTATION>A list (<li>) item is a single item in an ordered <ol> or
unordered <ul> list. When a DITA topic is formatted for output, numbers
and alpha characters are usually output with list items in ordered lists,
while bullets and dashes are usually output with list items in unordered lists.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="lines">
<TITRE>lines</TITRE>
<DOCUMENTATION>The <lines> element may be used to represent
dialogs, lists, text fragments, and so forth. The <lines>
element is similar to <pre> in that hard line breaks
are preserved, but the font style is not set to monospace, and extra spaces
inside the lines are not preserved.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="longdescref">
<TITRE>longdescref</TITRE>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="longquoteref">
<TITRE>longquoteref</TITRE>
<DOCUMENTATION>
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="lq">
<TITRE>lq</TITRE>
<DOCUMENTATION>The long quote (<lq>) element indicates
content quoted from another source. Use the quote element <q>for
short, inline quotations, and long quote <lq> for quotations
that are too long for inline use, following normal guidelines for quoting
other sources. You can store a URL to the source of the quotation in the href attribute.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="note">
<TITRE>note</TITRE>
<DOCUMENTATION>A <note> element contains information, differentiated
from the main text, which expands on or calls attention to a particular point.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="object">
<TITRE>object</TITRE>
<DOCUMENTATION>DITA's <object> element corresponds to the
HTML <object> element. The <object>
element allows authors to include animated images, applets, plug-ins, ActiveX
controls, video clips, and other multimedia objects in a topic for rendering
after transformation to HTML.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="ol">
<TITRE>ol</TITRE>
<DOCUMENTATION>An ordered list (<ol>) is a list of items sorted by sequence
or order of importance.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="p">
<TITRE>p</TITRE>
<DOCUMENTATION>A paragraph element (<p>) is a block of
text containing a single main idea.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="param">
<TITRE>param</TITRE>
<DOCUMENTATION>The parameter (<param>)element specifies
a set of values that may be required by an <object>
at runtime. Any number of <param> elements may appear
in the content of an object in any order, but must be placed at the start
of the content of the enclosing object. This element is comparable to the
XHMTL <param> element.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="ph">
<TITRE>ph</TITRE>
<DOCUMENTATION>The phrase (<ph>) element is used to organize
content for reuse or conditional processing (for example, when part of a paragraph
applies to a particular audience). It can be used by future specializations
of DITA to apply specific processing or formatting to marked up phrases.</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="pre">
<TITRE>pre</TITRE>
<DOCUMENTATION>The preformatted element (<pre>) preserves
line breaks and spaces entered manually by the author in the content of the
element, and also presents the content in a monospaced type font (depending
on your output formatting processor).
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="q">
<TITRE>q</TITRE>
<DOCUMENTATION>A quotation element (<q>) indicates content quoted from another
source. This element is used for short quotes which are displayed inline.
Use the long quote element (<lq>) for quotations that should be set off
from the surrounding text.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="sl">
<TITRE>sl</TITRE>
<DOCUMENTATION>The <sl> element contains a simple list of
items of short, phrase-like content, such as in documenting the materials
in a kit or package.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="sli">
<TITRE>sli</TITRE>
<DOCUMENTATION>
A simple list item (<sli>) is a single item in a simple list<sl>.
Simple list items have phrase or text content, adequate for describing package
contents, for example. When a DITA topic is formatted for output, the items
of a simple list are placed each on its own line, with no other prefix such
as a number (as in an ordered list) or bullet (as in an unordered list)..
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="text">
<TITRE>text</TITRE>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="ul">
<TITRE>ul</TITRE>
<DOCUMENTATION>In an unordered list (<ul>), the order of the list items is
not significant. List items are typically styled on output with a "bullet"
character, depending on nesting level.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="xref">
<TITRE>xref</TITRE>
<DOCUMENTATION>Use the cross-reference (<xref>) element
to link to a different location within the current topic, or a different topic
within the same help system or DITA document. You can also point to external
sources, such as Web pages, or to a location in another topic as well. The href attribute
on the <xref> element is used to create the link pointer,
or URL.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="table">
<TITRE>table</TITRE>
<DOCUMENTATION>
The <table> element organizes arbitrarily
complex relationships of tabular information. This standard table markup allows
column or row spanning and table captions or descriptions. A optional title
allowed inside the table element provides a caption to describe the table.
See
simpletable
for a simplified
table model that can be specialized to represent more regular relationships
of data.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="tgroup">
<TITRE>tgroup</TITRE>
<DOCUMENTATION>
The <tgroup> element in a table contains
column, row, spanning, header and footer specifications, and the body (<tbody>)
of the table.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="colspec">
<TITRE>colspec</TITRE>
<DOCUMENTATION>
The <colspec> element contains a column specification
for a table, including assigning a column name and number, cell content alignment,
and column width.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="thead">
<TITRE>thead</TITRE>
<DOCUMENTATION>
The table header (<thead>) element precedes
the table body (<tbody>) element in a complex table.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="tbody">
<TITRE>tbody</TITRE>
<DOCUMENTATION>
The <tbody> element contains the rows in
a table.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="row">
<TITRE>row</TITRE>
<DOCUMENTATION>The <row> element contains a single row in
a table <tgroup>.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="entry">
<TITRE>entry</TITRE>
<DOCUMENTATION>The <entry> element defines a single cell
in a table.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="simpletable">
<TITRE>simpletable</TITRE>
<DOCUMENTATION>The <simpletable> element is used for tables
that are regular in structure and do not need a caption. Choose the simple
table element when you want to show information in regular rows and columns.
For example, multi-column tabular data such as phone directory listings or
parts lists are good candidates for simpletable. Another good use of simpletable
is for information that seems to beg for a "three-part definition list"—just
use the keycol attribute to indicate which column represents the "key" or
term-like column of your structure.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="sthead">
<TITRE>sthead</TITRE>
<DOCUMENTATION>The simpletable header (<sthead>) element contains the table's
header row. The header row is optional in a simple table.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="strow">
<TITRE>strow</TITRE>
<DOCUMENTATION>The <simpletable> row (<strow>)
element specifies a row in a simple table, like row in a conventional
table
.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="stentry">
<TITRE>stentry</TITRE>
<DOCUMENTATION>The simpletable entry (<stentry>) element represents a single
table cell, like <entry> in <table>. You can place any number of stentry
cells in either an
sthead
element
(for headings) or
strow
element (for
rows of data).
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="metadata">
<TITRE>metadata</TITRE>
<DOCUMENTATION>The <metadata> section of the prolog contains
information about a topic such as audience and product information. Metadata
can be used by computational processes to select particular topics or to prepare
search indexes or to customize navigation.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="author">
<TITRE>author</TITRE>
<DOCUMENTATION>The <author> metadata element contains the
name of the topic's author. The currently unsupported keyref attribute can
point to another location where the author information is defined.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="source">
<TITRE>source</TITRE>
<DOCUMENTATION>The <source> element contains a reference
to a resource from which the present topic is derived, either completely or
in part. The element can contain a description of the resource; the href reference
can be a string or a URL that points to it.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="publisher">
<TITRE>publisher</TITRE>
<DOCUMENTATION>The <publisher> metadata element contains
the name of the person, company, or organization responsible for making the
content or subject of the topic available.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="copyright">
<TITRE>copyright</TITRE>
<DOCUMENTATION>The <copyright> element is used for a single
copyright entry. It includes the copyright years and the copyright holder.
Multiple <copyright> statements are allowed.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="copyryear">
<TITRE>copyryear</TITRE>
<DOCUMENTATION>The <copyryear> element contains the copyright
year as specified by the year attribute.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="copyrholder">
<TITRE>copyrholder</TITRE>
<DOCUMENTATION>The copyright holder (<copyrholder>) element
names the entity that holds legal rights to the material contained in the
topic.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="critdates">
<TITRE>critdates</TITRE>
<DOCUMENTATION>The <critdates> element contains the critical
dates in a document life cycle, such as the creation date and multiple revision
dates.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="revised">
<TITRE>revised</TITRE>
<DOCUMENTATION>The <revised> element in the prolog is used
to maintain tracking dates that are important in a topic development cycle,
such as the last modification date, the original availability date, and the
expiration date.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="created">
<TITRE>created</TITRE>
<DOCUMENTATION>The <created> element specifies the document
creation date using the date attribute.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="resourceid">
<TITRE>resourceid</TITRE>
<DOCUMENTATION>The <resourceid> element provides an identifier
for applications that require them in a particular format, when the normal
id attribute of the topic can't be used. Each resourceid entry should be unique.
It is one of the metadata elements that can be included within the prolog
of a topic, along with document tracking and product information, etc. The
element has no content, but takes an id attribute
or an appname attribute.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="audience">
<TITRE>audience</TITRE>
<DOCUMENTATION>The <audience> metadata element indicates,
through the value of its type attribute, the intended audience for a topic.
Since a topic can have multiple audiences, you can include multiple audience
elements. For each audience you specify, you can identify the high-level task
(job) they are trying to accomplish and the level
of experience (experiencelevel) expected.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="category">
<TITRE>category</TITRE>
<DOCUMENTATION>The <category> element can represent any
category by which a topic might be classified for retrieval or navigation;
for example, the categories could be used to group topics in a generated navigation
bar. Topics can belong to multiple categories.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="keywords">
<TITRE>keywords</TITRE>
<DOCUMENTATION>The <keywords> element contains a list of
keyword entries (using
indexterm
or
keyword
markup) that can be used by a search
engine.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="othermeta">
<TITRE>othermeta</TITRE>
<DOCUMENTATION>The <othermeta> element can be used to identify
properties not otherwise included in <metadata> and
assign name/content values to those properties. The name attribute identifies
the property and the content attribute specifies the property's value. The
values in this attribute are output as HTML metadata elements, and have no
defined meaning for other possible outputs such as PDF.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="permissions">
<TITRE>permissions</TITRE>
<DOCUMENTATION>The <permissions> empty prolog element can
indicate any preferred controls for access to a topic. Topics can be filtered
based on the permissions element. This capability depends on your output formatting
process.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="prodinfo">
<TITRE>prodinfo</TITRE>
<DOCUMENTATION>The <prodinfo> metadata element in the prolog
contains information about the product or products that are the subject matter
of the current topic.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="brand">
<TITRE>brand</TITRE>
<DOCUMENTATION>The <brand> element indicates the manufacturer
or brand associated with the product described by the parent
<prodinfo>
element.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="series">
<TITRE>series</TITRE>
<DOCUMENTATION>The <series> metadata element contains information
about the product series that the topic supports.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="platform">
<TITRE>platform</TITRE>
<DOCUMENTATION>The <platform> metadata element contains
a description of the operating system and/or hardware related to the product
being described by the <prodinfo> element.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="prognum">
<TITRE>prognum</TITRE>
<DOCUMENTATION>The <prognum> metadata element identifies
the program number of the associated program product. This is typically an
order number or a product tracking code that could be replaced by an order
number when a product completes development.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="featnum">
<TITRE>featnum</TITRE>
<DOCUMENTATION>The <featnum> element contains the feature
number of a product in the document metadata.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="component">
<TITRE>component</TITRE>
<DOCUMENTATION>The <component> element describes the component
of the product that this topic is concerned with. For example, a product might
be made up of many components, each of which is installable separately. Components
might also be shared by several products so that the same component is available
for installation with many products. This identification can be used to check
cross-component dependencies when some components are installed, but not others.
It could also be used to make sure that topics are hidden, removed, or flagged
in some way when the component they describe isn't installed. Such process-control
logic is not currently supported in DITA processing.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="prodname">
<TITRE>prodname</TITRE>
<DOCUMENTATION>The <prodname> metadata element contains
the name of the product that is supported by the information in this topic.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="vrmlist">
<TITRE>vrmlist</TITRE>
<DOCUMENTATION>The <vrmlist> element contains a set of <vrm>
elements for logging the version, release, and modification information for
multiple products or versions of products to which the topic applies.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="vrm">
<TITRE>vrm</TITRE>
<DOCUMENTATION>The empty <vrm> element contains information about a single product's
version, modification, and release, to which the current topic applies.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="boolean">
<TITRE>boolean</TITRE>
<DOCUMENTATION>( Deprecated ) - The <boolean> element is used to express
one of two opposite values, such as yes or no, on or off, true or false, high
or low, and so forth. The element itself is empty; the value of the element
is stored in its state attribute, and
the semantic associated with the value is typically in a specialized name
derived from this element. If you need more than two values (for example,
"yes," "no" and "don't care") use the
<state>
element instead. This element is primarily for specialization, where
it can be used to require a logical true or false designation in a particular
part of the document.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="data">
<TITRE>data</TITRE>
<DOCUMENTATION>The <data> element represents a property
within a DITA topic or map. While the <data> element
can be used directly to capture properties, it is particularly useful as a
basis for specialization. Default processing treats the property values as
an unknown kind of metadata, but custom processing can match the name attribute
or specialized element to format properties as sidebars or other adornments
or to harvest properties for automated processing. </DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="data-about">
<TITRE>data-about</TITRE>
<DOCUMENTATION>
The <data-about> element identifies the subject
of a property when the subject isn't associated with the context in which
the property is specified. The property itself is expressed by the <data>
element. The <data-about> element handles exception
cases where a property must be expressed somewhere other than inside the actual
subject of the property. The <data-about> element is
particularly useful as a basis for specialization in combination with the <data>
element.
Don't use the <data-about>
element to identify the object of a property. The href attribute
of the <data> element serves that purpose.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="draft-comment">
<TITRE>draft-comment</TITRE>
<DOCUMENTATION>The <draft-comment> element allows simple
review and discussion of topic contents within the marked-up content. Use
the <draft-comment> element to ask a question or make a comment that you
would like others to review. To indicate the source of the draft comment or
the status of the comment, use the author, time or disposition attributes.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="fn">
<TITRE>fn</TITRE>
<DOCUMENTATION>Use footnote (<fn>) to annotate text with
notes that are not appropriate for inclusion in line or to indicate the source
for facts or other material used in the text.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="foreign">
<TITRE>foreign</TITRE>
<DOCUMENTATION>The <foreign> element is an open extension that allows information architects
to incorporate existing standard vocabularies for non-textual content. like MathML and SVG, as inline
objects. If <foreign> contains more than one alternative content element, they will all be processed.
Specialization of <foreign> should be implemented as a domain, but for those looking for more
control over the content can implement foreign vocabulary as an element specialization.</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="itemgroup">
<TITRE>itemgroup</TITRE>
<DOCUMENTATION>The <itemgroup> element is reserved for specialization
of DITA. As a container element, it can be used to sub-divide or organize
elements that occur inside a list item, definition, or parameter definition.</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="required-cleanup">
<TITRE>required-cleanup</TITRE>
<DOCUMENTATION>A <required-cleanup> element is used as a
placeholder for migrated elements that cannot be appropriately tagged without
manual intervention. As the element name implies, the intent for authors is
to clean up the contained material and eventually get rid of the <required-cleanup>
element. Authors should not insert this element into documents.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="state">
<TITRE>state</TITRE>
<DOCUMENTATION>The <state> element specifies a name/value
pair whenever it is necessary to represent a named state that has a variable
value. The element is primarily intended for use in specializations to represent
specific states (like logic circuit states, chemical reaction states, airplane
instrumentation states, and so forth).
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="term">
<TITRE>term</TITRE>
<DOCUMENTATION>The <term> element identifies words that
represent extended definitions or explanations. In future development of DITA,
for example, terms might provide associative linking to matching glossary
entries.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="tm">
<TITRE>tm</TITRE>
<DOCUMENTATION>The trademark (<tm>) element in DITA is used
to markup and identify a term or phrase that is trademarked. Trademarks include
registered trademarks, service marks, slogans and logos.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="unknown">
<TITRE>unknown</TITRE>
<DOCUMENTATION>
The <unknown> element is an open extension that allows information architects to
incorporate xml fragments that does not necessarily fit into an exisitng DITA use case.
The base processing for <unknown> is to supress unless otherwise instructed.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="index-base">
<TITRE>index-base</TITRE>
<DOCUMENTATION>The <index-base> element allows indexing extensions to be added by specializing off this
element. It does not in itself have any meaning and should be ignored in processing.</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="index-see">
<TITRE>index-see</TITRE>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="index-see-also">
<TITRE>index-see-also</TITRE>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="index-sort-as">
<TITRE>index-sort-as</TITRE>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="indexterm">
<TITRE>indexterm</TITRE>
<DOCUMENTATION>An <indexterm> is an index entry. You can
nest entries to create multi-level indexes. The content is not output as part
of topic content, only as part of the index.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_ELEMENT element="indextermref">
<TITRE>indextermref</TITRE>
<DOCUMENTATION>An <indextermref> is a reference to an index
entry in a lookup table used by the indexing process. If you want to create
index markers pointing to referenced items, but only want page numbers instead
of separate index entries to be generated, use the index term reference <indextermref>
element. This adds the page number of the reference to the index without creating
a separate index entry.
</DOCUMENTATION>
</STRINGS_ELEMENT>
<STRINGS_EXPORT export="HTML">
<TITRE>Export to HTML...</TITRE>
</STRINGS_EXPORT>
<STRINGS_EXPORT export="Docbook">
<TITRE>Export to Docbook...</TITRE>
</STRINGS_EXPORT>
<STRINGS_EXPORT export="PDF">
<TITRE>Export to PDF...</TITRE>
</STRINGS_EXPORT>
</STRINGS>
</CONFIG_JAXE>
|