This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ug-report.html
1180 lines (976 loc) · 49.5 KB
/
ug-report.html
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
<?xml version="1.0" encoding="UTF-8"?><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>oXygen metrics for ug.ditamap</title><style type="text/css">
body {
font: 1em Arial,"Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
margin:20px;
padding-bottom:300px;
}
h1{font-size:2em;}
h2{margin-top:30px; font-size:1.5em;}
h3{margin-top:20px;color:#333; margin-left:1em}
p{margin-left:1em}
a{text-decoration:none; color:#235EB6}
.tentry {
display : block;
}
.htable {
align : center;
margin-left : 1em;
max-width:750px;
width : 75%;
border:1px solid #E1E1FF;
font-size:1em;
}
tr:nth-child(even) {
background: #F0F0FF
}
td{padding:5px 10px 5px 10px;}
td:first-child{width:70%}
.header {
background:#8099B3;
color:white;
}
th{padding:4px}
.stable {
border:1px solid #E1E1FF;
align : center;
margin-left : 1em;
width : 75%;
max-width:750px;
font-size:1em;
}
</style></head>
<body>
<h1>oXygen metrics for ug.ditamap</h1>
<div class="toc" id="toc"><span class="tentry"><a href="#maininformation">Main information</a></span><span class="tentry"><a href="#infotypes">Information types</a></span><span class="tentry"><a href="#elements">Elements</a></span><span class="tentry"><a href="#domainanalysis">Domain analysis</a></span><span class="tentry"><a href="#contentreuse">Content reuse</a></span><span class="tentry"><a href="#attributes">Attributes</a></span><span class="tentry"><a href="#conditionalAttributes">Conditional Attributes</a></span><span class="tentry"><a href="#textinformation">Text information</a></span><span class="tentry"><a href="#processinginstructions">Processing Instructions</a></span></div>
<h2 id="maininformation">Main information</h2>
<table class="stable">
<tr>
<td title="">Total maps processed</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">Unique maps</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">Total topics processed</td>
<td align="right">91</td>
</tr>
<tr>
<td title="">Unique topics</td>
<td align="right">90</td>
</tr>
</table>
<h2 id="infotypes">Information types</h2>
<h3>Maps</h3>
<table class="htable">
<tr class="header">
<th>Element</th>
<th>Count</th>
</tr>
<tr>
<td title="">map</td>
<td align="right">1</td>
</tr>
</table>
<h3>Topics</h3>
<table class="htable">
<tr class="header">
<th>Element</th>
<th>Count</th>
</tr>
<tr>
<td title="">task</td>
<td align="right">64</td>
</tr>
<tr>
<td title="">concept</td>
<td align="right">25</td>
</tr>
<tr>
<td title="">reference</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">glossgroup</td>
<td align="right">1</td>
</tr>
</table>
<h2 id="elements">Elements</h2>
<p>Markup percentage from topic content (words + markup) in topics is 14.85%.</p>
<table class="stable">
<tr>
<td title="">Total elements</td>
<td align="right">2,886</td>
</tr>
<tr>
<td title="">Unique elements</td>
<td align="right">77</td>
</tr>
<tr>
<td title="">Total map elements</td>
<td align="right">100</td>
</tr>
<tr>
<td title="">Unique map elements</td>
<td align="right">10</td>
</tr>
<tr>
<td title="">Total topic elements</td>
<td align="right">2,786</td>
</tr>
<tr>
<td title="">Unique topic elements</td>
<td align="right">67</td>
</tr>
</table>
<h3>Map elements</h3>
<table class="htable">
<tr class="header">
<th>Element</th>
<th>Count</th>
</tr>
<tr>
<td title="">topicref</td>
<td align="right">91</td>
</tr>
<tr>
<td title="">map</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">topicmeta</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">copyright</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">copyryear</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">copyrholder</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">prodinfo</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">prodname</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">vrmlist</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">vrm</td>
<td align="right">1</td>
</tr>
</table>
<h3>Topic elements</h3>
<table class="htable">
<tr class="header">
<th>Element</th>
<th>Count</th>
</tr>
<tr>
<td title="">cmd</td>
<td align="right">280</td>
</tr>
<tr>
<td title="">step</td>
<td align="right">277</td>
</tr>
<tr>
<td title="">p</td>
<td align="right">229</td>
</tr>
<tr>
<td title="">uicontrol</td>
<td align="right">203</td>
</tr>
<tr>
<td title="">codeblock</td>
<td align="right">149</td>
</tr>
<tr>
<td title="">info</td>
<td align="right">142</td>
</tr>
<tr>
<td title="">title</td>
<td align="right">134</td>
</tr>
<tr>
<td title="">codeph</td>
<td align="right">132</td>
</tr>
<tr>
<td title="">shortdesc</td>
<td align="right">120</td>
</tr>
<tr>
<td title="">task</td>
<td align="right">99</td>
</tr>
<tr>
<td title="">taskbody</td>
<td align="right">98</td>
</tr>
<tr>
<td title="">context</td>
<td align="right">97</td>
</tr>
<tr>
<td title="">stepresult</td>
<td align="right">81</td>
</tr>
<tr>
<td title="">steps</td>
<td align="right">76</td>
</tr>
<tr>
<td title="">li</td>
<td align="right">69</td>
</tr>
<tr>
<td title="">xref</td>
<td align="right">56</td>
</tr>
<tr>
<td title="">entry</td>
<td align="right">45</td>
</tr>
<tr>
<td title="">filepath</td>
<td align="right">44</td>
</tr>
<tr>
<td title="">note</td>
<td align="right">41</td>
</tr>
<tr>
<td title="">concept</td>
<td align="right">25</td>
</tr>
<tr>
<td title="">conbody</td>
<td align="right">25</td>
</tr>
<tr>
<td title="">result</td>
<td align="right">25</td>
</tr>
<tr>
<td title="">image</td>
<td align="right">22</td>
</tr>
<tr>
<td title="">cmdname</td>
<td align="right">21</td>
</tr>
<tr>
<td title="">postreq</td>
<td align="right">20</td>
</tr>
<tr>
<td title="">row</td>
<td align="right">19</td>
</tr>
<tr>
<td title="">draft-comment</td>
<td align="right">17</td>
</tr>
<tr>
<td title="">ul</td>
<td align="right">17</td>
</tr>
<tr>
<td title="">example</td>
<td align="right">16</td>
</tr>
<tr>
<td title="">indexterm</td>
<td align="right">15</td>
</tr>
<tr>
<td title="">glossentry</td>
<td align="right">15</td>
</tr>
<tr>
<td title="">glossterm</td>
<td align="right">15</td>
</tr>
<tr>
<td title="">glossdef</td>
<td align="right">15</td>
</tr>
<tr>
<td title="">choice</td>
<td align="right">12</td>
</tr>
<tr>
<td title="">section</td>
<td align="right">9</td>
</tr>
<tr>
<td title="">b</td>
<td align="right">9</td>
</tr>
<tr>
<td title="">menucascade</td>
<td align="right">9</td>
</tr>
<tr>
<td title="">dlentry</td>
<td align="right">7</td>
</tr>
<tr>
<td title="">dt</td>
<td align="right">7</td>
</tr>
<tr>
<td title="">dd</td>
<td align="right">7</td>
</tr>
<tr>
<td title="">property</td>
<td align="right">7</td>
</tr>
<tr>
<td title="">proptype</td>
<td align="right">7</td>
</tr>
<tr>
<td title="">propvalue</td>
<td align="right">7</td>
</tr>
<tr>
<td title="">propdesc</td>
<td align="right">7</td>
</tr>
<tr>
<td title="">prolog</td>
<td align="right">7</td>
</tr>
<tr>
<td title="">metadata</td>
<td align="right">7</td>
</tr>
<tr>
<td title="">keywords</td>
<td align="right">7</td>
</tr>
<tr>
<td title="">choices</td>
<td align="right">6</td>
</tr>
<tr>
<td title="">steps-unordered</td>
<td align="right">4</td>
</tr>
<tr>
<td title="">table</td>
<td align="right">3</td>
</tr>
<tr>
<td title="">tgroup</td>
<td align="right">3</td>
</tr>
<tr>
<td title="">tbody</td>
<td align="right">3</td>
</tr>
<tr>
<td title="">substep</td>
<td align="right">3</td>
</tr>
<tr>
<td title="">ol</td>
<td align="right">2</td>
</tr>
<tr>
<td title="">thead</td>
<td align="right">2</td>
</tr>
<tr>
<td title="">dl</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">reference</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">refbody</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">properties</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">prophead</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">proptypehd</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">propvaluehd</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">propdeschd</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">term</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">substeps</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">userinput</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">glossgroup</td>
<td align="right">1</td>
</tr>
</table>
<h2 id="domainanalysis">Domain analysis</h2>
<p>The following domains are actually used: highlightDomain, programmingDomain, softwareDomain, uiDomain.</p>
<h3>highlightDomain</h3>
<p>This domain defines 6 elements, this document used 1 of them. (16.67%)</p>
<table class="htable">
<tr class="header">
<th>Element</th>
<th>Count</th>
</tr>
<tr>
<td title="The bold (<b>) element is used to apply bold highlighting to the content
 of the element. Use this element only when there is not some other more proper element. For
 example, for specific items such as GUI controls, use the <uicontrol> element. This
 element is part of the DITA highlighting domain. 
 Category: Typographic elements">b</td>
<td align="right">9</td>
</tr>
<tr>
<td title="The underline (<u>) element is used to apply underline highlighting to the
 content of the element. 
 Category: Typographic elements">u</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The italic (<i>) element is used to apply italic highlighting to the
 content of the element. 
 Category: Typographic elements">i</td>
<td align="right">0</td>
</tr>
<tr>
<td title=" The teletype (<tt>) element is used to apply monospaced highlighting to
 the content of the element. 
 Category: Typographic elements ">tt</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The superscript (<sup>) element indicates that text should be
 superscripted, or vertically raised in relationship to the surrounding text. Superscripts
 are usually a smaller font than the surrounding text. Use this element only when there is
 not some other more proper tag. This element is part of the DITA highlighting domain.
 Category: Typographic elements">sup</td>
<td align="right">0</td>
</tr>
<tr>
<td title="A subscript (<sub>) indicates that text should be subscripted, or placed
 lower in relationship to the surrounding text. Subscripted text is often a smaller font than
 the surrounding text. Formatting may vary depending on your output process. This element is
 part of the DITA highlighting domain. Category: Typographic elements">sub</td>
<td align="right">0</td>
</tr>
</table>
<h3>programmingDomain</h3>
<p>This domain defines 26 elements, this document used 2 of them. (7.69%)</p>
<table class="htable">
<tr class="header">
<th>Element</th>
<th>Count</th>
</tr>
<tr>
<td title="The <codeblock> element represents lines of program code. Like the <pre> element, content of this element has preserved line endings and is output in a monospaced font. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">codeblock</td>
<td align="right">149</td>
</tr>
<tr>
<td title="The code phrase (<codeph>) element represents a snippet of code within the main flow of text. The code phrase is displayed in a monospaced font for emphasis. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">codeph</td>
<td align="right">132</td>
</tr>
<tr>
<td title="The codref element allows a reference to an external file that contains literal code. When evaluated the coderef element should cause the target code to be displayed inline. If the target contains non-XML characters such as < and &amp;, those will need to be handled in a way that they may be displayed correctly by the final rendering engine. ">coderef</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The <option> element describes an option that can be used to modify a command (or something else, like a configuration). This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">option</td>
<td align="right">0</td>
</tr>
<tr>
<td title="Within a syntax diagram, the <var> element defines a variable for which the user must supply content, such as their user name or password. It is represented in output in an italic font. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">var</td>
<td align="right">0</td>
</tr>
<tr>
<td title="When referencing the name of an application programming interface parameter within the text flow of your topic, use the parameter name (<parmname>) element to markup the parameter. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">parmname</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The syntax phrase (<synph>) element is a container for syntax definition elements. It is used when a complete syntax diagram is not needed, but some of the syntax elements, such as kwd, oper, delim, are used within the text flow of the topic content. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">synph</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The operator (<oper>) element defines an operator within a syntax definition. Typical operators are equals (=), plus (+) or multiply (*). This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">oper</td>
<td align="right">0</td>
</tr>
<tr>
<td title="Within a syntax diagram, the delimiter (<delim>) element defines a character marking the beginning or end of a section or part of the complete syntax. Typical delimiter characters are the parenthesis, comma, tab, vertical bar or other special characters. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">delim</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The separator (<sep>) element defines a separator character that is inline with the content of a syntax diagram. The separator occurs between keywords, operators or groups in a syntax definition. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">sep</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The <apiname> element provides the name of an application programming interface (API) such as a Java class name or method name. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">apiname</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The parameter list (<parml>) element contains a list of terms and definitions that describes the parameters in an application programming interface. This is a special kind of definition list that is designed for documenting programming parameters. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">parml</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The parameter list entry element (<plentry>) contains one or more parameter terms and definitions (pd and pt). This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">plentry</td>
<td align="right">0</td>
</tr>
<tr>
<td title="A parameter term, within a parameter list entry, is enclosed by the <pt> element. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">pt</td>
<td align="right">0</td>
</tr>
<tr>
<td title="A parameter definition, within a parameter list entry, is enclosed by the <pd> element. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">pd</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The syntax diagram (<syntaxdiagram>) element is the main container for all the syntax elements that make up a syntax definition. The syntax diagram represents the syntax of a statement from a computer language, or a command, function call or programming language statement. Traditionally, the syntax diagram is formatted with railroad tracks that connect the units of the syntax together, but this presentation may differ depending on the output media. The syntax diagram element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">syntaxdiagram</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The syntax block (<synblk>) element organizes small pieces of a syntax definition into a larger piece. The syntax block element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">synblk</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The <groupseq> element is part of the subset of elements that define syntax diagrams in DITA. A group is a logical set of pieces of syntax that go together. Within the syntax definition, groups of keywords, delimiters and other syntax units act as a combined unit, and they occur in a specific sequence, as delimited by the <groupseq> element. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">groupseq</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The <groupchoice> element is part of the subset of elements that define syntax diagrams in DITA. A group is a logical set of pieces of syntax that go together. A group choice specifies that the user must make a choice about which part of the syntax to use. Groups are often nested. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">groupchoice</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The <groupcomp> element is part of the subset of elements that define syntax diagrams in DITA. A group is a logical set of pieces of syntax that go together. The group composite means that the items that make up the syntax diagram will be formatted close together rather than being separated by a horizontal or vertical line, which is the usual formatting method. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">groupcomp</td>
<td align="right">0</td>
</tr>
<tr>
<td title="Within a syntax definition, a <fragment> is a labeled subpart of the syntax. The <fragment> element allows breaking out logical chunks of a large syntax diagram into named fragments. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">fragment</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The fragment reference (<fragref>) element provides a logical reference to a syntax definition fragment so that you can reference a syntax fragment multiple times, or pull a large section of syntax out of line for easier reading. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">fragref</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The syntax note (<synnote>) element contains a note (similar to a footnote) within a syntax definition group or fragment. The syntax note explains aspects of the syntax that cannot be expressed in the markup itself. The note will appear at the bottom of the syntax diagram instead of at the bottom of the page. The syntax block element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">synnote</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The syntax note (<synnoteref>) reference element references a syntax note element (<synnote>) that has already been defined elsewhere in the syntax diagram. The same notation can be used in more than one syntax definition. The syntax note reference element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">synnoteref</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The repeat separator (<repsep>) element in a syntax diagram defines a group of syntax elements that can (or should) be repeated. If the <repsep> element contains a separator character, such as a plus (+), this indicates that the character must be used between repetitions of the syntax elements. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">repsep</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The <kwd> element defines a keyword within a syntax diagram. A keyword must be typed or output, either by the user or application, exactly as specified in the syntax definition. This element is part of the DITA programming domain, a special set of DITA elements designed to document programming tasks, concepts and reference information.
 Category: Programming elements
 ">kwd</td>
<td align="right">0</td>
</tr>
</table>
<h3>softwareDomain</h3>
<p>This domain defines 8 elements, this document used 3 of them. (37.5%)</p>
<table class="htable">
<tr class="header">
<th>Element</th>
<th>Count</th>
</tr>
<tr>
<td title="The <filepath> element indicates the name and optionally the location of a referenced file by specifying the directory containing the file, and other directories that may precede it in the system hierarchy. This element is part of the DITA software domain, a special set of DITA elements designed to document software tasks, concepts and reference information.
 Category: Software elements
 ">filepath</td>
<td align="right">44</td>
</tr>
<tr>
<td title="The command name (<cmdname>) element specifies the name of a command when it is part of a software discussion. This element is part of the DITA software domain, a special set of DITA elements designed to document software tasks, concepts and reference information.
 Category: Software elements
 ">cmdname</td>
<td align="right">21</td>
</tr>
<tr>
<td title="The user input (<userinput>) element represens the text a user should input in response to a program or system prompt. This element is part of the DITA software domain, a special set of DITA elements designed to document software tasks, concepts and reference information.
 Category: Software elements
 ">userinput</td>
<td align="right">1</td>
</tr>
<tr>
<td title="The message phrase (<msgph>) element contains the text content of a message produced by an application or program. It can also contain the variable name (varname) element to illustrate where variable text content can occur in the message. This element is part of the DITA software domain, a special set of DITA elements designed to document software tasks, concepts and reference information.
 Category: Software elements
 ">msgph</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The message block (<msgblock>) element contains a multi-line message or set of messages. The message block can contain multiple message numbers and message descriptions, each enclosed in a <msgnum> and <msgph> element. It can also contain the message content directly. This element is part of the DITA software domain, a special set of DITA elements designed to document software tasks, concepts and reference information.
 Category: Software elements
 ">msgblock</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The message number (<msgnum>) element contains the number of a message produced by an application or program. This element is part of the DITA software domain, a special set of DITA elements designed to document software tasks, concepts and reference information.
 Category: Software elements
 ">msgnum</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The variable name (<varname>) element defines a variable that must be supplied to a software application. The variable name element is very similar to the variable (var) element, but variable name is used outside of syntax diagrams. This element is part of the DITA software domain, a special set of DITA elements designed to document software tasks, concepts and reference information.
 Category: Software elements
 ">varname</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The system output (<systemoutput>) element represents computer output or responses to a command or situation. A generalized element, it represents any kind of output from the computer, so the author may wish to choose more specific markup, such as msgph, for messages from the application. The system output element is part of the DITA software domain, a special set of DITA elements designed to document software tasks, concepts and reference information.
 Category: Software elements
 ">systemoutput</td>
<td align="right">0</td>
</tr>
</table>
<h3>uiDomain</h3>
<p>This domain defines 5 elements, this document used 2 of them. (40%)</p>
<table class="htable">
<tr class="header">
<th>Element</th>
<th>Count</th>
</tr>
<tr>
<td title="The user interface control (<uicontrol>) element is used to mark up names
 of buttons, entry fields, menu items, or other objects that allow the user to control the
 interface. Use the <uicontrol> element inside a <menucascade> element to identify a
 sequence of menu choices in a nested menu, such as File New. This element is part of the
 DITA user interface domain, a special set of DITA elements designed to document user
 interface tasks, concepts and reference information. 
 Category: User interface elements">uicontrol</td>
<td align="right">203</td>
</tr>
<tr>
<td title="The <menucascade> element is used to document a series of menu choices.
 The <menucascade> element contains one or more user interface control (<uicontrol>)
 elements, for example: Start > Programs > Accessories > Notepad. If there is more than one
 <uicontrol> element, the formatter shows connecting characters between the menu items to
 represent the menu cascade. This element is part of the DITA user interface domain, a
 special set of DITA elements designed to document user interface tasks, concepts and
 reference information. 
 Category: User interface elements">menucascade</td>
<td align="right">9</td>
</tr>
<tr>
<td title="The window title <wintitle> element can be used to mark up names of
 windows or dialogs, or other user interface elements at the same level of grouping,
 including wizard titles, wizard page titles, and window pane titles. This element is part of
 the DITA user interface domain, a special set of DITA elements designed to document user
 interface tasks, concepts and reference information. 
 Category: User interface elements">wintitle</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The <shortcut> element identifies a keyboard shortcut for a menu or window
 action. This element is part of the DITA user interface domain, a special set of DITA
 elements designed to document user interface tasks, concepts and reference information.
 Category: User interface elements">shortcut</td>
<td align="right">0</td>
</tr>
<tr>
<td title="The <screen> element contains or refers to a textual representation of a
 computer screen or user interface panel (window). 
 Category: User interface elements">screen</td>
<td align="right">0</td>
</tr>
</table>
<h2 id="contentreuse">Content reuse</h2>
<p>Total reused words (words in conref content) 335. Content reuse percentage (words) is 2.1%.</p>
<p>Total reused elements (elements in conref content) 53. Elements reuse percentage is 1.9%.</p>
<p>Total content reference elements 3.</p>
<h3>Reused elements</h3>
<table class="htable">
<tr class="header">
<th>Element</th>
<th>Count</th>
</tr>
<tr>
<td title="">task</td>
<td align="right">3</td>
</tr>
</table>
<h2 id="attributes">Attributes</h2>
<table class="stable">
<tr>
<td title="">Total attributes</td>
<td align="right">3,767</td>
</tr>
<tr>
<td title="">Unique attributes</td>
<td align="right">19</td>
</tr>
<tr>
<td title="">Total map attributes</td>
<td align="right">197</td>
</tr>
<tr>
<td title="">Unique map attributes</td>
<td align="right">8</td>
</tr>
<tr>
<td title="">Topic attributes</td>
<td align="right">3,570</td>
</tr>
<tr>
<td title="">Unique topic attributes</td>
<td align="right">15</td>
</tr>
</table>
<h3>Map attributes</h3>
<table class="htable">
<tr class="header">
<th>Attribute</th>
<th>Count</th>
</tr>
<tr>
<td title="">class</td>
<td align="right">100</td>
</tr>
<tr>
<td title="">href</td>
<td align="right">91</td>
</tr>
<tr>
<td title="">title</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">xml:lang</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">ditaarch:DITAArchVersion</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">domains</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">year</td>
<td align="right">1</td>
</tr>
<tr>
<td title="">version</td>
<td align="right">1</td>
</tr>
</table>
<h3>Topic attributes</h3>
<table class="htable">
<tr class="header">
<th>Element</th>
<th>Count</th>
</tr>
<tr>
<td title="">class</td>
<td align="right">2,786</td>
</tr>
<tr>
<td title="">xml:space</td>
<td align="right">149</td>
</tr>
<tr>
<td title="">id</td>
<td align="right">144</td>
</tr>
<tr>
<td title="">ditaarch:DITAArchVersion</td>
<td align="right">141</td>
</tr>
<tr>
<td title="">domains</td>
<td align="right">141</td>
</tr>
<tr>
<td title="">href</td>
<td align="right">78</td>
</tr>
<tr>
<td title="">type</td>
<td align="right">40</td>
</tr>
<tr>
<td title="">alt</td>
<td align="right">22</td>
</tr>
<tr>
<td title="">placement</td>
<td align="right">22</td>
</tr>
<tr>
<td title="">scale</td>
<td align="right">18</td>
</tr>
<tr>
<td title="">translate</td>
<td align="right">17</td>
</tr>
<tr>
<td title="">format</td>
<td align="right">4</td>
</tr>
<tr>
<td title="">cols</td>
<td align="right">3</td>
</tr>
<tr>
<td title="">align</td>
<td align="right">3</td>
</tr>
<tr>
<td title="">scope</td>
<td align="right">2</td>
</tr>
</table>
<h2 id="conditionalAttributes">Conditional Attributes</h2>
<p>Conditional attributes are not used.</p>
<h2 id="textinformation">Text information</h2>
<h3>Words</h3>
<table class="stable">
<tr>
<td title="">Unique words</td>
<td align="right">2,035</td>
</tr>
<tr>
<td title="">Total words</td>
<td align="right">15,972</td>
</tr>
<tr>
<td title="">Minimum words per topic</td>
<td align="right">4</td>
</tr>
<tr>
<td title="">Maximum words per topic</td>
<td align="right">739</td>
</tr>
<tr>