Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9c49318d8b7b0512eaad27d3d068dd7db7e847b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
<!DOCTYPE html PUBLIC "-//w3c//dtd html 4.0 transitional//en">
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<meta name=ProgId content=FrontPage.Editor.Document>
<meta name=Generator content="Microsoft FrontPage 5.0">
<meta name=Originator content="Microsoft Word 10">
<title>Testing Scenarios for Help</title>
<!--[if gte mso 9]><xml>
 <o:DocumentProperties>
  <o:Author>Curtis d'Entremont</o:Author>
  <o:LastAuthor>Curtis d'Entremont</o:LastAuthor>
  <o:Revision>24</o:Revision>
  <o:TotalTime>153</o:TotalTime>
  <o:Created>2006-04-28T19:24:00Z</o:Created>
  <o:LastSaved>2006-05-01T20:13:00Z</o:LastSaved>
  <o:Pages>1</o:Pages>
  <o:Words>4408</o:Words>
  <o:Characters>25126</o:Characters>
  <o:Company>IBM</o:Company>
  <o:Lines>209</o:Lines>
  <o:Paragraphs>58</o:Paragraphs>
  <o:CharactersWithSpaces>29476</o:CharactersWithSpaces>
  <o:Version>10.6735</o:Version>
 </o:DocumentProperties>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:SpellingState>Clean</w:SpellingState>
  <w:GrammarState>Clean</w:GrammarState>
  <w:Compatibility>
   <w:UseFELayout/>
  </w:Compatibility>
  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
 </w:WordDocument>
</xml><![endif]-->
<link rel=Stylesheet type="text/css" media=all
href="scenarios_files/default_style.css">
<style>
<!--
 /* Font Definitions */
 @font-face
	{font-family:PMingLiU;
	panose-1:2 2 3 0 0 0 0 0 0 0;
	mso-font-alt:\65B0\7D30\660E\9AD4;
	mso-font-charset:136;
	mso-generic-font-family:roman;
	mso-font-pitch:variable;
	mso-font-signature:3 137232384 22 0 1048577 0;}
@font-face
	{font-family:"\@PMingLiU";
	panose-1:2 2 3 0 0 0 0 0 0 0;
	mso-font-charset:136;
	mso-generic-font-family:roman;
	mso-font-pitch:variable;
	mso-font-signature:3 137232384 22 0 1048577 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-parent:"";
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:PMingLiU;
	mso-believe-normal-left:yes; margin-left:0in; margin-right:0in; margin-top:0in}
h1
	{mso-style-update:auto;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	mso-outline-level:1;
	font-size:22.0pt;
	mso-bidi-font-size:21.0pt;
	font-family:"Times New Roman";
	font-weight:bold;}
h2
	{mso-style-update:auto;
	margin-top:.25in;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-line-height-alt:10.5pt;
	mso-pagination:widow-orphan;
	mso-outline-level:2;
	font-size:20.0pt;
	mso-bidi-font-size:18.0pt;
	font-family:"Times New Roman";
	font-weight:bold;}
h3
	{mso-style-update:auto;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	mso-outline-level:3;
	font-size:14.0pt;
	font-family:"Times New Roman";
	font-weight:bold;}
h4
	{mso-style-update:auto;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	mso-outline-level:4;
	font-size:12.0pt;
	font-family:"Times New Roman";
	font-weight:bold;}
p.MsoListNumber, li.MsoListNumber, div.MsoListNumber
	{mso-style-name:"List Number\',Steps; mso-style-update: auto; mso-pagination:
               widow-orphan; font-size: 12.0pt; font-family: Times New Roman;
               mso-fareast-font-family: PMingLiU; margin-left: 0in;
               margin-right: 0in; margin-top: 0in; margin-bottom: .0001pt";
	}
p.MsoListNumber2, li.MsoListNumber2, div.MsoListNumber2
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:32.15pt;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan;
	mso-list:l0 level1 lfo4;
	tab-stops:list 32.15pt;
	font-size:12.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:PMingLiU;}
