-
Notifications
You must be signed in to change notification settings - Fork 0
/
OMA-Integrated-Viewer-Guidelines.html
1433 lines (1430 loc) · 37.2 KB
/
OMA-Integrated-Viewer-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>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>OMA Integrated Viewer Tool</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: "File_Name",
shortName: "shortName",
otherLinks: [{
key: "Other Link",
data: [{
value: "Link Name",
href: "#location"
}]
}],
editors: [{
name: "Joaquin Prado",
url: "",
company: "",
companyURL: "",
mailto: "",
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: "CANDIDATE", // options are Draft, Candidate, Approved, Historic
publishDate: ""
};
</script>
</head>
<body>
<section id="toc"></section>
<section id="tof"></section>
<section id="tot"></section>
<!-- start scope --><!-- end scope --><!-- start terminology and conventions --><!-- /end terminology and conventions --><!-- start introduction --><!-- end introduction --><!-- start sections as needed --><!-- end sections as needed --><!-- start another section --><!-- end another section --><!-- end scr requirements --><!-- start additional appendix --><!-- note that there is no need for appendix class -->
<p> </p>
<section>
<h2>Introduction</h2>
<p>This document explains how to use the Integrated Viewer Tool.</p>
</section>
<section>
<h2>Work Flows</h2>
<p>paragraph</p>
<section>
<h2>Work Program</h2>
<p>The following diagram describes the work flow inside of the Work Program tab.</p>
<figure><img src="https://s3-us-west-2.amazonaws.com/oma-editor-upload/work-program-27/work-program-1495595668351.jpg" /> <figcaption style="text-align: center;">Work Program<br /> </figcaption></figure>
</section>
<section>
<h2>Change Request</h2>
<p>The following diagram describes a very high level the work flow inside of the Change Request tab.</p>
<figure><img src="https://s3-us-west-2.amazonaws.com/oma-editor-upload/work-program-27/Change-Request-1495595733946.jpg" /> <figcaption>Caption</figcaption></figure>
</section>
</section>
<section>
<h2>Top Menu</h2>
<p>This is the list of menus at the top right hand corner of the screen.</p>
<section>
<h2>Working Groups</h2>
<p>A click in this menu will open a window listing all the available Working Groups.</p>
</section>
<section>
<h2>Admin</h2>
<p>Only available to System Administrators.</p>
<section>
<h2>References DB</h2>
<ul>
<li>Reference Database contains the list of reference documentation.</li>
<li>If the reference to input in the technical document is not listed here, ReSpec will indicate that the reference is missing from this database.</li>
<li>It is possible to:
<ul>
<li>"Edit",</li>
<li>"Remove", or</li>
<li>"Add" a new reference</li>
</ul>
</li>
</ul>
<table id="t-reference-db" style="height: 87px;" width="1007"><caption>Reference Database</caption>
<thead>
<tr>
<th>Operation</th>
<th>Description</th>
<th>Problems</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>New Reference </em></td>
<td>
<ol>
<li>Click "New Reference" to add a new reference to the database:</li>
<li>Input the following information:</li>
</ol>
<ul style="list-style-type: disc;">
<li><strong>Key: e.g. </strong>[OMADICT]</li>
<li><strong>Author:</strong></li>
<li><strong>Title:</strong></li>
<li><strong>Date: </strong>DD/MM/YYYY</li>
<li><strong>Draft Edition:</strong></li>
<li><strong>Status:</strong></li>
<li><strong>Publisher:</strong></li>
<li><strong>HREF</strong>:</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Edit</em></td>
<td>
<ul>
<li>Click in "<strong>Edit</strong>" button to edit and existing reference.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Destroy </em></td>
<td>
<ul style="list-style-type: disc;">
<li>Click in "<strong>Destroy</strong>" button to remove the reference from the database.</li>
</ul>
</td>
<td> </td>
</tr>
</tbody>
</table>
<p> </p>
</section>
<section>
<h2>Working Groups</h2>
<ul style="list-style-type: disc;">
<li>From this page you can manages the list of <strong>Working Groups</strong> displayed by the <strong>Integrated Viewer Tool</strong>.</li>
</ul>
<table id="t-working-groups" style="height: 76px;" width="1010"><caption>Working Groups</caption>
<thead>
<tr>
<th>Operation</th>
<th>Description</th>
<th>Problems</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>Key</em></td>
<td>
<ul>
<li>Short name of the <strong>Working Group</strong> to display under <strong>Working Groups</strong>.</li>
<li><strong>Working Groups</strong> MAY or MAY NOT have <strong>Working Areas</strong>.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Name</em></td>
<td>
<ul>
<li>Administrative name of the <strong>Working Group</strong>.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Edit</em></td>
<td>
<ul>
<li>A click in "<strong>Edit</strong>" button will allow the staff to update:
<ul>
<li><em>Key,</em></li>
<li><em>Name</em> and</li>
<li><em>General Information</em> of an existing <strong>Working Group</strong>.</li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Destroy</em></td>
<td>
<ul>
<li>A click in "<strong>Destroy</strong>" button will eliminate the corresponding <strong>Working Group</strong> upon confirmation.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>New Working Group</em></td>
<td>
<ul>
<li>A click in "<strong>New Working Group</strong>" button will open a new window to input the new <strong>Working Group</strong>:
<ul>
<li><em>Key, </em></li>
<li><em>Name, and </em></li>
<li><em>General Information</em></li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
</tbody>
</table>
<p> </p>
</section>
<section>
<h2>Working Areas</h2>
<ul style="list-style-type: disc;">
<li>This page allows you to manage the list of <strong>Working Areas</strong> displayed by the <strong>Integrated Viewer Tool</strong>.</li>
<li>A<strong> Working Area</strong> MUST be defined inside of a Working Group.</li>
</ul>
<table id="t-working-areas" style="height: 87px;" width="1011"><caption>Working Areas</caption>
<thead>
<tr>
<th>Operation</th>
<th>Description</th>
<th>Problems</th>
</tr>
</thead>
<tbody>
<tr>
<td>Working Group</td>
<td>
<ul>
<li>A <strong>Working Area</strong> MUST belong to a single <strong>Working Group</strong>.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td>Name</td>
<td>
<ul>
<li>Name of the <strong>Working Area</strong>.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td>Description</td>
<td>
<ul>
<li>Description of the <strong>Working Area</strong></li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td>Edit</td>
<td>
<ul>
<li>A click in "<strong>Edit</strong>" button will allow the staff to update:<br />
<ul>
<li><em>Working Group,</em>
<ul>
<li>Only Working Groups listed in the drop menu are allowed.</li>
</ul>
</li>
<li><em>Name of the Working Area, </em>and</li>
<li><em>Description</em></li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td>Destroy</td>
<td>
<ul>
<li>A click in "<strong>Destroy</strong>" button will eliminate the corresponding <strong>Working Area</strong>.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td>New Working Areas</td>
<td>
<ul>
<li>A click in "<strong>New Working Area</strong>" button will allow the staff to create a new <strong>Working Area</strong> inside of an existing <strong>Working Group</strong>.</li>
<li>The following information must be input:
<ul>
<li><em>Working Group</em>:</li>
<li><em>Name</em> (of the Working Area)</li>
<li><em>Description</em>:</li>
</ul>
</li>
<li>Upon click in "<strong>Create Working Area</strong>" the system will add the new <strong>Working Area</strong> under the selected <strong>Working Group</strong>.</li>
</ul>
</td>
<td> </td>
</tr>
</tbody>
</table>
<p> </p>
</section>
<section>
<h2>Work Programs</h2>
<p>This page indicates how to manage the list of <strong>Releases/Repositories</strong> displayed in the <strong>Integrated Viewer Tool</strong>.</p>
<table id="t-working-programs" style="height: 143px;" width="999"><caption>Working Program / Repositories</caption>
<thead>
<tr>
<th>Operation</th>
<th>Description</th>
<th>Problems</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>New Work Program</em></td>
<td>
<ul style="list-style-type: disc;">
<li>A click in "<strong>New Work Program</strong>" will allow OMA staff to introduce a new Enabler or Repository.
<ul>
<li><strong><em>Working Area</em></strong> name,</li>
<li><strong><em>Name</em> </strong>of the Enabler or repository</li>
<li><strong><em>Status</em> </strong>of the Enabler or repository
<ul>
<li>Active,</li>
<li>Closed</li>
</ul>
</li>
<li><em><strong>Repository UR</strong>L</em>,</li>
<li><strong><em>Default Branch</em></strong> <strong>in GitHub</strong> to point to from the <strong>Integrated Viewer</strong>.</li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Name</em></td>
<td>
<ul>
<li>Name of the Release or Enabler or repository</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Repository URL</em></td>
<td>
<ul>
<li>URL where the Enabler document are stored, (repository)</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Status</em></td>
<td>
<ul>
<li>Indicates the "<strong>Status</strong>" of the Enabler or Repository</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Edit</em></td>
<td>
<ul>
<li>A click in "<strong>Edit</strong>" will allow OMA staff to update:<br />
<ul>
<li><strong><em>Working Area</em></strong> name,</li>
<li><strong><em>Name</em> </strong>of the Enabler or repository</li>
<li><strong><em>Status</em> </strong>of the Enabler or repository
<ul>
<li>Active,</li>
<li>Closed</li>
</ul>
</li>
<li><strong><em>Repository URL</em></strong>,</li>
<li><strong><em>Default Branch</em> in GitHub</strong> to point to from the <strong>Integrated Viewer</strong>.</li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Destroy</em></td>
<td>
<ul>
<li>A click in "<strong>Destroy</strong>" button will remove the Enabler or Repository upon confirmation.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Templates</em></td>
<td>
<ul>
<li>A click in "<strong>Templates</strong>" button will allow OMA staff to introduce a new baseline document in the selected repository or Working Program of the Enabler.</li>
</ul>
</td>
<td> </td>
</tr>
</tbody>
</table>
<p> </p>
</section>
<section>
<h2>Users</h2>
<p>This window allows the administrator to manage the users accounts.</p>
<table id="t-users" style="height: 106px;" width="1006"><caption>User Management</caption>
<thead>
<tr>
<th>Operation</th>
<th>Description</th>
<th>Problems</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>User Email Address</em></td>
<td>
<ul>
<li>Email address of the user.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Role</em></td>
<td>
<ul>
<li>Role played by the user:
<ul>
<li>Administrator</li>
<li>Staff</li>
<li>Officer</li>
<li>Editor</li>
<li>Member</li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Change Role</em></td>
<td>
<ul>
<li>A click in "<strong>Change Role</strong>" will allow OMA staff to change the role of an existing <strong>Integrated Viewer</strong> user.
<ul>
<li>The possible roles are listed below above.</li>
</ul>
</li>
</ul>
</td>
<td>
<ul style="list-style-type: disc;">
<li> P2 - create a matrix of access rights based on functions and roles</li>
</ul>
</td>
</tr>
<tr>
<td><em>Delete User</em></td>
<td>
<ul>
<li>A click in "<strong>Delete User</strong>" will allow the OMA staff to delete and account upon confirmation.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Add New User</em></td>
<td>
<ul>
<li>The addition of a new user to the Integrated Viewer requires to input the following information:<br />
<ul>
<li><em>Name</em>
<ul>
<li>Name of the user.</li>
</ul>
</li>
<li><em>Email</em>
<ul>
<li>User email address.</li>
</ul>
</li>
<li><em>Role</em>
<ul>
<li><em>Admin</em>
<ul>
<li>Administrator access to the application.</li>
</ul>
</li>
<li><em>Staff</em>
<ul>
<li>Full write access to all the functions in the application.</li>
</ul>
</li>
<li><em>Officer</em>
<ul>
<li>Partial write access to the functions in the application.</li>
</ul>
</li>
<li><em>Editor</em>
<ul>
<li>A more restrictive write access than the Officer to the functions in the application.</li>
</ul>
</li>
<li><em>Members</em>
<ul>
<li>Mainly read access only to the following tabs functions:<br />
<ul>
<li><strong>Work Program</strong>
<ul>
<li>Ability to create and delete own Change Requests.</li>
<li>Ability to share Change Requests among other members.</li>
</ul>
</li>
<li><strong>Change Request</strong>
<ul>
<li>Ability to Withdrawn or create a new revision of a document submitted by the user.</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li><em>Password</em>
<ul>
<li>Input by the staff at the time of creating the user account.</li>
</ul>
</li>
<li><em>Password Confirmation</em></li>
</ul>
</li>
</ul>
</td>
<td style="padding-left: 30px;"><br />
<p><strong>P1. 3th April, 23rd May</strong></p>
The Officer roll appears twice.</td>
</tr>
</tbody>
</table>
<p> </p>
</section>
</section>
<section>
<h2>My Account</h2>
<p>This section allows the end-user to manage its own account with the<strong> Integrated Viewer</strong>.</p>
<table id="t-my-account" style="height: 63px;" width="1043"><caption>My Account</caption>
<thead>
<tr>
<th>Operation</th>
<th>Description</th>
<th>Problems</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>Update Password</em></td>
<td>
<ul>
<li>Allows individual users to update its password.</li>
</ul>
<ol>
<li>Input your new password for the Integrated Viewer</li>
<li>Re-enter your new personal password as confirmation</li>
<li>In order to change to your new password you need to enter the old password.</li>
</ol>
</td>
<td> </td>
</tr>
<tr>
<td><em>Link with GitHub</em></td>
<td>
<ul>
<li>This button allows the user to connect its <strong>Integrate Viewer</strong> account with the user personal GitHub account.
<ul>
<li>This connection with GitHub is needed if the user is a Chair or editor and he wants to upload a new baseline to the repository.</li>
<li>For regular members with read access only to link their Integrated Viewer account with their GitHub account is not needed.</li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Cancel my Account</em></td>
<td>
<ul>
<li>This button will allow the individual user to cancel its own account with the <strong>Integrated Viewer</strong>.</li>
</ul>
</td>
<td> </td>
</tr>
</tbody>
</table>
<p> </p>
</section>
<section>
<h2>Sign Out</h2>
<ul style="list-style-type: disc;">
<li>A click in the "<strong>Sign Out</strong>" button will log you out of the application.</li>
</ul>
</section>
</section>
<section>
<h2>WG, WA, and Repositories</h2>
<p>The <strong>Repositories</strong> are organized inside of <strong>Working Areas</strong> and <strong>Working Groups</strong>.</p>
<table id="t-wg-wa-repositories" style="height: 368px;" width="1070"><caption>WG, WA and Repositories</caption>
<thead>
<tr>
<th>Operation</th>
<th>Description</th>
<th>Problem</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>Working Groups</em></td>
<td>
<ul>
<li>1st level<br />
<ul>
<li>Select a working group</li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Working Areas</em></td>
<td>
<ul>
<li>2nd level<br />
<ul>
<li>Select a Working Area</li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Repositories</em></td>
<td>
<ul>
<li>3rd level<br />
<ul>
<li>Select a Repository or Project</li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Tab Menu</em></td>
<td>
<ul>
<li>4rd level<br />
<ul>
<li>Select a tab menu:
<ul>
<li>General</li>
<li>Work Program</li>
<li>Change Request</li>
<li>Repository</li>
<li>Publication</li>
</ul>
</li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
</tbody>
</table>
<p> </p>
</section>
<section>
<h2>Tab Menus</h2>
<p> This section describes the functionality of the tab menus.</p>
<section>
<h2>General</h2>
<ul style="list-style-type: disc;">
<li>It doesn't have any functionality associated yet.</li>
<li>Eventually, it will contain General information related to the Working Group or even Working Area.</li>
</ul>
</section>
<section>
<h2>Work Program</h2>
<p>The content of this window is explained in the following two sections:</p>
<ul>
<li><strong>"Document Baseline"</strong>
<ul>
<li>Half-right side of the window.</li>
</ul>
</li>
<li><strong>"Your Change Requests"</strong>
<ul>
<li>Half-left side of the window.</li>
</ul>
</li>
</ul>
<section>
<h2>Document Baseline</h2>
<p>This side of the screen contains all the document baselines stored in the corresponding GitHub repository:</p>
<p> </p>
<table id="t-document-baseline" style="height: 47px;" width="980"><caption>Document Baseline</caption>
<thead>
<tr>
<th>Operation</th>
<th>Description</th>
<th>Problem</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>Document Baselines </em></td>
<td>
<ul>
<li>This column lists all the documents contained inside of the repository.</li>
<li>Document are organized inside of folders, (one level only).</li>
</ul>
</td>
<td>
<ul>
<li>Priority 2 (P2)<br />
<ul>
<li>Subfolders inside of folders are not correctly represented. Content of subfolders seems to be replicated using the same name as the subfolder.</li>
</ul>
</li>
</ul>
</td>
</tr>
<tr>
<td><em>Last Merged</em></td>
<td>
<ul>
<li><em>Date/Time</em><br />
<ul>
<li>Date/Time (UTC) of the last CR that was merged.</li>
</ul>
</li>
<li><em>Author</em>
<ul>
<li>Name of the person which latest change request was merged in the baseline.</li>
</ul>
</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Author</em></td>
<td>
<ul style="list-style-type: circle;">
<li>This column indicates the name of the person that has submitted the last merged Pull Request for the corresponding baseline</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Compare</em></td>
<td>
<ul style="list-style-type: disc;">
<li>A click in the word "<strong>Compare</strong>" button will open a new web page:
<ul style="list-style-type: disc;">
<li>Containing all the baselines versions for that particular document</li>
<li>This page will allow you to compare to of the selected baselines.</li>
</ul>
</li>
</ul>
<ol>
<li>The first box to tick should be the oldest baseline that you want to compare. </li>
<li>The second box to tick should be the for the newest baseline.</li>
</ol>
<ul style="list-style-type: circle;">
<li>If you follow the sequence of selecting first the oldest baseline followed by the newest, then the comparing function will give you highlight in green what was added new to the newest baseline and in red what was deleted from the old baseline.</li>
</ul>
<p>Note: Alternative, if you change the selection sequence you will have the opposite result.</p>
</td>
<td>
<ul>
<li>P2 3rd April - this function takes very long time to compare.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p> </p>
</section>
<section>
<h2>Your Change Requests</h2>
<ul>
<li>The left-hand side of the screen is a personal and private section. It contains Change Requests created by the end-user that haven't been submitted yet.</li>
<li>The Change Requests in this section of the screen are only visible to the account holder, they are NOT visible to the rest of user accounts.
<ul>
<li>Note: Please, note that it is possible for an user to share her Change Request with specific members or with ALL the users of the <strong>Integrated Viewer</strong>. </li>
</ul>
</li>
</ul>
<table id="t-your-change-requests" style="height: 79px;" width="1009"><caption>Your Change Requests</caption>
<thead>
<tr>
<th>Operation</th>
<th>Description</th>
<th>Problems</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>Create a CR</em></td>
<td>
<ol>
<li>Click in "<strong>CR</strong>" button to create a new Change Request.
<ul>
<li>The CR file name is pre-constructed at the time of creating the CR.
<ul>
<li>OMA-<WG>-<Year>-<incremental number>_<title></li>
</ul>
</li>
</ul>
</li>
</ol>
<ul style="list-style-type: circle;">
<li>Note: the Change Request title MUST be unique. The system doesn't accept two Change Request with the same name.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Edit a CR</em></td>
<td>
<ol>
<li>Click in the "<strong>Edit</strong>" button to start editing an existing, not submitted yet, Change Request.</li>
</ol>
<ul style="list-style-type: circle;">
<li>Once the Editor opens it is possible to share with other users the Change Request by clicking in the "<strong>Collaboration</strong>" button at the top of the Editor Tool.</li>
<li>The options are:
<ul>
<li><strong>Private</strong> (<em>single person icon</em>)
<ul>
<li>It is the default setting.</li>
<li>In this mode the CR is only visible by the creation until it is submitted to the Group.</li>
</ul>
</li>
<li><strong>Public</strong> (<em>World icon</em>)<br />
<ul>
<li>The CR is made available to all users of the Integrated Viewer.</li>
<li>Public CRs can be seen when clicking in the "Edit" button.</li>
</ul>
</li>
<li><strong>Collaborate</strong> (<em>collaboration icon</em>)<br />
<ul>
<li>The CR is made available to a selected group of end-users that have an account with the <strong>Integrated Viewer</strong>.</li>
</ul>
</li>
</ul>
</li>
</ul>
</td>
<td>
<ul>
<li>P1 - <strong>23rd May problem after the latest changes.</strong></li>
<li>The problem now is that if the document is marked as "Revision" after being submitted, then it is not possible at all to add any new comment.</li>
</ul>
</td>
</tr>
<tr>
<td><em>Compare CRs</em></td>
<td>
<ol>
<li>Click the "<strong>Compare</strong>" drop menu to view all the commits (Changes) for a particular Change Request.</li>
<li>Upon selecting a Change Request, a new window will open to compare the different changes apply to the Change Request.</li>
<li>Select the oldest commit tick box followed by the newest commit.</li>
</ol>
<ul style="list-style-type: circle;">
<li>Note: if you compare two commits following this sequence you will see the new additions of the newest Change Request highlighted in green and the deletions in red.</li>
</ul>
<p>Note: Each commit contain the changes saved after click "Save" button in the editor.</p>
</td>
<td> </td>
</tr>
<tr>
<td><em>Submit CRs</em></td>
<td>
<ul>
<li>Click in "<strong>Submit</strong>" drop menu to select which of the existing, not submitted, Change Requests you want to submit to the Working Group.</li>
<li>Once the CR is submitted it will disappear from the private area of the user.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Delete CRs</em></td>
<td>
<ul>
<li>Click in "<strong>Delete</strong>" drop menu to select which of the listed Change Requests you want to delete.</li>
</ul>
</td>
<td> </td>
</tr>
</tbody>
</table>
<p> </p>
</section>
<p> </p>
</section>
<section>
<h2>Change Requests</h2>
<p>This section describes the functionality available in under the Change Request tab.</p>
<table id="t-change-requests" style="height: 139px;" width="1044"><caption>Change Requests</caption>
<thead>
<tr>
<th>Operation</th>
<th>Description</th>
<th>Problems</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>Show Entries</em></td>
<td>
<ul>
<li>This drop menu allows you to control the number of Change Requests to display: 10, 25, 50 or 100.</li>
<li>At the button of the table is possible to move to the next group of Change Requests to display.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Search</em></td>
<td>
<ul>
<li>Filter the list of Change Requests by any word in the Change Request title.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Number</em></td>
<td>
<ul>
<li>Sort out function, by default Change Requests are listed in descending order</li>
<li>If click in the icon the sort out is reversed.</li>
</ul>
</td>
<td> </td>
</tr>
<tr>
<td><em>Comment (C)</em></td>
<td>
<ul>
<li>Allow users to input comments against the Change Request</li>
</ul>
</td>
<td>
<ul style="list-style-type: circle;">
<li> P2. <strong>13th April</strong>. By default the text box should be a bit larger. In this way it is easier to input text more comfortable.</li>
</ul>
</td>
</tr>
<tr>
<td><em>Change Requests</em></td>
<td>
<ul style="list-style-type: circle;">
<li>Name of the Change Request that has been submitted</li>
<li>A click in this link will provide provide change marks of the changes introduced by this Change Request:
<ul>
<li>Green indicates what has been added by the Change Request, and</li>
<li>Red colour indicates what has been deleted by the Change Request</li>
</ul>
</li>
</ul>
<ul style="list-style-type: circle;">
<li>Note: A click in the the title "Change Requests" will sort the titles of the Change Request in alphabetic order, a second click will reverse the sort out.</li>