-
Notifications
You must be signed in to change notification settings - Fork 0
/
OMA-Online-Editor-Guidelines.html
3544 lines (3541 loc) · 177 KB
/
OMA-Online-Editor-Guidelines.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
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>OMA Online Editor Guidelines</title>
<meta charset="UTF-8">
<script src="http://openmobilealliance.github.io/Tools-Old/builds/respec-oma-common.js" async class="remove"></script>
<script class="remove">
var respecConfig = {
// for editor use
docType: "ORG", // options are BASE, RD, AD, TS, SUP, ETS, ORG
subtitle: "Online Editor Guidelines",
shortName: "EditorGuidelines",
otherLinks: [{
key: "Other Link",
data: [{
value: "Link Name",
href: "#location"
}]
}],
editors: [{
name: "Joaquin Prado",
url: "",
company: "",
companyURL: "",
mailto: "[email protected]",
note: "editor note"
}],
authors: [{
name: "Author Name",
url: "http://example.com/",
company: "Author Company",
companyURL: "http://example.org/",
mailto: "[email protected]",
note: "author note"
}],
interactiveLinks: [{
name: "Link Name",
description: "Link Description",
uri: "http://example.com/",
},{
name: "Second Link Name",
description: "Second Link Description",
uri: "http://example2.com/",
}],
// for staff only
specStatus: "DRAFT", // options are Draft, Candidate, Approved, Historic
publishDate: ""
};
</script>
</head><body>
<section id="toc"><br data-mce-bogus="1">
</section>
<section id="tof"></section>
<section id="tot"></section>
<!-- start scope -->
<section>
<h2>How to Use this Document</h2>
<p> <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="OMA" data-mce-index="0">OMA</span> has developed an online/offline editor (<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="OMA" data-mce-index="1">OMA</span> Editor) to support the development of <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="OMA" data-mce-index="2">OMA</span> Technical Documents.</p>
<p> The document is constructed using plain HTML, without any styling and it can be rendered by one of these two browsers:</p>
<ul>
<li>Chrome, or</li>
<li><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="Firefox" data-mce-index="3">Firefox</span></li>
</ul>
<p>At the time of rendering the document, the style is applied by the browser based on a set of specific styling rules (<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="ReSpec" data-mce-index="4">ReSpec</span>).</p>
<section id="sections-constructed-automatically">
<h2>Sections Constructed Automatically</h2>
<p>The following sections and content are constructed automatically by the browser at the time of rendering the document. These sections or content doesn't exist inside of the document:</p>
<ul>
<li>Legal Disclaimer,</li>
<li>Table of Contents,</li>
<li>Table of Figures,</li>
<li>Tables of Tables,</li>
<li>Section Numbers,</li>
<li>Tables and Figures numbers,</li>
<li>References,
<ul>
<li>Normative, and</li>
<li>Informative</li>
</ul>
</li>
<li>Appendix numbers</li>
</ul>
</section>
</section>
<section id="document-structure">
<h2>Document Structure</h2>
<p>It describes the main sections of an <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="OMA" data-mce-index="5">OMA</span> Technical document:</p>
<ul>
<li><a title="Click here to view this section." href="#front-cover-page" data-mce-href="#front-cover-page">Front Cover</a>,</li>
<li><a title="Click here to view this section." href="#index" data-mce-href="#index">Index</a><br>
<ul>
<li><a title="Click here to view this section." href="#table-of-contents" data-mce-href="#table-of-contents">Table of Contents</a></li>
<li><a title="Click here to view this section." href="#table-of-figures" data-mce-href="#table-of-figures">Table of Figures</a></li>
<li><a title="Click here to view this section." href="#table-of-tables" data-mce-href="#table-of-tables">Table of Tables</a></li>
</ul>
</li>
<li><a title="Click here to view this section." href="#terminology-and-conventions" data-mce-href="#terminology-and-conventions">Terminology and Conventions</a><br>
<ul>
<li><a title="Click here to view this section." href="#conventions" data-mce-href="#conventions">Conventions</a></li>
<li><a title="Click here to view this section." href="#definitions" data-mce-href="#definitions">Definitions</a></li>
<li><a title="Click here to view this section." href="#abbreviations" data-mce-href="#abbreviations">Abbreviations</a></li>
</ul>
</li>
<li><a title="Click here to view this section." href="#sections" data-mce-href="#sections">Sections</a><br>
<ul>
<li><a title="Click here to view this section." href="#subsections" data-mce-href="#subsections">Subsections</a></li>
</ul>
</li>
<li><a title="Click here to view this section." href="#appendix" data-mce-href="#appendix">Appendices</a></li>
<li><a title="Click here to view this section." href="#references" data-mce-href="#references">References</a></li>
<li><a title="Click here to view this section." href="#document-history" data-mce-href="#document-history">Document History</a></li>
<li><a title="Click here to view this section." href="#static-conformance-requirements" data-mce-href="#static-conformance-requirements">Static Conformance Requirements (<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="SCRs" data-mce-index="6">SCRs</span>)</a></li>
</ul>
<section id="front-cover-page">
<h2>Front Cover Page</h2>
<p>The Front Cover Page is the first page of the document and contains document general information.</p>
<table id="front-cover" style="height: 127px;" width="932" data-mce-style="height: 127px;" class="mce-item-table"><caption>Front Cover</caption>
<thead>
<tr>
<td>Operation</td>
<td>Description</td>
<td>Problem</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>Update:</p>
<ul>
<li><em>Document Title</em></li>
<li><em>Filename</em></li>
<li><em>Editor(<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="s" data-mce-index="7">s</span>), Author(<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="s" data-mce-index="8">s</span>) and Other link(<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="s" data-mce-index="9">s</span>)</em></li>
</ul>
</td>
<td>
<p>Click in the "<strong>Edit Head</strong>" button on the Menu Bar.</p>
<ul>
<li>The write access to this front-cover information is limited to the following roles:
<ul>
<li>Chairs,</li>
<li>Editors, and</li>
<li>Staff</li>
</ul>
</li>
</ul>
</td>
<td><br>
</td>
</tr>
<tr>
<td>
<p>Update:</p>
<ul>
<li><em><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="'Legal" data-mce-index="10">'Legal</span> <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="Statement'" data-mce-index="11">Statement'</span></em></li>
</ul>
</td>
<td>
<ul>
<li>Only Admin can update the <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="'Legal" data-mce-index="12">'Legal</span> <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="Statement'" data-mce-index="13">Statement'</span></li>
<li><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="ReSpec" data-mce-index="14">ReSpec</span> construct and display in the browser the <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="'Legal" data-mce-index="15">'Legal</span> <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="Statement'" data-mce-index="16">Statement'</span> at the time of rendering the document.</li>
</ul>
</td>
<td><br>
</td>
</tr>
</tbody>
</table>
<p><br>
</p>
</section>
<section id="index">
<h2>Index</h2>
<p>These three sections: <strong>Contents</strong>, <strong>Figures</strong>, and <strong>Tables</strong> represent the <strong>Index</strong> of the document. They are constructed automatically at the time of rendering the document.</p>
<ul>
<li>The system creates the content of these sections automatically at the time of rendering the document.</li>
<li>The sections can be seen at the top of the document.
<ul>
<li>In editing mode, when in the <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="OMA" data-mce-index="17">OMA</span> Editor, the content of these tables is not available.</li>
<li>Click "<strong>Preview</strong>" button on the <strong>Menu Bar</strong> to see the Index.</li>
</ul>
</li>
</ul>
<section id="table-of-contents">
<h2>Table of Contents</h2>
<table id="t-table-contents" style="height: 111px;" width="967" data-mce-style="height: 111px;" class="mce-item-table"><caption>Table of Contents</caption>
<thead>
<tr>
<td>Operation</td>
<td>Description</td>
<td>Problems</td>
</tr>
</thead>
<tbody>
<tr>
<td><em>Table of Contents</em></td>
<td>
<ul>
<li>Contains a list of all the sections and sub-sections in the document.</li>
<li>Section numbering is created at the time of rendering the document.</li>
<li>Each section and sub-section MUST have a title, <em><strong><h2></strong></em>, immediately after the section element <section>.
<ul>
<li>The <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="OMA" data-mce-index="18">OMA</span> Editor only allows <em><strong><h2></strong></em> titles.</li>
<li>If the section doesn't have a <em><strong><h2></strong></em> title, it will not appear in the <strong>Table of Contents</strong>.</li>
</ul>
</li>
</ul>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Delete Table of Contents</em></td>
<td>
<ul>
<li><strong>DO NOT DELETE</strong> this section. Otherwise the document will <strong>NOT</strong> contain a <strong>Table of Contents</strong>.</li>
</ul>
</td>
<td><br>
</td>
</tr>
</tbody>
</table>
<p><strong> Table of Contents in HTML</strong></p>
<table id="t-ex-table-contents" style="height: 95px;" width="967" data-mce-style="height: 95px;" class="mce-item-table"><caption>Table of Contents in HTML</caption>
<thead>
<tr>
<td><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="ReSpec" data-mce-index="19">ReSpec</span></td>
<td>TinyMCE Editor</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<pre class="example highlight"><strong> <section</strong> id="<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="toc" data-mce-index="20">toc</span>"<strong>></section></strong></pre>
</td>
<td>
<pre class="example highlight"> No applicable. </pre>
</td>
</tr>
</tbody>
</table>
<p><br>
</p>
</section>
<section id="table-of-figures">
<h2>Table of Figures</h2>
<table id="t-table-figures" style="height: 49px;" width="966" data-mce-style="height: 49px;" class="mce-item-table"><caption>Table of Figures</caption>
<thead>
<tr>
<td>Operations</td>
<td>Description</td>
<td>Problems</td>
</tr>
</thead>
<tbody>
<tr>
<td><em>Table of Figures</em></td>
<td>
<ul>
<li>It contains an ordered list of all the figures inserted in the document.<br>
<ul>
<li>The number of the figure is created automatically at the time of rendering the document.</li>
</ul>
</li>
<li>The content in the <strong><em><caption></em></strong> element of the figure is used as a title for the Table of Figures.</li>
</ul>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Delete Table of Figures</em></td>
<td>
<ul>
<li><strong>DO NOT DELETE</strong> this section, otherwise the document will <strong>NOT</strong> contain a<strong> Table of Figures.<br>
</strong></li>
</ul>
</td>
<td><br>
</td>
</tr>
</tbody>
</table>
<p><strong> Table of Figures in HTML</strong></p>
<table id="t-html-table-figures" style="height: 95px;" width="967" data-mce-style="height: 95px;" class="mce-item-table"><caption>Table of Figures in HTML</caption>
<thead>
<tr>
<td><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="ReSpec" data-mce-index="21">ReSpec</span></td>
<td>TinyMCE Editor</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<pre class="example highlight"><strong> <section</strong> id="<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="tof" data-mce-index="22">tof</span>"<strong>></section></strong></pre>
</td>
<td>
<pre class="example highlight"> No applicable. </pre>
</td>
</tr>
</tbody>
</table>
<p><br>
</p>
</section>
<section id="table-of-tables">
<h2>Table of Tables</h2>
<table id="t-table-of-tables" style="height: 59px;" width="915" data-mce-style="height: 59px;" class="mce-item-table"><caption>Tables of Tables</caption>
<thead>
<tr>
<td>Operation</td>
<td>Description</td>
<td>Problems</td>
</tr>
</thead>
<tbody>
<tr>
<td><em>Table of Tables</em></td>
<td>
<ul>
<li>it contains an ordered list of the tables titles in the document.</li>
<li>The content in the <strong><em><caption></em></strong> element of the table is used as a title for the Table of Tables.<br>
<ul>
<li>In the <strong>Editor</strong> <strong>Mode</strong> the table title appears on the top of the table.</li>
<li>In the <strong>Rendered Mode</strong> the table title appears at the bottom of the table, together with a number.</li>
</ul>
</li>
</ul>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Delete Table of Tables</em></td>
<td>
<ul>
<li><strong>DO NOT DELETE</strong> this section. Otherwise the document will <strong>NOT</strong> contain a <strong>Table of Tables</strong>.</li>
</ul>
</td>
<td><br>
</td>
</tr>
</tbody>
</table>
<p><strong> Table of Tables in HTML</strong></p>
<table id="t-html-table-tables" style="height: 95px;" width="967" data-mce-style="height: 95px;" class="mce-item-table"><caption>Table of Tables in HTML</caption>
<thead>
<tr>
<td><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="ReSpec" data-mce-index="23">ReSpec</span></td>
<td>TinyMCE Editor</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<pre class="example highlight"><strong> <section</strong> id="tot"<strong>></section></strong></pre>
</td>
<td>
<pre class="example highlight"> No applicable. </pre>
</td>
</tr>
</tbody>
</table>
<p><br>
</p>
</section>
<p><br>
</p>
<p><br>
</p>
</section>
<!-- end scope -->
<section>
<h2>Terminology and Conventions</h2>
<!-- start conventions -->
<section>
<h2>Conventions</h2>
<ul>
<li>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” are interpreted by this Editor as standard statements.</li>
<li>These words are displayed by the browser highlighted in red and with a distinctive font.</li>
</ul>
<p><strong>Conventions in HTML</strong></p>
<table id="t-html-conventions" style="height: 95px;" width="967" data-mce-style="height: 95px;" class="mce-item-table"><caption>Conventions in HTML</caption>
<thead>
<tr>
<td><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="ReSpec" data-mce-index="24">ReSpec</span></td>
<td>TinyMCE Editor</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<pre class="example highlight"> MUST, MUST NOT, REQUIRED, SHALL, SHALL NOT, SHOULD, <br> SHOULD NOT, RECOMMENDED, MAY, and OPTIONAL</pre>
</td>
<td>
<pre class="example highlight"> MUST, MUST NOT, REQUIRED, SHALL, SHALL NOT, SHOULD, <br> SHOULD NOT, RECOMMENDED, MAY, and OPTIONAL</pre>
</td>
</tr>
</tbody>
</table>
</section>
<!-- end conventions --> <!-- start definitions -->
<section>
<h2>Definitions</h2>
<table id="3" style="height: 726px;" width="1002" data-mce-style="height: 726px;" class="mce-item-table"><caption>Definitions</caption>
<thead>
<tr>
<td>Operation</td>
<td>Description</td>
<td>Problems</td>
</tr>
</thead>
<tbody>
<tr>
<td><em>Add a Definition</em></td>
<td style="width: 40%;" data-mce-style="width: 40%;">
<p>Follow these steps:</p>
<ol>
<li>Click in the "<strong>Definition</strong>" button on the <strong>Editor Menu</strong>.</li>
<li>The editor requests your input via a text box called "<em><strong>Add Definition</strong></em>", which contains two inputs:
<ul>
<li><strong><em>Word </em></strong>
<ul>
<li>Title of the definition.</li>
</ul>
</li>
<li><strong><em>Terms</em></strong><br>
<ul>
<li>This input is used to create alternatives to the definition word, <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="e" data-mce-index="25">e</span>.<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="g" data-mce-index="26">g</span>. a plural of the definition word.<strong>Word</strong></li>
</ul>
</li>
</ul>
</li>
<li>The system input in the page the <strong>Definition word</strong> and in a paragraph below invites you to add the content of the definition, "<strong><em>Definition goes here</em></strong>".</li>
</ol>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Add a Definition ID</em></td>
<td>
<ol>
<li>Place the cursor on the <strong>Definition</strong> word.</li>
<li>Click in the "<strong>Edit Id</strong>" button on the <strong>Editor Menu.</strong>
<ul>
<li>Insert the <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="'id-name'" data-mce-index="27">'</span><em><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="'id-name'" data-mce-index="27">id-name</span></em><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="'id-name'" data-mce-index="27">'</span> for this element.</li>
<li>This is the ID that will be used as part of an URL ('<em>#id-name</em>) to link back to the <strong>Definition</strong>.</li>
</ul>
</li>
</ol>
<p> Note: There will be a small anchor symbol added above the definition word that indicates an <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="'id-name'" data-mce-index="28">'id-name'</span> or anchor has been added.</p>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Edit a Definition ID</em></td>
<td>
<ol>
<li>Place the cursor on the <strong>Definition</strong> word.</li>
<li>Click in the "<strong>Edit Id</strong>" button on the <strong>Editor Menu.</strong>
<ul>
<li>The <strong>Definition</strong> <em>ID</em> will be displayed in the pop out window.</li>
</ul>
</li>
</ol>
</td>
<td>
<p> P2. <strong>6th April</strong>. Problem when deleting the ID. The ID attribute is left behind with an empty content. </p>
<p><br>
</p>
</td>
</tr>
<tr>
<td><em>Link to an existent Definition</em></td>
<td>
<p>Follow these steps:</p>
<ol>
<li>After inserting and ID in the <strong>Definition</strong>.</li>
<li>See <a title="See how to insert a Hyperlink" href="#t-hyperlink" data-mce-href="#t-hyperlink">Insert Hyperlink</a> description.</li>
</ol>
<ul>
<li>Use the "i<em>d-name</em>" inserted above.</li>
</ul>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Edit a Hyperlink to a Definition</em></td>
<td>
<ol>
<li>See <a title="Click here to see how to Edit a Hyperlink" href="#hyperlink" data-mce-href="#hyperlink">Edit a Hyperlink</a>.</li>
</ol>
</td>
<td><br>
</td>
</tr>
</tbody>
</table>
<p><br>
</p>
<dl>
<dt><dfn id="dictionary"><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="OMA" data-mce-index="29">OMA</span> Dictionary<br>
</dfn></dt>
<dd id="d-dm">Document that describes technical terms defined by Open Mobile Alliance.</dd>
</dl>
<p>Click here <a title="Dictionary" href="#dictionary" data-mce-href="#dictionary"><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="OMA" data-mce-index="30">OMA</span> Dictionary</a> to see its definition.</p>
<p><br>
</p>
<p><strong>Definitions in HTML</strong></p>
<table id="t-html-definitions" style="height: 95px;" width="967" data-mce-style="height: 95px;" class="mce-item-table"><caption>Definitions in HTML</caption>
<thead>
<tr>
<td><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="ReSpec" data-mce-index="31">ReSpec</span></td>
<td>TinyMCE Editor</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<pre class="example highlight"><strong> <dl></strong><br> <strong><<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dt" data-mce-index="32">dt</span>><<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dfn" data-mce-index="33">dfn</span></strong> id="definition-id"<strong>></strong>Definition<strong></<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dfn" data-mce-index="34">dfn</span>></<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dt" data-mce-index="35">dt</span>></strong><br> <strong><dd></strong>Description<strong></dd></strong><br> <strong></dl></strong></pre>
</td>
<td>
<pre class="example highlight"><strong><dl><br> <<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dt" data-mce-index="36">dt</span>><<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dfn" data-mce-index="37">dfn</span> <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="data-lt" data-mce-index="38">data-lt</span>="Tests">Test</<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dfn" data-mce-index="39">dfn</span>></<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dt" data-mce-index="40">dt</span>><br> <dd>Test definition</dd><br></dl</strong></pre>
</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Abbreviations</h2>
<table id="3" style="height: 487px;" width="820" data-mce-style="height: 487px;" class="mce-item-table"><caption>Abbreviations</caption>
<thead>
<tr>
<td>Operation</td>
<td>Description</td>
<td>Problems</td>
</tr>
</thead>
<tbody>
<tr>
<td><em>Add an Abbreviation</em></td>
<td>
<p>Follow these steps:</p>
<ol>
<li>Click in the "<strong>Abbreviation</strong>" button on the <strong>Editor Menu.</strong></li>
<li>Input text in the following text boxes:<br>
<ul>
<li><em>Abbreviation</em>:
<ul>
<li>Name of the abbreviation.</li>
</ul>
</li>
<li><em>Expanded Abbreviation</em>:
<ul>
<li>Text to display when hovering over the abbreviation word.</li>
</ul>
</li>
</ul>
</li>
<li>Input the <em>Description</em> part of the <strong>Abbreviation.</strong></li>
<li>The system will add a paragraph to expand the description of the abbreviation: "Description of abbreviation goes here".</li>
</ol>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Add an Abbreviation ID</em></td>
<td>
<ol>
<li>Place the cursor on the <strong>Abbreviation </strong>word.</li>
<li>Click in the "<strong>Edit Id</strong>" button on the <strong>Editor Menu.</strong>
<ul>
<li>Insert the <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="'id-name'" data-mce-index="41">'</span><em><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="'id-name'" data-mce-index="41">id-name</span></em><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="'id-name'" data-mce-index="41">'</span> for this element.</li>
<li>This is the ID that will be used as URL to link back to the <strong>Abbreviation</strong>.</li>
</ul>
</li>
</ol>
<p>Note: the system will add an anchor symbol above the abbreviation to indicate that an anchor to jump to this word is available.</p>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Edit an Abbreviation ID</em></td>
<td>
<ol>
<li>Place the cursor on the <strong>Abbreviation </strong>word.</li>
<li>Click in the "<strong>Edit Id</strong>" button on the <strong>Editor Menu.</strong>
<ul>
<li>The <strong><em>Abbreviation </em></strong><em>ID</em> will be displayed in the pop out window.</li>
</ul>
</li>
</ol>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Link to an existent Abbreviation</em></td>
<td>
<p>Follow these steps:</p>
<ol>
<li>After inserting and ID "i<em>d-name</em>" in the <strong>Abbreviation</strong>.</li>
<li>Place the cursor on the paragraph that you want to link back to the <strong>Abbreviation</strong>.</li>
<li>See <a title="See how to insert a Hyperlink" href="#t-hyperlink" data-mce-href="#t-hyperlink">Insert Hyperlink</a> description.</li>
</ol>
<ul>
<li>Use the "i<em>d-name</em>" inserted above.</li>
</ul>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Edit a Hyperlink to an Abbreviation</em></td>
<td>
<ol>
<li>See <a title="Click here to see how to Edit a Hyperlink" href="#hyperlink" data-mce-href="#hyperlink">Edit a Hyperlink</a>.</li>
</ol>
</td>
<td><br>
</td>
</tr>
</tbody>
</table>
<p><strong>Example of Abbreviation</strong></p>
<p>This section contains an example on how to use abbreviations.</p>
<dl>
<dt><abbr id="oma" title="Open Mobile Alliance"><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="OMA" data-mce-index="42">OMA</span></abbr></dt>
<dd>This is the description of the abbreviation in this case, Open Mobile Alliance.</dd>
</dl>
<ul>
<li>After the abbreviation is created for the first time, the editor will place a series of dotes underneath of the word. Then, each time that the <strong>Abbreviation</strong> word is used on the document it will appear with the dots underneath. If the cursor is placed over the <strong>Abbreviation</strong> word the system will display the content input in the "<em>Expanded Abbreviation</em>". </li>
<li title="Device management">This is an example of loop back to the abbreviation <a title="Open Mobile Alliance" href="#oma" data-mce-href="#oma">here</a>.</li>
</ul>
<p><strong>Abbreviations in HTML</strong></p>
<table id="t-abbreviations" style="height: 95px;" width="967" data-mce-style="height: 95px;" class="mce-item-table"><caption>Abbreviations in HTML</caption>
<thead>
<tr>
<td><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="ReSpec" data-mce-index="43">ReSpec</span></td>
<td>TinyMCE Editor</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<pre class="example highlight"><strong> <dl></strong><br> <strong><<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dt" data-mce-index="44">dt</span>><<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="abbr" data-mce-index="45">abbr</span></strong> title="<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="tible-id" data-mce-index="46">tible-id</span>"<strong>></strong>Abbreviation<strong></<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="abbr" data-mce-index="47">abbr</span>></<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dt" data-mce-index="48">dt</span>></strong><br> <strong><dd></strong>Description<strong></dd></strong><br> <strong></dl></strong></pre>
</td>
<td>
<pre class="example highlight"><strong> <dl></strong><br> <strong><<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dt" data-mce-index="49">dt</span>><<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="abbr" data-mce-index="50">abbr</span></strong> title="title-id"<strong>></strong>Abbreviation<strong></<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="abbr" data-mce-index="51">abbr</span>></<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="dt" data-mce-index="52">dt</span>></strong><br> <strong><dd></strong>Description<strong></dd></strong><br> <strong></dl></strong></pre>
</td>
</tr>
</tbody>
</table>
</section>
</section>
<section id="section">
<h2>Sections</h2>
<ul>
<li>This section describes how sections, subsections and appendix sections work.</li>
</ul>
<section id="sections">
<h2>Sections</h2>
<p>All the section functions are located in the "Sections" button.</p>
<table id="t-sections" style="height: 1039px;" width="1002" data-mce-style="height: 1039px;" class="mce-item-table"><caption>Sections</caption>
<thead>
<tr>
<td>Operation</td>
<td>Description</td>
<td>Problems</td>
</tr>
</thead>
<tbody>
<tr>
<td><em>"Add Section"</em></td>
<td>
<p>Follow these steps:</p>
<ol>
<li>Place the cursor where you want to add the section.</li>
<li>Click<strong> "Sections"</strong>/<strong>"Add Section</strong>" button on the <strong>Editor Menu.</strong></li>
</ol>
<p>Note: if the cursor was placed inside of a section the new section will be inside of this section, (nested section).</p>
<p>If you want to create a new section outside of any section, see below.</p>
</td>
<td><br>
</td>
</tr>
<tr>
<td>
<p><em>"Add Section After"</em></p>
<p><br>
</p>
</td>
<td>
<p>Follow these steps to add a section at the same level than another section.</p>
<ol>
<li>Place the cursor, inside section level X, </li>
<li>Click "<strong>Sections</strong>" / "<strong>Add Section After</strong>" button on the <strong>Editor Menu</strong>.
<ul>
<li>The Editor will insert the new section just after section level <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="x" data-mce-index="53">x</span>, at the same level</li>
</ul>
</li>
</ol>
<p>Note: If you want to add a nested section see above description.</p>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>"Delete Section"</em></td>
<td>
<p>Follow these steps:</p>
<ol>
<li>Place the cursor inside of the section or subsection to delete.</li>
<li>Click "<strong>Sections</strong>" / "<strong>Delete Section</strong>" button on the <strong>Editor Menu.</strong></li>
</ol>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>"Move Section Up"</em></td>
<td>
<p>Follow these steps:</p>
<ol>
<li>Place the cursor inside of the section or subsection to move up.</li>
<li>Click "<strong>Sections</strong>" / "<strong>Move Section Up</strong>" button on the <strong>Editor Menu.</strong></li>
<li>The Editor will move the selected section one section up.</li>
</ol>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>"Move Section Down"</em></td>
<td>
<p>Follow these steps:</p>
<ol>
<li>Place the cursor inside of the section or subsection to move down.</li>
<li>Click "<strong>Sections</strong>" / "<strong>Move Section Down</strong>" button on the <strong>Editor Menu.</strong></li>
<li>The Editor will move the selected section one section down.</li>
</ol>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>"<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="Unindent" data-mce-index="54">Unindent</span> Section"</em></td>
<td>
<p>Follow these steps:</p>
<ol>
<li>Place the cursor inside of the section or subsection to be <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="unnested" data-mce-index="55">unnested</span>.</li>
<li>Click "<strong>Sections</strong>" / "<strong><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="Unindent" data-mce-index="56">Unindent</span> Section</strong>" button on the <strong>Editor Menu.</strong></li>
<li>The Editor will move the selected section outside of the nested section and one section down.</li>
</ol>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Hyperlink to an existent section</em></td>
<td>
<p>Follow these steps:</p>
<ol>
<li>There is no need to create an <em>ID </em>or anchor to link to a <strong>section</strong>, <strong>subsection</strong> or <strong>appendix</strong>.<br>
<ul>
<li>The system is able to identify, by default, all the section titles without the need to introduce an "<em>ID</em>" or "<em>anchor</em>".</li>
</ul>
</li>
</ol>
<p>To link back from inside or outside of the document to a particular section follow these steps:</p>
<ol>
<li>Select the word that you want to link to the section hat you can use as a link.</li>
<li>Click in "<strong>Insert/Edit Link</strong>" button on the <strong>Editor Menu</strong>.</li>
</ol>
<p>Insert the following values:</p>
<ol>
<li><strong>URL</strong>
<ul>
<li>Insert <strong>#</strong> followed by the section name. Rules to create the section name:
<ul>
<li><em>use the same title as it appears in the section to link to.</em></li>
<li><em>use lowercase only.</em></li>
<li><em>use (-) to separate words.</em></li>
<li><em>eliminate any special character <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="e" data-mce-index="57">e</span>.<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="g" data-mce-index="58">g</span>. "(", "-", etc.</em></li>
<li><em><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="e" data-mce-index="59">e</span>.<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="g" data-mce-index="60">g</span>. #terminology-and-conventions</em></li>
</ul>
</li>
</ul>
</li>
</ol>
<ol>
<li><strong>Text to Display</strong>
<ul>
<li>This is the word/statement that contains the link to click</li>
</ul>
</li>
<li><strong>Title</strong>
<ul>
<li>This content is displayed when hovering over the word/statement</li>
</ul>
</li>
<li><strong>Anchor</strong>
<ul>
<li>none</li>
</ul>
</li>
<li><strong>Target</strong>
<ul>
<li>none</li>
</ul>
</li>
</ol>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Find Section ID</em></td>
<td>
<p> Follow up these steps to find the ID for a section:</p>
<ol>
<li>Place the cursor over the section title that you want to obtain the Section ID.</li>
<li>Look at the URL displayed in the bottom-left-hand corner of the screen.</li>
<li>Identify the last part of the URL starting with "#", this is the section ID that you can use inside of hyperlink to jump to that section., <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="e" data-mce-index="61">e</span>.<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="g" data-mce-index="62">g</span>.: #how-to-use-this-document.</li>
</ol>
</td>
<td><br>
</td>
</tr>
</tbody>
</table>
<p><br>
</p>
<p><strong>Sections in HTML</strong></p>
<table id="t-html-sections" style="height: 95px;" width="967" data-mce-style="height: 95px;" class="mce-item-table"><caption>Sections in HTML</caption>
<thead>
<tr>
<td><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="ReSpec" data-mce-index="63">ReSpec</span></td>
<td>TinyMCE Editor</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<pre class="example highlight"><strong> <section></strong><br> <strong><h2></strong>Section Title<strong></h2><br> </section></strong></pre>
</td>
<td>
<pre class="example highlight"><strong> <section></strong><br> <strong><h2></strong>Section Title<strong></h2><br> </section></strong></pre>
</td>
</tr>
<tr>
<td>
<pre class="example highlight"><strong> <section></strong><br> <strong><h2></strong>Section Title<strong></h2><br> <section><br> <h2></strong>Section Title<strong></h2><br> </section><br> </section></strong></pre>
</td>
<td>
<pre class="example highlight"><strong> <section></strong><br> <strong><h2></strong>Section Title<strong></h2><br> <section><br> <h2></strong>Section Title<strong></h2><br> </section><br> </section></strong></pre>
</td>
</tr>
</tbody>
</table>
<p><br>
</p>
</section>
<section id="appendix">
<h2>Appendix</h2>
<ul>
<li>In <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="OMA" data-mce-index="64">OMA</span> technical documents the <strong>Appendix</strong> section is introduced ONLY once in the document.<br>
<ul>
<li>After an <strong>Appendix</strong> section is introduced, all subsequent sections will be marked by <strong>default</strong> as <strong>Appendices</strong>.</li>
</ul>
</li>
</ul>
<table id="sections" style="height: 261px;" width="1000" data-mce-style="height: 261px;" class="mce-item-table"><caption>Section, Subsection and Appendix</caption>
<thead>
<tr>
<th style="text-align: center;" data-mce-style="text-align: center;"><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="OperationsDescriptionProblems" data-mce-index="65">OperationsDescriptionProblems</span></th>
</tr>
</thead>
<tbody>
<tr>
<td><em>Add 1st "Appendix" Section</em></td>
<td>
<p>Follow these steps:</p>
<ol>
<li>Click "<strong>Add Appendix</strong>" button on the <strong>Editor Menu</strong>
<ul>
<li>The Editor will add an <strong>Appendix</strong> section at the bottom of the document. Independent of where the cursor is placed at the time of adding a section.</li>
</ul>
</li>
</ol>
<ul>
<li>Once an <strong>Appendix</strong> section already exist in the document, the system will interpret subsequent sections as <strong>Appendices</strong>.</li>
</ul>
</td>
<td>
<ul>
<li>P2 - "Add Appendix" button in the Editor Menu should be moved to the new "Sections" button.</li>
</ul>
</td>
</tr>
<tr>
<td><em>Add subsequent "Appendix" sections</em></td>
<td>
<ul>
<li>Use "<strong>Add Section</strong>" and "<strong>Add Section After</strong>" to create new and nested <strong>Appendices</strong>. See <a title="Click here to see how to add more appendices." href="#sections" data-mce-href="#sections">Sections</a>.</li>
</ul>
</td>
<td><br>
</td>
</tr>
<tr>
<td><em>Move Up & Down Sections</em></td>
<td>
<ul>
<li>Please refer to <a title="Click here to see Sections" href="#sections" data-mce-href="#sections">Sections</a>.</li>
</ul>
Warning!: Do not move up the first Appendix section. Otherwise, a normal section listed after an Appendix section will be marked as appendix.</td>
<td><br>
</td>
</tr>
</tbody>
</table>
<p><br>
</p>
<p><strong>Appendix in HTML</strong></p>
<table id="t-html-appendix" style="height: 95px;" width="967" data-mce-style="height: 95px;" class="mce-item-table"><caption>Appendix in HTML</caption>
<thead>
<tr>
<td><span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="ReSpec" data-mce-index="66">ReSpec</span></td>
<td>TinyMCE Editor</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<pre class="example highlight"><strong> <section </strong>class="appendix"<strong>></strong><br> <strong><h2></strong>Appendix Title<strong></h2><br> </section></strong></pre>
</td>
<td>
<pre class="example highlight"><section class="appendix"><br> <h2>Appendix Title</h2><br> <<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="p" data-mce-index="67">p</span>>New Appendix</<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="p" data-mce-index="68">p</span>><br> <<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="p" data-mce-index="69">p</span>>&<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="nbsp" data-mce-index="70">nbsp</span>;</<span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="p" data-mce-index="71">p</span>><br></section> </pre>
</td>
</tr>
</tbody>
</table>
<p><br>
</p>
</section>
<section id="titles">
<h2>Titles</h2>
<ul>
<li>See <a title="Click here to see how to insert titles." href="#headings" data-mce-href="#headings">Headings</a> section.</li>
<li>This editor only creates titles type <h2>Title</h2>. This is because <span class="mce-spellchecker-word" data-mce-bogus="1" data-mce-word="ReSpec" data-mce-index="72">ReSpec</span> only uses <h2> titles.</li>
</ul>
</section>
</section>
<section id="references">
<h2>References</h2>
<ul>
<li>The <strong>References</strong> section does NOT exist in the document on <strong>Editor Mode</strong>.
<ul>
<li>This section is constructed automatically at the time of rendering the document.</li>
</ul>
</li>
<li>Each reference, normative or informative, is input in the document with an special notation. The system will do a look up to a database containing all these references and it will create the <strong>Reference</strong> section at the time of rendering the document.</li>
</ul>
<table id="t-references" style="height: 79px;" width="868" data-mce-style="height: 79px;" class="mce-item-table"><caption>References</caption>
<thead>
<tr>
<td>Operation</td>
<td>Description</td>
<td>Problems</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>Insert a</p>
<p><em>Normative Reference</em></p>
</td>
<td>
<ul>
<li> Input the reference inside of double brackets and suffix by an exclamation mark:
<ul>
<li>[[!Normative-reference]]</li>
</ul>
</li>
</ul>
</td>
<td><br>
</td>
</tr>
<tr>
<td>