a:link, span.MsoHyperlink
	{color:blue;
	text-decoration:underline;
	text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
	{color:purple;
	text-decoration:underline;
	text-underline:single;}
p
	{mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:PMingLiU;}
code
	{font-family:"Courier New";
	mso-ascii-font-family:"Courier New";
	mso-fareast-font-family:PMingLiU;
	mso-hansi-font-family:"Courier New";
	mso-bidi-font-family:"Courier New";}
pre
	{margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
	font-size:10.0pt;
	font-family:"Courier New";
	mso-fareast-font-family:PMingLiU;}
span.SpellE
	{mso-style-name:"";
	mso-spl-e:yes}
span.GramE
	{mso-style-name:"";
	mso-gram-e:yes}
@page Section1
	{size:8.5in 11.0in;
	margin:1.0in 1.25in 1.0in 1.25in;
	mso-header-margin:35.4pt;
	mso-footer-margin:35.4pt;
	mso-paper-source:0;}
div.Section1
	{page:Section1;}
 /* List Definitions */
 @list l0
	{mso-list-id:-129;
	mso-list-type:simple;
	mso-list-template-ids:509356122;}
@list l0:level1
	{mso-level-style-link:"List Number 2";
	mso-level-tab-stop:32.15pt;
	mso-level-number-position:left;
	margin-left:32.15pt;
	text-indent:-.25in;}
@list l1
	{mso-list-id:-120;
	mso-list-type:simple;
	mso-list-template-ids:-285414002;}
@list l1:level1
	{mso-level-style-link:"List Number";
	mso-level-tab-stop:.25in;
	mso-level-number-position:left;
	margin-left:.25in;
	text-indent:-.25in;}
@list l2
	{mso-list-id:1869490521;
	mso-list-template-ids:67698717;
	mso-list-style-name:"1 \/ a \/ i";}
@list l2:level1
	{mso-level-text:"%1\)";
	mso-level-tab-stop:.25in;
	mso-level-number-position:left;
	margin-left:.25in;
	text-indent:-.25in;}
@list l2:level2
	{mso-level-number-format:alpha-lower;
	mso-level-text:"%2\)";
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	margin-left:.5in;
	text-indent:-.25in;}
@list l2:level3
	{mso-level-number-format:roman-lower;
	mso-level-text:"%3\)";
	mso-level-tab-stop:.75in;
	mso-level-number-position:left;
	margin-left:.75in;
	text-indent:-.25in;}
@list l2:level4
	{mso-level-text:"\(%4\)";
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	margin-left:1.0in;
	text-indent:-.25in;}
@list l2:level5
	{mso-level-number-format:alpha-lower;
	mso-level-text:"\(%5\)";
	mso-level-tab-stop:1.25in;
	mso-level-number-position:left;
	margin-left:1.25in;
	text-indent:-.25in;}
@list l2:level6
	{mso-level-number-format:roman-lower;
	mso-level-text:"\(%6\)";
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	margin-left:1.5in;
	text-indent:-.25in;}
@list l2:level7
	{mso-level-tab-stop:1.75in;
	mso-level-number-position:left;
	margin-left:1.75in;
	text-indent:-.25in;}
@list l2:level8
	{mso-level-number-format:alpha-lower;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	margin-left:2.0in;
	text-indent:-.25in;}
@list l2:level9
	{mso-level-number-format:roman-lower;
	mso-level-tab-stop:2.25in;
	mso-level-number-position:left;
	margin-left:2.25in;
	text-indent:-.25in;}
@list l3
	{mso-list-id:2080053094;
	mso-list-template-ids:67698717;}
@list l3:level1
	{mso-level-text:"%1\)";
	mso-level-tab-stop:.25in;
	mso-level-number-position:left;
	margin-left:.25in;
	text-indent:-.25in;}
@list l3:level2
	{mso-level-number-format:alpha-lower;
	mso-level-text:"%2\)";
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	margin-left:.5in;
	text-indent:-.25in;}
@list l3:level3
	{mso-level-number-format:roman-lower;
	mso-level-text:"%3\)";
	mso-level-tab-stop:.75in;
	mso-level-number-position:left;
	margin-left:.75in;
	text-indent:-.25in;}
@list l3:level4
	{mso-level-text:"\(%4\)";
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	margin-left:1.0in;
	text-indent:-.25in;}
@list l3:level5
	{mso-level-number-format:alpha-lower;
	mso-level-text:"\(%5\)";
	mso-level-tab-stop:1.25in;
	mso-level-number-position:left;
	margin-left:1.25in;
	text-indent:-.25in;}
@list l3:level6
	{mso-level-number-format:roman-lower;
	mso-level-text:"\(%6\)";
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	margin-left:1.5in;
	text-indent:-.25in;}
@list l3:level7
	{mso-level-tab-stop:1.75in;
	mso-level-number-position:left;
	margin-left:1.75in;
	text-indent:-.25in;}
@list l3:level8
	{mso-level-number-format:alpha-lower;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	margin-left:2.0in;
	text-indent:-.25in;}
@list l3:level9
	{mso-level-number-format:roman-lower;
	mso-level-tab-stop:2.25in;
	mso-level-number-position:left;
	margin-left:2.25in;
	text-indent:-.25in;}
ol
	{margin-bottom:0in;}
ul
	{margin-bottom:0in;}
-->
</style>
<!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman"}
</style>
<![endif]--><![if mso 9]>
<style>
p.MsoNormal
	{margin-left:8.5pt;}
</style>
<![endif]>
<meta name=Author content=eclipse.org>
</head>

<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in;margin-left:
8.5pt;margin-top:14.2pt'>

<div class=Section1>

<h1 style='background-attachment:scroll'>Tests which have been converted to 
cheat sheets</h1>

<p style='background-attachment:scroll'>Last updated 5/24/2007</p>

<h2 style='background-attachment:scroll'><font color="#FF0000">These tests have 
all been converted to cheat sheets. If possible use the cheat sheet instead 
which contains the most current version of these tests.</font></h2>

<h2>Help</h2>

<h3>Scenario A: Integration with the workbench</h3>

<p class=MsoNormal>These tests exercise interactions with help system from
workbench. </p>

<p class=MsoNormal>&nbsp;</p>

<p class=MsoNormal>NOTE this scenario is part of the UA test cheatsheet.</p>

<h4>A1: Help browser preferences: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo9;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Launch
&quot;Window&quot;-&gt;&quot;Preferences&quot; (&quot;Eclipse&quot;-&gt;&quot;Preferences&quot; on Mac).&nbsp; Preferences dialog will
open.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Choose
&quot;Help&quot; on the left.&nbsp; This should show help preference page on
the right</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>On
Windows and Linux help uses embedded browser, and the preference should contain
a checkbox to use external browser. On Mac, the external browser is always used, so this option is omitted.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Choose
&quot;Help&quot;-&gt;&quot;Help Contents&quot; from the workbench menu, ensure
a browser opens and displays Help browser.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Go
back to help preferences, select &quot;Use external browser&quot;.&nbsp; Follow
hyperlink to Workbench Browsers preference page.&nbsp; Choose a browser to use,
Click &quot;OK&quot;.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Choose
&quot;Help&quot;-&gt;&quot;Help Contents&quot; from the workbench menu, ensure
a browser selected opens and displays Help.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>7.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Go
back to help preferences.&nbsp; If you have more browser adapters available,
try selecting each browser adapter and launch help.</p>

<h4>A2: Displaying help preferences: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo10;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Press
&quot;F1&quot; key (Ctrl+F1 on GTK, Help on Mac) in the workbench &quot;Navigator&quot;
view (&quot;Resources&quot; perspective). This should open help view in the
workbench, turned to Related Topics page.&nbsp; Verify &quot;About ...&quot;
section displays description of workbench part in focus.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
on one of the related links.&nbsp; A topic should open in the help view.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Change
help preferences to open context help in an <span class=SpellE>infopop</span>,
dialog context help in an <span class=SpellE>infopop</span>, help view document
open mode - in editor.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
&quot;back&quot; in the help view to arrive at Related Topics page.&nbsp;
Select a link from Dynamic Help section.&nbsp; Verify it opens in the editor
area.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Press
&quot;F1&quot; key (Ctrl+F1 on GTK, Help on Mac) in the workbench
&quot;Navigator&quot; view (&quot;Resources&quot; perspective) again.&nbsp;This
time it should open an <span class=SpellE>infopop</span> with a description and
related links.&nbsp; Focus should be on the first link (&quot;Views&quot;). </p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
&quot;Navigator View&quot; link.&nbsp; This should launch help web browser, and
display &quot;Navigator View&quot; document on the right and the list of
related topics on the left.&nbsp; The link called &quot;Navigator View&quot;
should be selected.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>7.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Open
help preferences, press &quot;F1&quot;.&nbsp; <span class=GramE>and</span> <span
class=SpellE>infopop</span> should open.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>8.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Restore
defaults in the <span class=SpellE>the</span> browser preference page, and
apply.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>9.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Press
F1 again.&nbsp; A small help view with Related Topics should open adjacent to
the preferences dialog.</p>

<h4>A3: Opening / closing help browser: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo11;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Without
closing the browser that opened in the previous test case, choose
&quot;Help&quot;-&gt;&quot;Help&quot; Contents&quot; from the workbench
menu.&nbsp; No new browser window should launch, and the existing help browser
should load the table of contents, with lists of books on the left, and
&quot;Welcome to Eclipse help&quot; document on the right.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Close
the help browser.&nbsp; Browser window should close.</p>

<h4>A4: Search: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo12;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Choose
&quot;Search&quot; from the workbench Help menu.&nbsp;Help search page should
open.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Type
a query &quot;open project&quot; (without quotes), click &quot;Go&quot;.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Choose
a result.&nbsp; The document should open with occurrences of the words
&quot;open&quot; and &quot;project&quot; highlighted.</p>

<h4>A7:&nbsp; Live help: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo13;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Type
&quot;active link below&quot; (no quotes) in the search field in the help view,
and search.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Choose
a document titled &quot;Active help&quot; from the search results.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
on the &quot;Click here for a Message&quot; link at the bottom of the document.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Ensure
that a &quot;Hello World&quot; is being displayed in a dialog on top of the
workbench.</p>

<h4>A8:&nbsp; <span class=SpellE>Appserver</span> preferences: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo14;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Launch
&quot;Window&quot;-&gt;&quot;Preferences&quot; (&quot;Eclipse&quot;-&gt;&quot;Preferences&quot; on Mac).&nbsp; Preferences dialog will
open.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Choose
&quot;Help/Help Server&quot; on the left.&nbsp; Enter a port number (for
example 2003), in the second field.&nbsp; Click O.K.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Restart
workbench. Launch help from the menu.&nbsp; Ensure browser opens and displays
help content.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Go
back to Help Server preferences, click &quot;Restore defaults&quot; button,
click &quot;OK&quot;, restart workbench.</p>

<h4>A9:&nbsp; Workbench Capabilities in Help </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo15;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Launch
&quot;Window&quot;-&gt;&quot;Preferences&quot; (&quot;Eclipse&quot;-&gt;&quot;Preferences&quot; on Mac).&nbsp; Open
&quot;General&quot;-&gt;&quot;Capabilities&quot; preference page.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Select
all capabilities and deselect &quot;Development&quot;.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Launch
<span class=GramE>help ,</span> by selecting Help-&gt;Help Contents from the
menu.&nbsp; Verify only two workbench books appear.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Select
&quot;Show All Topics&quot; button in the navigation toolbar.&nbsp; Confirm.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Verify
&quot;Show All Topics&quot; toolbar button appears pressed, and all books
(including PDE Guide are displayed).</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Search
for &quot;PDE&quot;.&nbsp; There should be large number of hits</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>7.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Turn
off showing all topics. Verify that PDE Guide disappeared, since it is does not
belong to enabled workbench capabilities.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>8.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Perform
search for &quot;PDE&quot;. Verify search results were redisplayed and there
are no or next to no results.</p>

<h4>A10:&nbsp; Dialog help: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo17'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Open the
preferences dialog</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo17'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Click on
the help button (?) at the lower left part of the dialog</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo17'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Confirm
the help tray opens and is usable. Try All Topics, search, bookmarks.</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo17'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Close the
tray.</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo17'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Verify
that clicking the help button (?) behaves the same way as pressing F1.</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo17'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Try with a
dialog that is not resizable. It should show the yellow sticky.</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo17'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>7.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Try with a
resizable dialog that is short. The dialog should grow a bit to accommodate the
tray, <span class=GramE>then</span> go back to original size when closed.</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo17'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>8.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Open the
help tray, <span class=GramE>then</span> close the dialog without explicitly
closing the tray.</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo17'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>9.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Confirm
the dialog properly remembers its size (if applicable to that dialog) and does
not include the tray as part of its size. </p>

<h4>A11:&nbsp; Dynamic content: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo36'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Find some
XHTML docs in the help system (you&#8217;ll have to import plugin in workspace
and look for the .<span class=SpellE>xhtml</span> file extension)</p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>2.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Open these docs in the help window and help
view; make sure they appear correctly.</p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>3.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Open the markup and find the parts that are
filtered (e.g. there might be a windows only section)</p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Confirm the parts are filtered from the
non-applicable platforms. E.g. if it&#8217;s windows only, should only be
visible on windows</p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>5.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Search for a word in the XHTML doc. It should
show up as a potential hit.</p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>6.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Change preferences (Help preferences page) to
show actual hits.</p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>7.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Repeat the same search. It should only find the
result if the word is visible in the doc. E.g. on windows it should find it, on
<span class=SpellE>linux</span> it shouldn&#8217;t.</p>

<h4>A12:&nbsp; Keyword Index: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo37'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Download
and extract the test files zip from <a
href="http://www.eclipse.org/eclipse/platform-ua/testing/test_files.zip">http://www.eclipse.org/eclipse/platform-ua/testing/test_files.zip</a></p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>2.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Extract the /help/<span class=SpellE>org.eclipse.help.index.test.zip</span>
and place the test plugin in your plugins dir; restart workbench </p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>3.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Open Help -&gt; Help Contents</p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Verify that there&#8217;s a new index tab at the
bottom left.</p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>5.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Open it, verify the proper functioning of the
index view; make sure it&#8217;s usable, easy to understand</p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>6.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Type some keywords, open the docs, etc.</p>

<p class=MsoListNumber2><![if !supportLists]><span style='mso-fareast-font-family:
"Times New Roman"'><span style='mso-list:Ignore'>7.<span style='font:7.0pt "Times New Roman"'>
</span></span></span><![endif]>Do the same in the help view.</p>

<h4>A13:&nbsp; Command links: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo18'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Browse the
platform user docs and look for links that perform actions. For example,
opening a preference page, etc.</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo18'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Click on
the links in both the help window and help view</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo18'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Confirm:
The actions are performed successfully</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo18'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>Confirm:
The command links have a special appearance that distinguish them from other
links</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo18'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
style='font:7.0pt "Times New Roman"'> </span></span></span><![endif]>When
clicking on a link to open a dialog from help window, dialog is visible</p>

<h3>Scenario B: Navigation and browsing</h3>

<p>NOTE this scenario is part of the UA test cheatsheet.</p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo19;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>The
main things to look for here are: </p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>moving
around the navigation views (Contents, Search Results, Links, Bookmarks)</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>opening
a book, expanding/collapsing/selecting topic nodes</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>navigating
links inside the help pages</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>using
toolbar actions for displaying the main table of contents, for hiding or
maximizing the navigation frame, for topic/navigation synchronization, printing</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]><span
class=GramE>performing</span> simple searching.</p>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal>Note: this test is to be done on browser adapters that are
based on Internet Explorer or <span class=SpellE>Mozilla</span>. For other
browser, refer to the &quot;basic&quot; test.</p>

