-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog-pre-2.27.1
20252 lines (15013 loc) · 797 KB
/
ChangeLog-pre-2.27.1
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
2009-06-01 Willie Walker <william.walker@sun.com>
* src/orca/scripts/apps/Thunderbird/speech_generator.py:
src/orca/speech_generator.py:
Move Thunderbird-specific check to Thunderbird area
There was some code in speech_generator.py that was looking
for a window ending in ' - Thunderbird' as a means to prevent
column headers from being spoken. This code was fragile
(and broken since the window can end with 'Mozilla Thunderbird').
This code eliminates that check by putting the logic in the
thunderbird speech generator.
2009-06-01 Willie Walker <william.walker@sun.com>
* src/orca/formatting.py:
src/orca/speech_generator.py:
Add mnemonic speaking back in to speech generator
2009-06-01 Willie Walker <william.walker@sun.com>
* src/orca/default.py:
src/orca/orca.py:
src/orca/scripts/apps/Thunderbird/script.py:
src/orca/scripts/apps/acroread.py:
src/orca/scripts/apps/evolution/script.py:
src/orca/scripts/apps/gedit/script.py:
src/orca/scripts/apps/soffice/script.py:
src/orca/scripts/apps/yelp.py:
src/orca/scripts/toolkits/Gecko/script.py:
src/orca/structural_navigation.py:
Add 'force' parameter to setLocusOfFocus to allow us to
force a locus of focus change even if it might be the
same object. This is to help better support bug #571812.
2009-06-01 Willie Walker <william.walker@sun.com>
* src/orca/speech_generator.py:
Don't speak new column headers when reading a row
2009-06-01 Willie Walker <william.walker@sun.com>
* src/orca/scripts/apps/evolution/script.py:
src/orca/speech_generator.py:
Add 'includeContext' support
The includeContext support (default=True) allows a caller
to override whether the generated speech includes the context
for the object or not.
2009-05-31 Willie Walker <william.walker>
* src/orca/speech_generator.py:
test/keystrokes/gtk-demo/role_table.py:
Do not speak 'blank' for table cells when reading entire row
2009-05-29 Willie Walker <william.walker> and
Mesar Hameed <mesar.hameed@gmail.com>
* po/POTFILES.in:
src/orca/Makefile.am:
src/orca/bookmarks.py:
src/orca/default.py:
src/orca/espeechfactory.py:
src/orca/formatting.py:
src/orca/liveregions.py:
src/orca/mouse_review.py:
src/orca/orca-setup.glade:
src/orca/script.py:
src/orca/scripts/apps/Thunderbird/script.py:
src/orca/scripts/apps/Thunderbird/speech_generator.py:
src/orca/scripts/apps/acroread.py:
src/orca/scripts/apps/evolution/Makefile.am:
src/orca/scripts/apps/evolution/formatting.py:
src/orca/scripts/apps/evolution/script.py:
src/orca/scripts/apps/evolution/speech_generator.py:
src/orca/scripts/apps/gcalctool/speech_generator.py:
src/orca/scripts/apps/gcalctool/where_am_i.py:
src/orca/scripts/apps/gedit/script.py:
src/orca/scripts/apps/gnome-system-monitor.py:
src/orca/scripts/apps/gnome-terminal.py:
src/orca/scripts/apps/gnome-window-properties/Makefile.am:
src/orca/scripts/apps/gnome-window-properties/formatting.py:
src/orca/scripts/apps/gnome-window-properties/script.py:
src/orca/scripts/apps/gnome-window-properties/speech_generator.py:
src/orca/scripts/apps/liferea.py:
src/orca/scripts/apps/pidgin/speech_generator.py:
src/orca/scripts/apps/pidgin/where_am_i.py:
src/orca/scripts/apps/planner/Makefile.am:
src/orca/scripts/apps/planner/script.py:
src/orca/scripts/apps/planner/speech_generator.py:
src/orca/scripts/apps/rhythmbox/Makefile.am:
src/orca/scripts/apps/rhythmbox/formatting.py:
src/orca/scripts/apps/rhythmbox/script.py:
src/orca/scripts/apps/rhythmbox/speech_generator.py:
src/orca/scripts/apps/soffice/Makefile.am:
src/orca/scripts/apps/soffice/formatting.py:
src/orca/scripts/apps/soffice/script.py:
src/orca/scripts/apps/soffice/speech_generator.py:
src/orca/scripts/apps/soffice/where_am_i.py:
src/orca/scripts/apps/yelp.py:
src/orca/scripts/toolkits/Gecko/Makefile.am:
src/orca/scripts/toolkits/Gecko/bookmarks.py:
src/orca/scripts/toolkits/Gecko/formatting.py:
src/orca/scripts/toolkits/Gecko/script.py:
src/orca/scripts/toolkits/Gecko/speech_generator.py:
src/orca/scripts/toolkits/Gecko/where_am_i.py:
src/orca/scripts/toolkits/J2SE-access-bridge/Makefile.am:
src/orca/scripts/toolkits/J2SE-access-bridge/__init__.py:
src/orca/scripts/toolkits/J2SE-access-bridge/formatting.py:
src/orca/scripts/toolkits/J2SE-access-bridge/script.py:
src/orca/scripts/toolkits/J2SE-access-bridge/speech_generator.py:
src/orca/scripts/toolkits/J2SE-access-bridge/speechgenerator.py:
src/orca/speech.py:
src/orca/speech_generator.py:
src/orca/speechgenerator.py:
src/orca/structural_navigation.py:
src/orca/where_am_I.py:
test/harness/.gitignore:
test/harness/runone.sh:
test/keystrokes/firefox/bug_511389.py:
test/keystrokes/firefox/bug_544771.py:
test/keystrokes/firefox/bug_552887a.py:
test/keystrokes/firefox/bug_568631.py:
test/keystrokes/firefox/codetalks_alert.py:
test/keystrokes/firefox/codetalks_button.py:
test/keystrokes/firefox/codetalks_tree.py:
test/keystrokes/firefox/codetalks_treegrid.py:
test/keystrokes/firefox/dojo_button.py:
test/keystrokes/firefox/dojo_checkbox.py:
test/keystrokes/firefox/dojo_combo_box.py:
test/keystrokes/firefox/dojo_dialog.py:
test/keystrokes/firefox/dojo_panel_text.py:
test/keystrokes/firefox/dojo_slider.py:
test/keystrokes/firefox/dojo_spinner.py:
test/keystrokes/firefox/dojo_tabcontainer.py:
test/keystrokes/firefox/dojo_tree.py:
test/keystrokes/firefox/find_wiki.py:
test/keystrokes/firefox/flat_review_combo_box.py:
test/keystrokes/firefox/html_role_combo_box.py:
test/keystrokes/firefox/html_role_links.py:
test/keystrokes/firefox/html_role_lists.py:
test/keystrokes/firefox/html_struct_nav_blockquote.py:
test/keystrokes/firefox/imagemap.py:
test/keystrokes/firefox/label_guess_bug_546815.py:
test/keystrokes/firefox/label_guess_bugzilla_search.py:
test/keystrokes/firefox/line_nav_bugzilla_search.py:
test/keystrokes/firefox/line_nav_slash_test.py:
test/keystrokes/firefox/line_nav_wiki.py:
test/keystrokes/firefox/link_where_am_i.py:
test/keystrokes/firefox/moz_checkbox.py:
test/keystrokes/firefox/moz_menu.py:
test/keystrokes/firefox/moz_progressbar.py:
test/keystrokes/firefox/moz_slider.py:
test/keystrokes/firefox/moz_tabpanel.py:
test/keystrokes/firefox/ms_tree_bug_570571.py:
test/keystrokes/firefox/page_summary.py:
test/keystrokes/firefox/sayAll_bugzilla_search.py:
test/keystrokes/firefox/sayAll_role_combo_box.py:
test/keystrokes/firefox/sayAll_wiki.py:
test/keystrokes/firefox/tpg_aria_slider.py:
test/keystrokes/firefox/uiuc_alert.py:
test/keystrokes/firefox/uiuc_button.py:
test/keystrokes/firefox/uiuc_grid.py:
test/keystrokes/firefox/uiuc_radiobutton.py:
test/keystrokes/firefox/uiuc_slider.py:
test/keystrokes/firefox/uiuc_tabpanel.py:
test/keystrokes/firefox/uiuc_tree.py:
test/keystrokes/firefox/xul_role_accel_label.py:
test/keystrokes/firefox/xul_role_alert.py:
test/keystrokes/firefox/xul_role_check_box.py:
test/keystrokes/firefox/xul_role_check_menu_item.py:
test/keystrokes/firefox/xul_role_combo_box.py:
test/keystrokes/firefox/xul_role_entry.py:
test/keystrokes/firefox/xul_role_list_item.py:
test/keystrokes/firefox/xul_role_menu_bar.py:
test/keystrokes/firefox/xul_role_page_tab.py:
test/keystrokes/firefox/xul_role_push_button.py:
test/keystrokes/firefox/xul_role_radio_button.py:
test/keystrokes/firefox/xul_role_radio_menu_item.py:
test/keystrokes/firefox/xul_role_tree.py:
test/keystrokes/firefox/xul_role_tree_table.py:
test/keystrokes/firefox/xul_where_am_i_status_bar.py:
test/keystrokes/firefox/yahoo_tab_view.py:
test/keystrokes/gtk-demo/role_accel_label.py:
test/keystrokes/gtk-demo/role_alert.py:
test/keystrokes/gtk-demo/role_check_box.py:
test/keystrokes/gtk-demo/role_check_menu_item.py:
test/keystrokes/gtk-demo/role_column_header.py:
test/keystrokes/gtk-demo/role_combo_box.py:
test/keystrokes/gtk-demo/role_combo_box2.py:
test/keystrokes/gtk-demo/role_dialog.py:
test/keystrokes/gtk-demo/role_icon.py:
test/keystrokes/gtk-demo/role_label.py:
test/keystrokes/gtk-demo/role_menu.py:
test/keystrokes/gtk-demo/role_page_tab.py:
test/keystrokes/gtk-demo/role_push_button.py:
test/keystrokes/gtk-demo/role_radio_button.py:
test/keystrokes/gtk-demo/role_radio_menu_item.py:
test/keystrokes/gtk-demo/role_spin_button.py:
test/keystrokes/gtk-demo/role_split_pane.py:
test/keystrokes/gtk-demo/role_table.py:
test/keystrokes/gtk-demo/role_tear_off_menu_item.py:
test/keystrokes/gtk-demo/role_text_multiline.py:
test/keystrokes/gtk-demo/role_toggle_button.py:
test/keystrokes/gtk-demo/role_toolbar.py:
test/keystrokes/gtk-demo/role_tree_table.py:
test/keystrokes/oowriter/bug_350219.py:
test/keystrokes/oowriter/bug_361747.py:
test/keystrokes/oowriter/bug_364765.py:
test/keystrokes/oowriter/bug_382408.py:
test/keystrokes/oowriter/bug_384893.py:
test/keystrokes/oowriter/bug_385828.py:
test/keystrokes/oowriter/bug_413909.py:
test/keystrokes/oowriter/bug_435201.py:
test/keystrokes/oowriter/bug_435226.py:
test/keystrokes/oowriter/bug_450210.py:
test/keystrokes/oowriter/bug_469367.py:
test/keystrokes/oowriter/table-sample.odt:
First phase of working on bug #Bug 570658 – Refactor the speech
and braille generators. This phase touches the speech
generators and makes things very much table driven (see the
formatting.py modules). Aside from touching many modules, the
impact on the user should *hopefully* be unnoticeable. That is,
the new tables are set up to provide the same speech output we
were getting before the refactor. The next phases will be
migrating where am I support to the speech generator and then
working on braille.
2009-05-26 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/apps/ekiga.py:
Tweak to the fix for bug #511468 - Ekiga chat window accessibility
problem so that we do not constantly speak the call duration when
in a call.
2009-05-25 Willie Walker <william.walker@sun.com>
* README:
NEWS:
configure.in:
Prep for Orca 2.27.2
2009-05-25 drtvasudevan <agnihot3@gmail.com>
* po/ta.po:
Updated Tamil translation
2009-05-25 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/apps/soffice/script.py:
src/orca/scripts/apps/soffice/script_settings.py:
Work on bug #574720 - Table Navigation Keys for OpenOffice
Writer. This adds in support for Alt + the cursoring keys for
navigation in OOo tables. Note that you will need to first
enable structural by pressing Orca + Z. We plan to add in the
customizations/settings available in the Gecko preferences, as
well as for the announcement of dynamic row and column headers
when navigating.
2009-05-25 Willie Walker <william.walker@sun.com>
* src/orca/pronunciation_dict.py:
Fix for bgo#582028 - Character pronunciations are not used when
navigating by line. This provides a fallback to the chnames
dictionary
2009-05-24 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/toolkits/Gecko/where_am_i.py:
src/orca/where_am_I.py:
test/html/lists2.html: (new)
test/keystrokes/firefox/html_role_list_item_where_am_i.py: (new)
Fix for bug #530784 - whereAmI info for list items in web
content needs to be improved.
2009-05-24 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/apps/ekiga.py:
Fix for bug #511468 - Ekiga chat window accessibility problem.
2009-05-21 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/toolkits/Gecko/script.py:
Fix for bug #577900 - Blank lines in Firefox text areas
incorrectly spoken.
2009-05-18 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/apps/Makefile.am:
src/orca/scripts/apps/ekiga.py: (new)
Fix for bug #574221 - left-pane in Ekiga's preference box can't
be read at start-up.
2009-05-17 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/apps/Makefile.am:
src/orca/scripts/apps/gtk-window-decorator.py: (new)
Fix for bug #466841 - Orca doesn't announce items when
Alt+Tabbing if Compiz is enabled. This fix is designed to
improve Orca's access to the basic window switcher in
Compiz. There are still bugs in Compiz which make providing
compelling access difficult, but this should at least make
switching windows accessible.
2009-05-14 Willie Walker <william.walker@sun.com>
* src/orca/default.py:
Fix for bgo#582684 - Arrowing left/right across tree tables
causes whole row to be spoken
2009-05-14 Gabor Kelemen <kelemeng@gnome.hu>
* po/hu.po:
Hungarian translation updated by Attila Hammer
2009-05-10 Willie Walker <william.walker@sun.com>
and Hammer Attila <hammera@pickup.hu>
* src/orca/chnames.py:
Fix for bgo#575614 - Please add speakable characters: → and ←
2009-05-09 Willie Walker <william.walker@sun.com>
* src/orca/braille.py:
src/orca/default.py:
Fix for bgo#354471 - Text selection from braille input device
This is the first step of implementing this feature. Here's the
behavior:
KEY_CMD_CUTBEGIN (Dot 1 + cursor routing key on my display) -
this will specify the start of a selection. Orca will merely
move the caret to the given spot and will clear any existing
selection.
KEY_CMD_CUTLINE (Dot 4 + cursor routing key on my display) -
this will specify the end of a selection and the selected text
is automatically copied to the system clipboard. If a selection
doesn't exist, Orca creates a new one where the other endpoint
of the selection is where the caret is. If a selection exists
and the selection point is outside the existing selection, Orca
extends the existing one. If a selection exists and the
selection point is inside the existing selection, Orca trims the
selection from the right (i.e., the selected text that's after
the selection point becomes unselected).
Known issues that need to be resolved:
1) This only works in text areas. It doesn't work across things
such as paragraphs in OpenOffice.
2) There's some strangeness with speech feedback: it sometimes
says "unselected" when the text is selected. This should be
fixable, but there also probably shouldn't be any speech
feedback when doing this from the braille display.
2009-05-05 Willie Walker <william.walker@sun.com>
* src/orca/braille.py:
src/orca/default.py:
src/orca/focus_tracking_presenter.py:
src/orca/orca.py:
src/orca/script.py:
Fix for bgo#581372 - Move cursor routing and six dot key
handling from braille.py to script
With the cleanup from bgo#581532 to remove the custom brl module
and move directly to the brlapi module provided by
BrlTTY/BrlAPI, we are now able to handle BrlAPI commands much
better. This patch 'uncovers' the handling the cursor routing
keys and the six dot keys; they are no longer swallowed/handled
by the braille.py module alone. Instead, they go to the script
like any other event. By default, the script just turns around
and calls braille.py methods, but it can also feel free to
override them. For example, it might look at keyboard modifiers
along with a cursor routing key to see if it wants to select
text or not.
As a note, the BrlAPI events come to us as a dictionary
containing a bunch of information about the event. For example,
the cursor routing command contains information about which
routing key was pressed. The six dots command, which is used to
turn contracted braille on or off, contains information about
whether the user wants to turn contracted braille on (dots 2-3-5
on my Baum display) or off (dots 2-3-6 on my Baum display).
Right now, expressing interest in braille events is still done
by the command (e.g., brlapi.KEY_CMD_HOME, brlapi.KEY_CMD_ROUTE,
brlapi.KEY_CMD_SIXDOTS) and it is up to the event handler to
determine how to handle the arguments.
2009-05-04 Willie Walker <william.walker@sun.com>
* configure.in:
src/Makefile.am:
src/brl/.cvsignore:
src/brl/.gitignore:
src/brl/Makefile.am:
src/brl/brlmodule.c:
src/orca/braille.py:
src/orca/default.py:
Fix for bgo#581532 - Remove brl module
2009-05-04 Willie Walker <william.walker@sun.com>
* src/orca/scripts/apps/gedit/script.py:
Fix for bug #577977 - provide speech feedback for "repeat last
find" in Gedit
2009-05-04 Willie Walker <william.walker@sun.com>
* README:
configure.in:
Mark as Orca v2.27.2pre
2009-05-04 Willie Walker <william.walker@sun.com>
* ChangeLog:
NEWS:
RELEASE-HOWTO:
configure.in:
Prep for Orca 2.27.1
2009-05-02 Willie Walker <william.walker@sun.com>
* src/orca/orca_console_prefs.py:
Fix for bgo#580423 - Remove deprecated libgnomeui dependency.
Use DBus org.gnome.SessionManager.Logout instead of
gnome.ui.master_client().request_save.
2009-05-01 Willie Walker <william.walker@sun.com>
* src/orca/orca.py:
src/orca/settings.py:
Add setting to disable the pyatspi GIL idle handler:
useGILIdleHandler. This change is made in response to
http://bugzilla.gnome.org/show_bug.cgi?id=576954 where it
appears as though the GIL idle handler in pyatspi is causing
consumers of pyatspi (e.g., Orca and accerciser) to start
consuming 100% of a CPU when the machine is idle. We're pretty
sure the GIL handler is not necessary, so this change gets rid
of it for the 2.27.1 development build of Orca. If we see that
users notice strange lock ups, however, we may need to change
things back.
2009-04-30 Willie Walker <william.walker@sun.com>
* README:
Add pointer to internals.html document for script writing
2009-04-30 Vincent Legoll <via william.walker@sun.com>
* src/orca/orca.py:
Fix for bug #580329 - Use show_uri() to display help window
2009-04-30 Maxim V. Dziumanenko <dziumanenko@gmail.com>
* po/uk.po
Updated Ukrainian translation
2009-04-28 Nolan Darilek <via william.walker@sun.com>
* src/orca/scripts/apps/gedit/script.py:
Fix for bug #577977 - provide speech feedback for "repeat last
find" in Gedit
2009-04-26 Willie Walker <william.walker@sun.com>
* docs/doc-set/internals.html:
docs/doc-set/script_guide.sgml:
Update the script guide section on braille and braille
generators
2009-04-26 Willie Walker <william.walker@sun.com>
* docs/doc-set/internals.html:
docs/doc-set/script_guide.sgml:
Update the script guide section on speech and speech generators
2009-04-26 Willie Walker <william.walker@sun.com>
* orca.doap:
Use mailto: URL format for mbox lines in orca.doap
2009-04-26 Willie Walker <william.walker@sun.com>
* ChangeLog:
Update ChangeLog to reflect the git changes made since the
transition to git
2009-04-26 Willie Walker <william.walker@sun.com>
* .gitignore:
src/orca/.gitignore:
Update .gitignore files. These files were created prior to
facilities that were created for autogenerating .gitignore
files. I might end up dumping these manually created for the
autogenerated files at some point, but not right now.
2009-04-25 Willie Walker <william.walker@sun.com>
* src/orca/default.py:
Adjust debug utilities to print to console and debug log.
2009-04-25 Willie Walker <william.walker@sun.com>
* docs/doc-set/architecture.sgml:
docs/doc-set/internals.html:
docs/doc-set/script_guide.sgml:
Update script writing docs. Braille and speech output sections
still need work.
2009-04-23 Olav Vitters <olav@bkor.dhs.org>
* orca.doap:
Add desktop category
2009-04-22 Mesar Hameed <mesar.hameed@gmail.com>
* run_pylint.sh.in:
Updated run_pylint.sh to work with git.
2009-04-22 Jordi Mas i Hernandez <jmas@softcatala.org>
* po/ca.po
Minor fixes to Catalan translation
2009-04-19 Aron Xu <aronxu@gnome.org>
* po/zh_CN.po:
Updated zh_CN.po
2009-04-19 Willie Walker <william.walker@sun.com>
* docs/doc-set/architecture.png:
docs/doc-set/architecture.sgml:
docs/doc-set/blurb.sgml:
docs/doc-set/diagrams.odg:
docs/doc-set/internals.html:
docs/doc-set/internals.sgml:
docs/doc-set/legal.sgml:
Update internals docs. Did not touch script writing guide yet.
2009-04-17 Willie Walker <william.walker@sun.com>
* docs/doc-set/README:
docs/doc-set/architecture.sgml:
docs/doc-set/internals.html:
docs/doc-set/internals.sgml:
docs/doc-set/script_guide.sgml:
docs/doc-set/user_guide.html:
docs/doc-set/user_guide.sgml:
Update docs to work with xsltproc on OpenSolaris (a command
example is in README)
2009-04-17 Willie Walker <william.walker@sun.com>
* orca.doap:
Add homepage, mailing-list, bug-database, and download-page to
DOAP file
2009-04-17 Willie Walker <william.walker@sun.com>
* .gitignore:
po/.gitignore:
src/brl/.gitignore:
src/louis/.gitignore:
src/orca/.gitignore:
Add .gitignore files
2009-04-17 Willie Walker <william.walker@sun.com>
* orca.doap:
Add orca.doap
2009-04-15 Willie Walker <william.walker@sun.com>
* src/orca/gnomespeechfactory.py:
Fix for bug #579052 - Orca should be able to run with AT-SPI/D-Bus
2009-04-12 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/toolkits/Gecko/script.py:
test/keystrokes/firefox/line_nav_bug_577979.py: (new)
Fix for bug #577979 - Pressing Down Arrow from the middle of a
multi-line HTML list item initially moves to the beginning of the
line when arrowToLineBeginning is False.
2009-04-11 Willie Walker <william.walker@sun.com>
* src/orca/default.py:
ReFix for bug #576438 - Provide state change information for
radio buttons that require you to press space to select them
2009-04-10 Willie Walker <william.walker@sun.com>
* src/orca/scripts/apps/soffice/script.py:
src/orca/settings.py:
src/orca/where_am_I.py:
Fix for bug #577245 - Present paragraph-style information in
OpenOffice.
2009-04-10 Willie Walker <william.walker@sun.com>
* src/orca/default.py:
Fix for bug #576438 - Provide state change information for
radio buttons that require you to press space to select them
2009-04-10 Willie Walker <william.walker@sun.com>
* src/orca/scripts/apps/gcalctool/script.py:
src/orca/input_event.py:
Fix for bug #575921 - When I working with the gcalctool
application, Orca says too lot of the result of the mathematic
operations
2009-04-08 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/apps/soffice/script.py:
Fix for bug #578072 - Orca does not always present text attributes
in braille in OOo documents.
2009-04-07 Willie Walker <william.walker@sun.com>
* src/orca/orca_gui_main.py:
src/orca/orca_gui_prefs.py:
Fix for bug #576037 - Bind F1 key to help page
2009-04-04 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/toolkits/Gecko/script.py:
test/keystrokes/firefox/line_nav_bug_577239.py: (new)
test/html/bug-577239.html: (new)
Fix for bug #577239 - Cannot navigate by line through multi-line
HTML list items in Firefox/Thunderbird when arrowToLineBeginning
is False.
2009-03-30 Tomas Cerha (via william.walker@sun.com>
* src/orca/speechdispatcherfactory.py:
Fix for bug #577330 - Detect whether speech dispatcher is
installed or not
2009-03-29 Stephen Brandt (via william.walker@sun.com>
* src/orca/orca_glade.py:
src/orca/orca_quit.py:
src/orca/orca_gui_find.py:
src/orca/orca_gui_main.py:
src/orca/orca_gui_prefs.py:
Fix for bug #573535 - Orca should use the 16x16 pixels
application icon for Main and Preferences windows.
Thank Stephen!
2009-03-15 Willie Walker <william.walker@sun.com>
* configure.in, README:
Mark as Orca v2.27.1pre
2009-03-15 Willie Walker <william.walker@sun.com>
* configure.in, README, NEWS:
Prep for Orca v2.26.0
2009-03-14 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* test/keystrokes/firefox/xul_role_menu_bar.py:
test/keystrokes/firefox/xul_role_list_item.py:
test/keystrokes/firefox/xul_role_tree.py:
test/keystrokes/firefox/xul_role_tree_table.py:
test/keystrokes/firefox/xul_role_combo_box.py:
test/keystrokes/firefox/dojo_button.py:
test/keystrokes/firefox/tpg_aria_slider.py:
test/keystrokes/firefox/uiuc_alert.py:
test/keystrokes/firefox/codetalks_button.py:
test/keystrokes/firefox/dojo_bug_570566.py:
test/keystrokes/firefox/xul_role_alert.py:
test/keystrokes/firefox/line_nav_slash_test.py:
test/keystrokes/firefox/line_nav_enter_bug.py:
Updated regression tests.
2009-03-11 Willie Walker <william.walker@sun.com>
* test/harness/utils.py:
test/keystrokes/firefox/xul_role_push_button.py:
Update to work with Firefox 3.1 Beta 3 on OpenSolaris 2008.11 b108.
Note - this requires a new xmodmap command that can be found
on http://live.gnome.org/Orca/RegressionTesting. The main purpose
is to add ISO_Left_Shift to the keymap.
2009-03-05 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/toolkits/Gecko/script.py:
test/keystrokes/firefox/codetalks_list.py: (new)
Fix for bug #570557 - (ARIA) List items not presented.
2009-03-02 Willie Walker <william.walker@sun.com>
* configure.in, README, NEWS:
Prep for Orca v2.25.92
2009-03-01 Willie Walker <william.walker@sun.com>
* test/keystrokes/firefox/uiuc_grid.py:
test/keystrokes/gtk-demo/role_combo_box.py:
test/keystrokes/gtk-demo/role_text_multiline_navigation.py:
src/orca/default.py:
Regression test cleanups.
2009-03-01 Willie Walker <william.walker@sun.com>
* src/orca/orca_glade.py:
src/orca/orca_quit.py:
src/orca/orca_gui_find.py:
src/orca/orca_gui_main.py:
src/orca/orca_gui_prefs.py:
Fix for bug #573535 - Orca should use the 16x16 pixels application
icon for Main and Preferences windows. This keeps the icon at the
48x48 size that has been used to date, but makes sure it is used
on all the windows shown by Orca. If we decide to go from 48x48
to 16x16, we can change the new set_orca_icon method in
orca_glade.py.
2009-03-01 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/toolkits/Gecko/script.py:
test/keystrokes/firefox/line_nav_bug_570757.py: (new)
Fix for bug #570757 - Orca can get stuck when browsing pages
with embedded panels in FF 3.x.
2009-02-27 Willie Walker <william.walker@sun.com>
* src/orca/default.py:
Work on bug #573303 - Support text attribute and spelling
error notification in FF. Limit the speaking of font names
to just the first family listed.
2009-02-27 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/toolkits/Gecko/script.py:
src/orca/default.py:
src/orca/scripts/apps/soffice/script.py:
test/keystrokes/gtk-demo/role_label:
test/keystrokes/gtk-demo/role_text_multiline_navigation.py:
test/keystrokes/gtk-demo/role_text_multiline_navigation2.py:
Fix for bug #387556 - Arrowing past last character at end of
line in Orca results in no speech.
2009-02-27 Willie Walker <william.walker@sun.com>
* src/orca/scripts/toolkits/Gecko/script.py:
Fix for bug #570550 - (ARIA) UIUC Number Guessing Game Alert
not presented when it changes
2009-02-27 Willie Walker <william.walker@sun.com>
* src/orca/where_am_I.py:
test/keystrokes/firefox/link_where_am_i.py:
Fix for bug #570567 - Where am I for link does not speak the
link text
2009-02-27 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/apps/evolution/script.py:
Fix for bug #570390 - Spellcheck in evolution is badly broken.
2009-02-26 Willie Walker <william.walker@sun.com>
* src/orca/mag.py:
src/orca/orca_gui_prefs.py:
Fix for bug #572215 - Opening preferences launches magnifier.
2009-02-26 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/toolkits/Gecko/script.py:
Fix for bug #573174 - Gecko script.py calls debug.printException
when there isn't an exception.
2009-02-26 Willie Walker <william.walker@sun.com>
* src/orca/scripts/apps/pidgin/script.py:
Fix for bug #572303 - Double-speaking of characters entered into
pidgin account creation.
2009-02-25 Eitan Isaacson <eitan@ascender.com>
* src/orca/scripts/apps/Makefile.am:
src/orca/scripts/apps/notify-osd.py:
po/POTFILES.in:
Added a notify-osd script (bug #573156).
2009-02-25 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/apps/Thunderbird/script.py:
Fix for bug #571812 - Orca does not read the next message in
thunderbird when deleting if first column does not change.
2009-02-19 Willie Walker <william.walker@sun.com>
* src/orca/scripts/apps/Makefile.am:
src/orca/scripts/apps/gdmlogin.py (re-add):
Fix for bug #517387 - Orca should not read password out in
gdm login window. I was too aggressive. I deleted the whole
script instead of just a minor addition that was done as a
workaround.
2009-02-19 Willie Walker <william.walker@sun.com>
* src/orca/scripts/apps/Makefile.am:
src/orca/scripts/apps/gdmlogin.py (delete):
Fix for bug #517387 - Orca should not read password out in
gdm login window
2009-02-18 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/default.py:
Fix for bug #572294 - Need a sanity check in the default script's
locusOfFocusChanged.
2009-02-18 Willie Walker <william.walker@sun.com>
* src/orca/scripts/toolkits/Gecko/speech_generator.py:
Fix for bug #572218 - Order of variables not changeable
2009-02-18 William Walker and Mesar Hameed <via william.walker@sun.com>
* src/orca/orca_gui_prefs.py:
More fixing for bug #419123 - Modified speech settings do not change
immediately in preferences dialog. Make this more insensitive to
incomplete or unmatching translations.
2009-02-17 William Walker and Mesar Hameed <via william.walker@sun.com>
* src/orca/acss.py:
src/orca/orca_gui_prefs.py:
More fixing for bug #419123 - Modified speech settings do not change
immediately in preferences dialog. There was an issue with setting
the uppercase and/or hyperlink voice settings the first time.
2009-02-16 Willie Walker <william.walker@sun.com>
* configure.in, README:
Mark as Orca v2.25.92pre
2009-02-16 Willie Walker <william.walker@sun.com>
* configure.in, README, NEWS:
Prep for Orca v2.25.91
2009-02-16 William Walker and Mesar Hameed <via william.walker@sun.com>
* src/orca/acss.py:
src/orca/orca_console_prefs.py:
src/orca/orca-setup.glade:
src/orca/gnomespeechfactory.py:
src/orca/orca_gui_prefs.py:
Fix for bug #419123 - Modified speech settings do not change
immediately in preferences dialog. Many thanks also to
Hammer Attila for his testing and feedback.
2009-02-16 William Walker <william.walker@sun.com>
* keystrokes/gtk-demo/spoken_indentation.settings:
keystrokes/gtk-demo/spoken_indentation.py:
Regression test for spoken indentation
2009-02-16 William Walker <william.walker@sun.com>
* src/orca/default.py:
Additional fix for bug #569343 - Speaking of indentation is misleading
2009-02-14 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/toolkits/Gecko/script.py:
test/keystrokes/firefox/line_nav_bug_547573.py:
test/keystrokes/firefox/dojo_button.py:
test/keystrokes/firefox/tpg_aria_slider.py:
test/keystrokes/firefox/yahoo_tab_view.py:
test/keystrokes/firefox/moz_slider.py:
Work on (and possibly fix for) bug #571799 - (ARIA) Need to clean
up braille presentation of certain widgets.
2009-02-13 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/toolkits/Gecko/script.py:
test/keystrokes/firefox/moz_menu.py:
test/keystrokes/firefox/codetalks_panel_text.py:
test/keystrokes/firefox/dojo_slider.py:
test/keystrokes/firefox/dojo_tree.py:
test/keystrokes/firefox/dojo_tabcontainer.py:
test/keystrokes/firefox/dojo_spinner.py:
test/keystrokes/firefox/dojo_dialog.py:
test/keystrokes/firefox/uiuc_grid.py:
test/keystrokes/firefox/ms_tree_bug_570571.py:
test/keystrokes/firefox/dojo_button.py:
test/keystrokes/firefox/tpg_aria_slider.py:
test/keystrokes/firefox/uiuc_alert.py:
test/keystrokes/firefox/codetalks_button.py:
test/keystrokes/firefox/moz_slider.py:
test/keystrokes/firefox/uiuc_tree.py:
test/keystrokes/firefox/dojo_bug_570566.py:
test/keystrokes/firefox/moz_tabpanel.py:
test/keystrokes/firefox/dojo_panel_text.py:
test/keystrokes/firefox/dojo_combo_box.py:
More work on bug #571058 - (ARIA) Orca's caret navigation is
kicking in when it shouldn't be.
2009-02-13 Meshar Hameed <via william.walker@sun.com>
* src/orca/default.py:
Fix for bug #569343 - Speaking of indentation is misleading
2009-02-13 Willie Walker <william.walker@sun.com>
* src/louis/constants.py.in:
Additional fix for bug #569118 - Use C_() instead of Q_() with
context
2009-02-12 Willie Walker <william.walker@sun.com>
* test/keystrokes/firefox/uiuc_alert.py:
src/orca/scripts/toolkits/Gecko/speech_generator.py:
src/orca/scripts/toolkits/Gecko/script.py:
Fix for bug #570551 - (ARIA) UIUC Number Guessing Game Alert
Dialog not presented when it appears.
2009-02-11 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* test/keystrokes/firefox/dojo_button.py:
Updated regression test.
* src/orca/scripts/toolkits/Gecko/script.py:
More work on bug #571058 - (ARIA) Orca's caret navigation is
kicking in when it shouldn't be.
2009-02-11 Willie Walker <william.walker@sun.com>
* test/keystrokes/firefox/page_summary.py:
src/orca/scripts/toolkits/Gecko/speech_generator.py:
Fix for bug #561660 - For example with firefox 3.0, heading
levels incorrect sayed for hungarian grammatical
2009-02-10 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* src/orca/scripts/toolkits/Gecko/script.py:
test/keystrokes/firefox/dojo_tree.py:
test/keystrokes/firefox/dojo_tabcontainer.py:
test/keystrokes/firefox/codetalks_tree.py:
test/keystrokes/firefox/uiuc_grid.py:
test/keystrokes/firefox/yahoo_tab_view.py:
test/keystrokes/firefox/codetalks_button.py:
test/keystrokes/firefox/moz_slider.py:
test/keystrokes/firefox/dojo_combo_box.py:
More work on bug #571058 - (ARIA) Orca's caret navigation is
kicking in when it shouldn't be.
* src/orca/scripts/toolkits/Gecko/script.py:
test/keystrokes/firefox/bug_568768.py: (new)
test/keystrokes/firefox/bug_552887a.py:
Fix for bug #568768 - Orca starts at the top of a newly-loaded
page rather than the specified fragment.
2009-02-09 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* test/keystrokes/firefox/yahoo_tab_view.py: (new)
test/keystrokes/firefox/codetalks_tree.py: (new)
New regression tests.
* src/orca/scripts/toolkits/Gecko/script.py:
test/keystrokes/firefox/moz_menu.py:
test/keystrokes/firefox/uiuc_grid.py:
test/keystrokes/firefox/uiuc_tree.py:
Fix for bug #571058 - (ARIA) Orca's caret navigation is kicking in
when it shouldn't be.
* test/keystrokes/firefox/uiuc_grid.py:
test/keystrokes/firefox/line_nav_simple_form.py:
test/keystrokes/firefox/xul_role_entry.py:
test/keystrokes/firefox/xul_role_alert.py:
test/keystrokes/firefox/sayAll_html_test_page.py: (removed)
Updated regression tests. I also removed one sayAll test because
it seems to stall the harness for some reason. Given that we have
quite a few sayAll tests which examine the same conditions, I'd
rather spend my time on Orca bugs rather than harness issues. :-)
2009-02-08 Joanmarie Diggs <joanmarie.diggs@gmail.com>
* test/keystrokes/firefox/bug_568631.py:
test/keystrokes/firefox/dojo_combo_box.py:
Updated regression tests.
* test/keystrokes/firefox/line_nav_simple_form.py:
Updated regression test.
* test/keystrokes/firefox/line_nav_wiki.py:
Updated regression test.