-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbug_summary.xml
10248 lines (10248 loc) · 338 KB
/
bug_summary.xml
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
<root>
<BugReport ID="1">
<Title>
"(495584) Firefox - search suggestions passes wrong previous result to form history"
</Title>
<Annotation>
<AbstractiveSummary>
<Sentence Links="1.1">
A problem was noticed with the WIP patch from bug 469443 applied.
</Sentence>
<Sentence Links="1.2">
When typing in the search box, sometimes search-suggestion entries would be displayed above the divider.
</Sentence>
<Sentence Links="1.3,1.4">
The problem is nsSearchSuggestions.js is passing the SuggestAutoCompleteResult result, instead of it being the previous form history search result.
</Sentence>
<Sentence Links="1.6">
The bug wasn't visible before 469443, because nsFormFillController::StartSearch tries QI to provid result to nsIAutoCompleteSimpleResult.
</Sentence>
<Sentence Links="1.7">
The search-suggestion result is nsIAutoCompletResult now, so QI fails and Satchel is doing a new search everytime.
</Sentence>
<Sentence Links="2.1,2.2">
A fix was proposed, but wasn't quite right.</Sentence>
<Sentence Links="2.4">
Satchel should be smarter about throwing away a previous result when the previous result's search string doesn't have a common prefix.
</Sentence>
<Sentence Links="3.1,3.3">
Another fix was proposed later, where the service's form history result copy is discarded when startSearch() is called with a null previous result.
</Sentence>
<Sentence Links="3.2">
There was a ._formHistoryResult in the SuggestAutoCompleteResult wrapper and also a ._formHistoryResult in SuggestAutoCompleteIt.
</Sentence>
<Sentence Links="4.2">
It was suggested to rename one of them to _fhResult.
</Sentence>
<Sentence Links="5.5">
The one in the wrapper was renamed to _formHistResult.
</Sentence>
<Sentence Links="6.1">
This bug was pushed http://hg.mozilla.org/mozilla-central/rev/097598383614.
</Sentence>
</AbstractiveSummary>
<ExtractiveSummary>
<Sentence ID="1.1 "/>
<Sentence ID="1.2 "/>
<Sentence ID="1.3 "/>
<Sentence ID="1.4 "/>
<Sentence ID="1.6 "/>
<Sentence ID="1.7 "/>
<Sentence ID="2.1 "/>
<Sentence ID="2.2 "/>
<Sentence ID="2.4 "/>
<Sentence ID="3.1 "/>
<Sentence ID="3.3 "/>
<Sentence ID="3.2 "/>
<Sentence ID="4.2 "/>
<Sentence ID="5.5 "/>
<Sentence ID="6.1 "/>
</ExtractiveSummary>
<Labels>
<Meta ID="1.1"/>
<Problem ID="1.2"/>
<Problem ID="1.3"/>
<Problem ID="1.4"/>
<Problem ID="1.5"/>
<Meta ID="1.6"/>
<Problem ID="1.7"/>
<Fix ID="2.1"/>
<Fix ID="2.2"/>
<Problem ID="2.3"/>
<Suggestion ID="2.4"/>
<Fix ID="3.1"/>
<Problem ID="3.2"/>
<Fix ID="3.3"/>
<Fix ID="3.4"/>
<Suggestion ID="4.2"/>
<Agreement ID="5.4"/>
<Fix ID="5.5"/>
<Disagreement ID="5.6"/>
<Meta ID="6.1"/>
</Labels>
</Annotation>
<Annotation>
<AbstractiveSummary>
<Sentence Links="1.2">
When typing in the search box, sometimes suggestion entries are displayed above the divider, where the previous matching searches are displayed.
</Sentence>
<Sentence Links="1.3,1.4,1.5">
The problem is that nsSearchSuggestions.js is passing the SuggestAutoCompleteResult instead of the previous history search result, so entries from suggestions leak into history result.
</Sentence>
<Sentence Links="2.1">
A patch was added to fix this problem.</Sentence>
<Sentence Links="3.1">
Further changes added to fix a problem with the patch.
</Sentence>
</AbstractiveSummary>
<ExtractiveSummary>
<Sentence ID="1.2 "/>
<Sentence ID="1.3 "/>
<Sentence ID="1.4 "/>
<Sentence ID="1.5 "/>
<Sentence ID="2.1 "/>
<Sentence ID="3.1 "/>
<Sentence ID="1.7 "/>
<Sentence ID="1.8 "/>
<Sentence ID="1.9 "/>
<Sentence ID="1.10 "/>
<Sentence ID="1.11 "/>
<Sentence ID="1.12 "/>
<Sentence ID="1.13 "/>
<Sentence ID="2.4 "/>
<Sentence ID="2.2 "/>
<Sentence ID="3.2 "/>
<Sentence ID="3.3 "/>
<Sentence ID="3.4 "/>
<Sentence ID="6.1 "/>
</ExtractiveSummary>
<Labels>
<Problem ID="1.1"/>
<Problem ID="1.2"/>
<Suggestion ID="1.3"/>
<Suggestion ID="1.4"/>
<Suggestion ID="1.5"/>
<Suggestion ID="1.6"/>
<Suggestion ID="1.7"/>
<Problem ID="1.8"/>
<Problem ID="1.9"/>
<Problem ID="1.10"/>
<Problem ID="1.11"/>
<Problem ID="1.12"/>
<Problem ID="1.13"/>
<Fix ID="2.1"/>
<Problem ID="2.2"/>
<Problem ID="2.3"/>
<Suggestion ID="2.4"/>
<Suggestion ID="2.5"/>
<Fix ID="3.1"/>
<Fix ID="3.2"/>
<Fix ID="3.3"/>
<Fix ID="3.4"/>
<Meta ID="4.1"/>
<Meta ID="5.1"/>
<Suggestion ID="4.2"/>
<Agreement ID="5.4"/>
<Fix ID="5.5"/>
<Fix ID="5.6"/>
<Fix ID="6.1"/>
</Labels>
</Annotation>
<Annotation>
<AbstractiveSummary>
<Sentence Links="1.2">
A problem in search box functionality is noted, which puts search suggestion entries above the divider separating them from previous matching searches.
</Sentence>
<Sentence Links="1.3,1.4">
This is happening because the incorrect data structure is being passed to the form history, which contains both form history and search suggest entries.
</Sentence>
<Sentence Links="1.5">
As the results change as the user types in the search box, this allows suggestions to leak into the form history, resulting in the separator appearing to be in the wrong place.
</Sentence>
<Sentence Links="2.1,2.2,2.3">
An incomplete patch is offered, but the system needs to be smarter about throwing away previous results.
</Sentence>
<Sentence Links="3.2,3.3">
It turns out there are .formHistoryResult fields in two data structures, one of which needs to be discarded.
</Sentence>
<Sentence Links="4.2,5.5">
It is suggested and accepted that one should be renamed for clarity.
</Sentence>
</AbstractiveSummary>
<ExtractiveSummary>
<Sentence ID="1.2 "/>
<Sentence ID="1.3 "/>
<Sentence ID="1.4 "/>
<Sentence ID="1.5 "/>
<Sentence ID="2.1 "/>
<Sentence ID="2.2 "/>
<Sentence ID="3.2 "/>
<Sentence ID="3.3 "/>
<Sentence ID="2.4 "/>
<Sentence ID="4.2 "/>
<Sentence ID="5.5 "/>
</ExtractiveSummary>
<Labels>
<Problem ID="1.1"/>
<Problem ID="1.2"/>
<Problem ID="1.3"/>
<Problem ID="1.4"/>
<Problem ID="1.5"/>
<Problem ID="1.6"/>
<Problem ID="1.7"/>
<Problem ID="1.8"/>
<Problem ID="1.9"/>
<Problem ID="1.10"/>
<Problem ID="1.11"/>
<Problem ID="1.12"/>
<Problem ID="1.13"/>
<Fix ID="2.1"/>
<Fix ID="2.2"/>
<Fix ID="2.3"/>
<Fix ID="2.4"/>
<Fix ID="2.5"/>
<Fix ID="3.1"/>
<Fix ID="3.2"/>
<Fix ID="3.3"/>
<Fix ID="3.4"/>
<Suggestion ID="4.2"/>
<Agreement ID="5.4"/>
<Fix ID="5.5"/>
<Fix ID="5.6"/>
<Meta ID="6.1"/>
<Fix ID="6.1"/>
</Labels>
</Annotation>
</BugReport>
<BugReport ID="2">
<Title>
"(449596) Firefox - remove the browser.sessionstore.enabled pref "
</Title>
<Annotation>
<AbstractiveSummary>
<Sentence Links="1.1,1.2,1.3">
A pref in Firefox provided for Session Store functionality causes problems when users deactivate Session Restore ability.
</Sentence>
<Sentence Links="1.4,1.5">
In order to make removing this pref up, extension authors are suggested to take care of it in their own way.
</Sentence>
<Sentence Links="5.2,5.3">
Some privacy issues are considered when people do not like their session history to be stored.
</Sentence>
<Sentence Links="6.3,7.6">
However, these issues could be resolved by previously provided prefs.
</Sentence>
<Sentence Links="11.1,11.2,12.1,13.3,14.4,14.5,14.6">
Some interferences with other packages is spotted then, but using already provided options or changing the documents will resolve it too.
</Sentence>
</AbstractiveSummary>
<ExtractiveSummary>
<Sentence ID="1.1 "/>
<Sentence ID="1.2 "/>
<Sentence ID="1.3 "/>
<Sentence ID="1.4 "/>
<Sentence ID="1.5 "/>
<Sentence ID="5.2 "/>
<Sentence ID="5.3 "/>
<Sentence ID="6.3 "/>
<Sentence ID="7.6 "/>
<Sentence ID="11.1 "/>
<Sentence ID="11.2 "/>
<Sentence ID="12.1 "/>
<Sentence ID="13.3 "/>
<Sentence ID="14.4 "/>
<Sentence ID="14.5 "/>
<Sentence ID="14.6 "/>
<Sentence ID="6.5 "/>
<Sentence ID="6.6 "/>
<Sentence ID="7.5 "/>
<Sentence ID="11.4 "/>
<Sentence ID="13.2 "/>
</ExtractiveSummary>
<Labels>
<Problem ID="1.1"/>
<Problem ID="1.2"/>
<Problem ID="1.3"/>
<Suggestion ID="1.4"/>
<Suggestion ID="1.5"/>
<Suggestion ID="1.6"/>
<Meta ID="2.1"/>
<Meta ID="2.2"/>
<Meta ID="3.1"/>
<Meta ID="4.1"/>
<Meta ID="4.2"/>
<Meta ID="5.1"/>
<Problem ID="5.2"/>
<Problem ID="5.3"/>
<Meta ID="6.1"/>
<Fix ID="6.3"/>
<Disagreement ID="6.5"/>
<Suggestion ID="6.6"/>
<Meta ID="7.1"/>
<Agreement ID="7.3"/>
<Problem ID="7.3"/>
<Agreement ID="7.5"/>
<Fix ID="7.6"/>
<Meta ID="8.1"/>
<Suggestion ID="8.8"/>
<Suggestion ID="8.9"/>
<Meta ID="9.1"/>
<Suggestion ID="9.4"/>
<Disagreement ID="9.3"/>
<Fix ID="10.1"/>
<Problem ID="11.1"/>
<Suggestion ID="11.2"/>
<Suggestion ID="11.3"/>
<Suggestion ID="11.4"/>
<Suggestion ID="11.5"/>
<Suggestion ID="12.1"/>
<Agreement ID="13.1"/>
<Agreement ID="13.2"/>
<Problem ID="13.3"/>
<Problem ID="13.4"/>
<Meta ID="14.1"/>
<Suggestion ID="14.3"/>
<Suggestion ID="14.4"/>
<Suggestion ID="14.5"/>
<Suggestion ID="14.6"/>
<Suggestion ID="14.7"/>
</Labels>
</Annotation>
<Annotation>
<AbstractiveSummary>
<Sentence Links="1.1,1.3">
It is suggested to remove the preference that removes the session storing feature, because disabling it breaks some features.
</Sentence>
<Sentence Links="1.1,1.2">
It was originally intended for extensions to disable when they do their own session restore, but can leave users with it still disabled after the extension is disabled.
</Sentence>
<Sentence Links="1.4">
Instead the extension writers should extend the API to do session restoration themselves.
</Sentence>
<Sentence Links="1.6,6.3">
Those users concerned with the privacy implications can disable other settings to effectively to the same thing.
</Sentence>
</AbstractiveSummary>
<ExtractiveSummary>
<Sentence ID="1.1 "/>
<Sentence ID="1.3 "/>
<Sentence ID="1.2 "/>
<Sentence ID="1.4 "/>
<Sentence ID="1.6 "/>
<Sentence ID="6.3 "/>
<Sentence ID="1.5 "/>
<Sentence ID="5.2 "/>
<Sentence ID="5.3 "/>
<Sentence ID="6.5 "/>
<Sentence ID="6.6 "/>
<Sentence ID="7.6 "/>
<Sentence ID="11.1 "/>
<Sentence ID="11.2 "/>
<Sentence ID="11.3 "/>
<Sentence ID="11.4 "/>
<Sentence ID="11.5 "/>
</ExtractiveSummary>
<Labels>
<Problem ID="1.1"/>
<Problem ID="1.2"/>
<Problem ID="1.3"/>
<Suggestion ID="1.4"/>
<Suggestion ID="1.5"/>
<Suggestion ID="1.6"/>
<Fix ID="2.2"/>
<Meta ID="2.1"/>
<Meta ID="3.1"/>
<Fix ID="4.2"/>
<Meta ID="4.1"/>
<Meta ID="5.1"/>
<Disagreement ID="5.2"/>
<Disagreement ID="5.3"/>
<Meta ID="6.2"/>
<Meta ID="6.1"/>
<Disagreement ID="6.5"/>
<Suggestion ID="6.3"/>
<Meta ID="6.4"/>
<Suggestion ID="6.6"/>
<Meta ID="7.2"/>
<Meta ID="7.1"/>
<Agreement ID="7.3"/>
<Meta ID="7.4"/>
<Agreement ID="7.5"/>
<Agreement ID="7.6"/>
<Meta ID="8.1"/>
<Meta ID="9.3"/>
<Meta ID="9.2"/>
<Meta ID="8.9"/>
<Meta ID="8.8"/>
<Meta ID="8.7"/>
<Meta ID="8.5"/>
<Meta ID="8.6"/>
<Meta ID="8.4"/>
<Meta ID="8.3"/>
<Meta ID="8.2"/>
<Suggestion ID="9.4"/>
<Meta ID="9.1"/>
<Meta ID="10.1"/>
<Suggestion ID="11.5"/>
<Suggestion ID="11.4"/>
<Suggestion ID="11.3"/>
<Suggestion ID="11.2"/>
<Meta ID="11.1"/>
<Suggestion ID="12.1"/>
<Meta ID="12.1"/>
<Agreement ID="13.1"/>
<Agreement ID="13.2"/>
<Suggestion ID="13.4"/>
<Suggestion ID="13.3"/>
<Fix ID="14.4"/>
<Fix ID="14.5"/>
<Fix ID="14.6"/>
<Problem ID="14.7"/>
<Fix ID="14.3"/>
<Meta ID="14.2"/>
<Meta ID="14.1"/>
</Labels>
</Annotation>
<Annotation>
<AbstractiveSummary>
<Sentence Links="1.1,1.2,1.3">
It is suggested that the browser.sessionstore.enabled preference be removed because it isn't working out as expected.
</Sentence>
<Sentence Links="1.4">
An alternative of getting extension authors to override other settings to get the same result is proposed.
</Sentence>
<Sentence Links="2.2,4.2">
A patch is provided.
</Sentence>
<Sentence Links="5.2,5.3">
Possible privacy concerns are raised about how the patch works.
</Sentence>
<Sentence Links="6.3,6.6">
Alternative solutions to the privacy issues are suggested.
</Sentence>
<Sentence Links="8.8,9.3">
A minor change to the patch is given, but this is only because of another bug.
</Sentence>
<Sentence Links="11.1,11.2">
The impacts of this change on another feature, Tab Mix Plus, is listed.
</Sentence>
<Sentence Links="13.1,13.3,13.4">
The owner of this feature doesn't see a major problem, but requests a new preference be added to help with the change.
</Sentence>
<Sentence Links="14.3">
A list of possible work-arounds is given.
</Sentence>
<Sentence Links="12.1">
A request for proper documentation of the change is made.
</Sentence>
</AbstractiveSummary>
<ExtractiveSummary>
<Sentence ID="1.1 "/>
<Sentence ID="1.2 "/>
<Sentence ID="1.3 "/>
<Sentence ID="1.4 "/>
<Sentence ID="2.2 "/>
<Sentence ID="4.2 "/>
<Sentence ID="5.2 "/>
<Sentence ID="5.3 "/>
<Sentence ID="6.3 "/>
<Sentence ID="6.6 "/>
<Sentence ID="8.8 "/>
<Sentence ID="9.3 "/>
<Sentence ID="11.1 "/>
<Sentence ID="11.2 "/>
<Sentence ID="13.1 "/>
<Sentence ID="13.3 "/>
<Sentence ID="13.4 "/>
<Sentence ID="14.3 "/>
<Sentence ID="12.1 "/>
<Sentence ID="7.5 "/>
<Sentence ID="7.6 "/>
</ExtractiveSummary>
<Labels>
<Problem ID="1.1"/>
<Problem ID="1.2"/>
<Problem ID="1.3"/>
<Suggestion ID="1.4"/>
<Suggestion ID="1.5"/>
<Suggestion ID="1.6"/>
<Fix ID="2.2"/>
<Fix ID="4.2"/>
<Fix ID="5.2"/>
<Disagreement ID="5.2"/>
<Fix ID="5.3"/>
<Disagreement ID="5.3"/>
<Fix ID="6.3"/>
<Fix ID="6.5"/>
<Suggestion ID="6.6"/>
<Disagreement ID="6.5"/>
<Fix ID="7.3"/>
<Fix ID="7.5"/>
<Agreement ID="7.5"/>
<Fix ID="8.8"/>
<Meta ID="9.3"/>
<Meta ID="9.4"/>
<Fix ID="9.3"/>
<Fix ID="11.1"/>
<Fix ID="11.2"/>
<Fix ID="11.3"/>
<Fix ID="11.4"/>
<Fix ID="11.5"/>
<Suggestion ID="12.1"/>
<Fix ID="13.2"/>
<Fix ID="13.3"/>
<Fix ID="13.4"/>
<Fix ID="14.3"/>
<Fix ID="14.4"/>
<Fix ID="14.5"/>
<Fix ID="14.6"/>
<Fix ID="14.7"/>
<Fix ID="7.6"/>
<Agreement ID="7.6"/>
<Meta ID="10.1"/>
</Labels>
</Annotation>
</BugReport>
<BugReport ID="3">
<Title>
"(491925) Firefox - Disable multitouch \"rotate\" gesture for cycling tabs"
</Title>
<Annotation>
<AbstractiveSummary>
<Sentence Links="1.1,1.2,1.3,1.6,4.1">
The multitouch \"rotate\" gesture for changing the active tab can sometimes be triggered accidentally, though not everybody seems to have this problem.
</Sentence>
<Sentence Links="23.1,23.2,23.3">
This gesture was removed from Windows and OS X builds.
</Sentence>
</AbstractiveSummary>
<ExtractiveSummary>
<Sentence ID="1.1 "/>
<Sentence ID="1.2 "/>
<Sentence ID="1.3 "/>
<Sentence ID="1.6 "/>
<Sentence ID="4.1 "/>
<Sentence ID="23.1 "/>
<Sentence ID="23.2 "/>
<Sentence ID="23.3 "/>
<Sentence ID="5.1 "/>
<Sentence ID="5.2 "/>
<Sentence ID="5.3 "/>
<Sentence ID="5.4 "/>
<Sentence ID="7.3 "/>
<Sentence ID="11.1 "/>
<Sentence ID="12.3 "/>
<Sentence ID="12.2 "/>
<Sentence ID="14.6 "/>
<Sentence ID="14.7 "/>
<Sentence ID="18.1 "/>
</ExtractiveSummary>
<Labels>
<Problem ID="1.1"/>
<Problem ID="1.2"/>
<Problem ID="1.3"/>
<Problem ID="1.4"/>
<Problem ID="1.5"/>
<Suggestion ID="1.6"/>
<Suggestion ID="1.7"/>
<Problem ID="2.1"/>
<Problem ID="2.2"/>
<Problem ID="3.1"/>
<Problem ID="3.2"/>
<Problem ID="3.3"/>
<Suggestion ID="3.3"/>
<Suggestion ID="4.2"/>
<Disagreement ID="4.1"/>
<Agreement ID="5.1"/>
<Suggestion ID="5.2"/>
<Suggestion ID="5.3"/>
<Suggestion ID="5.4"/>
<Problem ID="5.5"/>
<Problem ID="5.7"/>
<Problem ID="5.6"/>
<Suggestion ID="5.8"/>
<Disagreement ID="6.1"/>
<Disagreement ID="6.2"/>
<Disagreement ID="6.4"/>
<Disagreement ID="6.3"/>
<Agreement ID="7.1"/>
<Agreement ID="7.2"/>
<Agreement ID="7.3"/>
<Suggestion ID="8.1"/>
<Suggestion ID="8.2"/>
<Fix ID="9.1"/>
<Fix ID="9.2"/>
<Fix ID="9.3"/>
<Fix ID="10.1"/>
<Fix ID="10.2"/>
<Fix ID="11.1"/>
<Disagreement ID="12.3"/>
<Agreement ID="12.3"/>
<Suggestion ID="12.4"/>
<Suggestion ID="12.5"/>
<Suggestion ID="12.6"/>
<Suggestion ID="12.7"/>
<Suggestion ID="12.8"/>
<Problem ID="13.1"/>
<Problem ID="13.2"/>
<Problem ID="14.3"/>
<Problem ID="14.4"/>
<Problem ID="14.5"/>
<Suggestion ID="14.6"/>
<Suggestion ID="14.7"/>
<Suggestion ID="15.5"/>
<Suggestion ID="15.6"/>
<Suggestion ID="15.7"/>
<Meta ID="16.1"/>
<Meta ID="16.2"/>
<Meta ID="16.3"/>
<Suggestion ID="17.3"/>
<Suggestion ID="17.4"/>
<Suggestion ID="17.5"/>
<Problem ID="17.9"/>
<Problem ID="17.8"/>
<Problem ID="17.7"/>
<Problem ID="17.6"/>
<Suggestion ID="18.1"/>
<Fix ID="19.1"/>
<Fix ID="19.2"/>
<Fix ID="19.3"/>
<Meta ID="20.1"/>
<Meta ID="20.2"/>
<Meta ID="21.1"/>
<Suggestion ID="21.2"/>
<Meta ID="22.1"/>
<Fix ID="23.1"/>
<Fix ID="23.2"/>
<Fix ID="23.3"/>
<Fix ID="24.1"/>
<Fix ID="24.2"/>
<Fix ID="24.4"/>
<Fix ID="24.3"/>
<Fix ID="24.5"/>
<Fix ID="25.1"/>
</Labels>
</Annotation>
<Annotation>
<AbstractiveSummary>
<Sentence Links="1.1,1.3,1.4">
Rotate gesture on multitouch trackpads causes cycling tabs in Firefox, but users might accidentally trigger it and get confused.
</Sentence>
<Sentence Links="1.7,2.2">
This gesture could be tweaked not to be triggered accidentally.
</Sentence>
<Sentence Links="3.1,14.5">
Also, pinching gesture causes zooming in/out, but since it is more natural there is no need to remove it.
</Sentence>
<Sentence Links="5.4,6.1,14.7">
Sometimes zooming in/out are mistaken for rotating or vice versa, but removing rotate gesture will resolve it.
</Sentence>
<Sentence Links="11.1,12.3,12.4,18.1">
Multitouch trackpads might not be an issue for Win7 users, but it is taken out from both versions anyway.
</Sentence>
</AbstractiveSummary>
<ExtractiveSummary>
<Sentence ID="1.1 "/>
<Sentence ID="1.3 "/>
<Sentence ID="1.4 "/>
<Sentence ID="1.7 "/>
<Sentence ID="2.2 "/>
<Sentence ID="3.1 "/>
<Sentence ID="14.5 "/>
<Sentence ID="5.4 "/>
<Sentence ID="6.1 "/>
<Sentence ID="14.7 "/>
<Sentence ID="11.1 "/>
<Sentence ID="12.3 "/>
<Sentence ID="12.4 "/>
<Sentence ID="18.1 "/>
<Sentence ID="4.1 "/>
<Sentence ID="5.1 "/>
<Sentence ID="5.8 "/>
<Sentence ID="7.3 "/>
<Sentence ID="9.1 "/>
<Sentence ID="13.1 "/>
<Sentence ID="21.2 "/>
<Sentence ID="1.5 "/>
<Sentence ID="1.6 "/>
</ExtractiveSummary>
<Labels>
<Problem ID="1.1"/>
<Problem ID="1.2"/>
<Problem ID="1.3"/>
<Problem ID="1.4"/>
<Problem ID="1.5"/>
<Suggestion ID="1.6"/>
<Suggestion ID="1.7"/>
<Suggestion ID="2.1"/>
<Suggestion ID="2.2"/>
<Disagreement ID="3.1"/>
<Disagreement ID="3.2"/>
<Suggestion ID="3.3"/>
<Disagreement ID="4.1"/>
<Suggestion ID="4.2"/>
<Agreement ID="5.1"/>
<Suggestion ID="5.2"/>
<Suggestion ID="5.3"/>
<Problem ID="5.4"/>
<Suggestion ID="5.5"/>
<Suggestion ID="5.7"/>
<Suggestion ID="5.8"/>
<Disagreement ID="6.1"/>
<Disagreement ID="6.2"/>
<Suggestion ID="6.3"/>
<Suggestion ID="6.4"/>
<Agreement ID="7.1"/>
<Agreement ID="7.2"/>
<Agreement ID="7.3"/>
<Suggestion ID="8.1"/>
<Meta ID="8.2"/>
<Suggestion ID="9.1"/>
<Suggestion ID="9.2"/>
<Suggestion ID="9.3"/>
<Suggestion ID="10.1"/>
<Suggestion ID="10.2"/>
<Suggestion ID="11.1"/>
<Meta ID="12.1"/>
<Agreement ID="12.3"/>
<Suggestion ID="12.5"/>
<Suggestion ID="12.6"/>
<Suggestion ID="12.7"/>
<Disagreement ID="12.8"/>
<Suggestion ID="13.2"/>
<Suggestion ID="13.1"/>
<Meta ID="13.1"/>
<Meta ID="14.1"/>
<Agreement ID="14.3"/>
<Agreement ID="14.4"/>
<Suggestion ID="14.6"/>
<Meta ID="14.4"/>
<Suggestion ID="14.7"/>
<Disagreement ID="14.7"/>
<Disagreement ID="14.6"/>
<Meta ID="15.1"/>
<Suggestion ID="15.5"/>
<Disagreement ID="15.5"/>
<Disagreement ID="15.6"/>
<Disagreement ID="15.7"/>
<Meta ID="16.1"/>
<Suggestion ID="16.1"/>
<Disagreement ID="16.1"/>
<Disagreement ID="16.2"/>
<Suggestion ID="16.2"/>
<Suggestion ID="16.3"/>
<Fix ID="17.1"/>
<Meta ID="17.1"/>
<Fix ID="17.3"/>
<Fix ID="17.2"/>
<Suggestion ID="17.4"/>
<Suggestion ID="17.5"/>
<Suggestion ID="17.6"/>
<Suggestion ID="17.7"/>
<Suggestion ID="17.8"/>
<Suggestion ID="17.9"/>
<Suggestion ID="18.1"/>
<Meta ID="18.1"/>
<Fix ID="19.1"/>
<Fix ID="19.2"/>
<Fix ID="19.3"/>
<Meta ID="20.1"/>
<Suggestion ID="21.2"/>
<Suggestion ID="21.1"/>
<Fix ID="22.1"/>
<Fix ID="23.1"/>
<Fix ID="23.2"/>
<Fix ID="23.3"/>
<Suggestion ID="24.1"/>
<Suggestion ID="24.2"/>
<Suggestion ID="24.3"/>
<Suggestion ID="24.4"/>
<Problem ID="24.5"/>
<Suggestion ID="25.1"/>
</Labels>
</Annotation>
<Annotation>
<AbstractiveSummary>
<Sentence Links="1.1">
There is a rotate gesture in Firefox that is often triggered accidentally while scrolling.
</Sentence>
<Sentence Links="1.6,18.1">
It is agreed that the rotate should be removed in Windows and OSX in the next version of Firefox.
</Sentence>
<Sentence Links="13.1,14.3,14.4,14.6,14.7,16.1">
It is suggested that the pinching gesture be removed as well, but it is decided that that should be in a separate thread.
</Sentence>
</AbstractiveSummary>
<ExtractiveSummary>
<Sentence ID="1.1 "/>
<Sentence ID="1.6 "/>
<Sentence ID="18.1 "/>
<Sentence ID="16.1 "/>
<Sentence ID="1.3 "/>
<Sentence ID="1.4 "/>
<Sentence ID="1.5 "/>
<Sentence ID="1.7 "/>
<Sentence ID="7.3 "/>
<Sentence ID="7.1 "/>
<Sentence ID="7.2 "/>
<Sentence ID="17.3 "/>
<Sentence ID="17.4 "/>
<Sentence ID="17.5 "/>
<Sentence ID="17.6 "/>
<Sentence ID="17.7 "/>
<Sentence ID="17.8 "/>
<Sentence ID="17.9 "/>
</ExtractiveSummary>
<Labels>
<Problem ID="1.1"/>
<Problem ID="1.3"/>
<Problem ID="1.4"/>
<Problem ID="1.5"/>
<Suggestion ID="1.6"/>
<Suggestion ID="1.7"/>
<Suggestion ID="2.2"/>
<Fix ID="2.2"/>
<Disagreement ID="4.2"/>
<Disagreement ID="4.1"/>
<Agreement ID="7.1"/>
<Agreement ID="7.2"/>
<Problem ID="7.3"/>
<Problem ID="7.2"/>
<Problem ID="7.1"/>
<Agreement ID="7.3"/>
<Fix ID="9.1"/>
<Fix ID="9.2"/>
<Fix ID="9.3"/>
<Fix ID="10.1"/>
<Suggestion ID="10.2"/>
<Suggestion ID="11.1"/>
<Suggestion ID="17.4"/>
<Suggestion ID="17.3"/>
<Suggestion ID="17.5"/>
<Problem ID="17.6"/>
<Problem ID="17.7"/>
<Problem ID="17.8"/>
<Problem ID="17.9"/>
<Agreement ID="18.1"/>
<Fix ID="18.1"/>
<Agreement ID="19.3"/>
</Labels>
</Annotation>
</BugReport>
<BugReport ID="4">
<Title>
"(250125) Eclipse - createExistentResourceFromHandle forgets to create children resources"
</Title>
<Annotation>
<AbstractiveSummary>
<Sentence Links="1.2,1.3">
The method FolderDescription#createExistentResourceFromHandle(IResource,IProgressMonitor) does not create members that rely on the creation of other members not initially present.
</Sentence>
<Sentence Links="1.14">
Initial suggestion is that createExistentResourceFromHandle should instead check to see if members of a FolderDescription should be created.
</Sentence>
<Sentence Links="3.1,3.2,5.2,5.3">
Note that this is only a problem if code is structured inappropriately, and fixing it would require tracking changes to the file system that are outside the scope of the current class design.
</Sentence>
<Sentence Links="7.8,8.3">
Javadoc was updated to clarify that the existing class does not track these changes, and additional validity tests were added.
</Sentence>
</AbstractiveSummary>
<ExtractiveSummary>
<Sentence ID="1.2 "/>
<Sentence ID="1.3 "/>
<Sentence ID="1.14 "/>
<Sentence ID="3.1 "/>
<Sentence ID="3.2 "/>
<Sentence ID="5.2 "/>
<Sentence ID="5.3 "/>
<Sentence ID="7.8 "/>
<Sentence ID="8.3 "/>
<Sentence ID="1.4 "/>
<Sentence ID="1.5 "/>
<Sentence ID="1.6 "/>
<Sentence ID="1.7 "/>
<Sentence ID="1.8 "/>
<Sentence ID="1.9 "/>
<Sentence ID="1.10 "/>
<Sentence ID="1.11 "/>
<Sentence ID="1.12 "/>
<Sentence ID="1.13 "/>
<Sentence ID="2.1 "/>
<Sentence ID="7.2 "/>
<Sentence ID="7.3 "/>
<Sentence ID="7.4 "/>
<Sentence ID="7.5 "/>
<Sentence ID="7.6 "/>
<Sentence ID="7.7 "/>
</ExtractiveSummary>
<Labels>
<Problem ID="1.2"/>
<Problem ID="1.1"/>
<Problem ID="1.3"/>
<Problem ID="1.4"/>
<Problem ID="1.5"/>
<Problem ID="1.6"/>
<Problem ID="1.7"/>
<Problem ID="1.8"/>
<Problem ID="1.9"/>
<Problem ID="1.10"/>
<Problem ID="1.11"/>
<Problem ID="1.12"/>
<Problem ID="1.13"/>
<Suggestion ID="1.14"/>
<Problem ID="2.1"/>
<Suggestion ID="3.1"/>
<Suggestion ID="3.2"/>
<Agreement ID="4.1"/>
<Agreement ID="4.2"/>
<Fix ID="4.3"/>
<Problem ID="4.4"/>
<Suggestion ID="4.5"/>
<Problem ID="4.6"/>
<Problem ID="5.1"/>
<Fix ID="5.2"/>
<Fix ID="5.3"/>
<Problem ID="6.1"/>
<Fix ID="7.1"/>
<Fix ID="7.2"/>
<Fix ID="7.3"/>
<Fix ID="7.4"/>
<Fix ID="7.5"/>
<Fix ID="7.6"/>
<Fix ID="7.7"/>
<Fix ID="7.9"/>
<Fix ID="7.8"/>
<Fix ID="7.10"/>
<Fix ID="7.11"/>
<Fix ID="8.1"/>
<Fix ID="8.3"/>
<Fix ID="8.2"/>
<Fix ID="8.4"/>
<Fix ID="9.1"/>
<Fix ID="9.2"/>
</Labels>
</Annotation>
<Annotation>
<AbstractiveSummary>
<Sentence Links="1.13,3.2">
An error occurs where two file/folder creation operations that depend on each other are executed.
</Sentence>
<Sentence Links="3.2,4.6">
The file system structure changes, invalidating the second operation, even though it is conceptually a valid operation.
</Sentence>
<Sentence Links="5.3,7.6,7.7">
It was impractical to change this behavior, so the API was changed to check the validity of an operation, and the documentation is updated to clarify.
</Sentence>
</AbstractiveSummary>
<ExtractiveSummary>
<Sentence ID="1.13 "/>
<Sentence ID="3.2 "/>
<Sentence ID="4.6 "/>
<Sentence ID="5.3 "/>
<Sentence ID="7.7 "/>
<Sentence ID="1.1 "/>
<Sentence ID="1.2 "/>
<Sentence ID="1.3 "/>
<Sentence ID="1.7 "/>
<Sentence ID="1.8 "/>
<Sentence ID="1.9 "/>
<Sentence ID="1.11 "/>
<Sentence ID="1.12 "/>
<Sentence ID="1.10 "/>
<Sentence ID="5.2 "/>
<Sentence ID="7.2 "/>
<Sentence ID="7.3 "/>
<Sentence ID="7.4 "/>
<Sentence ID="7.5 "/>
<Sentence ID="7.6 "/>
<Sentence ID="7.8 "/>
<Sentence ID="7.9 "/>
</ExtractiveSummary>
<Labels>
<Problem ID="1.1"/>
<Problem ID="1.2"/>
<Problem ID="1.3"/>
<Problem ID="1.4"/>
<Problem ID="1.5"/>
<Problem ID="1.6"/>
<Problem ID="1.7"/>
<Problem ID="1.8"/>
<Problem ID="1.9"/>
<Problem ID="1.10"/>
<Problem ID="1.11"/>
<Problem ID="1.12"/>
<Problem ID="1.13"/>
<Suggestion ID="1.14"/>
<Agreement ID="2.1"/>
<Problem ID="3.2"/>
<Problem ID="3.1"/>
<Meta ID="4.1"/>
<Agreement ID="4.2"/>
<Problem ID="4.4"/>
<Problem ID="4.3"/>
<Fix ID="4.3"/>
<Suggestion ID="4.5"/>
<Suggestion ID="4.6"/>
<Meta ID="5.1"/>
<Suggestion ID="5.2"/>
<Disagreement ID="5.3"/>
<Meta ID="6.1"/>
<Meta ID="7.1"/>
<Fix ID="7.2"/>
<Fix ID="7.3"/>
<Fix ID="7.5"/>
<Fix ID="7.4"/>
<Fix ID="7.6"/>
<Fix ID="7.7"/>
<Fix ID="7.8"/>
<Fix ID="7.9"/>
<Fix ID="7.10"/>