<h4>B1: Basic topic navigation: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo20;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Launch
help from the workbench menu: Help-&gt;Help Contents. This should open the help
view to the main bookshelf that lists the available books.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>In
the Contents page select the Workbench User Guide book. This should expand that
book and show it contents. All the other books must still be available in the
navigation frame (i.e. only the select book expands).</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>In
the table of contents tree navigate to Concepts -&gt;Workbench. Selecting the
&quot;Workbench&quot; topic should show some content in the main help area.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
on the &quot;Features&quot; link in the displayed document. This should load a
new document.</p>

<h4>B2: Document toolbar actions: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo21;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Identify
the 6 buttons on the content toolbar (the toolbar is located above the page
displaying help pages): Go Back, Go Forward, Show in table of contents,
Bookmark document, Print Page, and Maximize.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
the Back button in the content toolbar. This should reload the previous
document (Workbench).</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
the Forward button in the content toolbar. This should reload the document
(&quot;Features&quot;).</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
maximize icon on the toolbar of the main content frame. This should maximize
that particular frame, and &quot;Restore&quot; icon should be shown in place of
&quot;Maximize&quot;. This time double click on the toolbar, it should restore
the original layout. The behavior should be similar to that of the eclipse
views.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
on the &quot;Synchronize Navigation&quot; button on the toolbar. This should
highlight the &quot;Features&quot; topic in the navigation tree.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Print
the topic by clicking on the &quot;Print Page&quot; button on the toolbar. This
should launch the system print dialog and if you click OK it should print the
help page</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>7.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Bookmark
the current page, by pressing the &quot;Bookmark document&quot; button on the
toolbar.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>8.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Turn
to the Bookmarks tabs and verify it is added there.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>9.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Turn
to the Contents tab and select another topic</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>10.<span
style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]>Turn
to the Bookmarks tab and click on the bookmarked topic (Features). This should
load that topic in the main content area.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>11.<span
style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]>Remove
bookmark: Select the bookmark topic, right click and select Remove, or choose
&quot;Delete bookmark&quot; from the bookmark view toolbar.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>12.<span
style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]>Add
more bookmarks, delete them all using &quot;Remove all bookmarks&quot; button
or action on the pop-up menu.</p>

<h4>B3: Searching documentation, basic scenario: </h4>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo22;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>In
the Search entry field enter the word &quot;participation&quot; without the
double quotes. The navigation frame should turn to the Search Results view, and
if this was the first time you search the docs, you should see the indexing
progress monitor in that page. When indexing is finished (or right away if
other searches were performed before) you should get the results. In my case, I
got 14 hits, starting with &quot;Synchronize View Integration&quot;.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Select
a search result: &quot;Workspace save participation&quot;. You should see the
&quot;participation&quot; string highlighted, as well as &quot;<span
class=SpellE>particip</span>&quot;. This is because the search engine uses word
stemming on English, so the highlighting respects the same stemming algorithm.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
on each results. You should see the toolbar title changing to show the book containing
the document.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Let's
narrow the results by book: click on the &quot;Scope&quot; link in the search
bar. This should launch the Select Scope Search dialog that let's use define
search list. Click on &quot;New&quot; to launch the dialog for defining a new
search list. Enter the name &quot;workbench&quot; and select the
&quot;Workbench User Guide&quot;, click OK to close the dialog. The name
&quot;workbench&quot; should now be visible in the list in the Select Scope
Search dialog. Select it, and click OK (or double click instead).</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>This
should close the dialog and the Search Scope should now display the name
&quot;workbench&quot;. Note: Sometimes the search bar is not updated right
away, so you may have to wait a bit. Search again for the same word,
&quot;participation&quot;. You should see fewer results (I see 2 hits only).</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Select
the &quot;Crash recovery&quot; hit, and click on &quot;Synchronize
Navigation&quot; button on the navigation or content toolbar. This should
switch the navigation view to the Contents view, and expand the Workbench User
Guide down to the &quot;Crash recovery&quot; topic.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>7.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
the &quot;Search Results&quot; tab at the bottom of the navigation tree. This
should redisplay the search result you've seen in step 5.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>8.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Click
on the &quot;Contents&quot; tab at the bottom of the navigation tree. This
should redisplay the navigation tree as you left it after step 6.</p>

<h3>Scenario C: Search</h3>

<p>NOTE this scenario is part of the UA test cheatsheet.</p>

<p class=MsoNormal><span class=GramE>This part test support for advanced
search.</span>&nbsp; Perform search either from &quot;Help&quot; page on
Eclipse &quot;Search&quot; dialog opened by
&quot;Search&quot;-&gt;&quot;Search...&quot; and turning to <span class=GramE>Help</span>
page or from the browser opened by &quot;Help&quot;-&quot;Help Contents&quot;.</p>

<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>

<p class=MsoListNumber2 style='mso-list:l0 level1 lfo23;tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Search
for 'project close' (no quotes).&nbsp; Documents should be found containing
both words.&nbsp; Selecting document should show its contents with occurrences
of both words highlighted.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Search
for 'project AND close' (no quotes).&nbsp; The results should be same as for the
previous query</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Search
for 'project OR close' (no quotes).&nbsp; The list of hits should be much
longer, with some documents at the top containing both words, and documents
down the list containing only one of them.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Search
for 'project close not navigator' (no quotes).&nbsp; The list of hits should be
smaller than in step 1.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Exact
search: </p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Search
for ' &quot;close project&quot; ' (in double quotes).&nbsp; The search results
list should be shorter than in step 1.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>7.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>The
documents should contain consecutive words close and project (possibly
separated by <span class=GramE>a punctuation</span>).</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>8.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Search
scope </p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>9.<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Search
for 'close project' (no quotes).&nbsp; The search results list will show hits.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>10.<span
style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]>Select
a document.&nbsp; Note the book the topic belongs to.&nbsp; The book name is
displayed on the toolbar in the browser, directly above the document.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>11.<span
style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]>Click
&quot;Search scope:<span class=GramE>&quot;.</span>&nbsp; The scope selection
window will open.&nbsp; Click &quot;New&quot;, Select some books or sections,
but leave the book that was noted in step 2 unchecked.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>12.<span
style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]>Type
a name for your new scope.&nbsp; Close dialog <span class=GramE>windows,</span>
ensure that the scope name appears on the search tool bar.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>13.<span
style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]>Click
&quot;Go&quot;.&nbsp; Verify that the document selected in step 3 does not
appear in the list of search results.</p>

<p class=MsoListNumber2 style='tab-stops:.5in'><![if !supportLists]><span
style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>14.<span
style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]>Click
the Search Scope again and remove the scope you just defined. Click OK to close
the dialog. The search bar should now have &quot;All topics&quot; in the Search
Scope.</p>

</div>

</body>

</html>

Back to the top