├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── issue_templates │ └── Default.md ├── AUTHORS ├── COPYING ├── ChangeLog ├── ChangeLog-pre-2.27.1 ├── HACKING ├── MAINTAINERS ├── NEWS ├── QUICKSTART ├── README-APPLICATION-DEVELOPERS.md ├── README-REMOTE-CONTROLLER.md ├── README.md ├── RELEASE-HOWTO ├── REMOTE-CONTROLLER-COMMANDS.md ├── TODO ├── ci ├── build_and_install.sh ├── container_builds.yml ├── env.sh ├── install-python-tools.sh ├── install_atspi.sh ├── prepare_translated_docs.sh ├── pull-container-image.sh ├── render_mallard_docs.sh └── requirements.txt ├── docs ├── meson.build └── orca.1 ├── help ├── C │ ├── commands.page │ ├── commands_braille.page │ ├── commands_chat.page │ ├── commands_controlling_orca.page │ ├── commands_debugging.page │ ├── commands_find.page │ ├── commands_flat_review.page │ ├── commands_live_regions.page │ ├── commands_mouse.page │ ├── commands_profiles.page │ ├── commands_reading.page │ ├── commands_speech_settings.page │ ├── commands_structural_navigation.page │ ├── commands_table.page │ ├── commands_time_date_notifications.page │ ├── commands_where_am_i.page │ ├── figures │ │ └── orca-logo.svg │ ├── howto_documents.page │ ├── howto_flat_review.page │ ├── howto_forms.page │ ├── howto_key_bindings.page │ ├── howto_keyboard_layout.page │ ├── howto_learn_modes.page │ ├── howto_live_regions.page │ ├── howto_mouse_review.page │ ├── howto_notifications.page │ ├── howto_orca_find.page │ ├── howto_profiles.page │ ├── howto_setting_up_orca.page │ ├── howto_structural_navigation.page │ ├── howto_tables.page │ ├── howto_text_attributes.page │ ├── howto_the_orca_modifier.page │ ├── howto_toggling_caps_lock.page │ ├── howto_whereami.page │ ├── index.page │ ├── introduction.page │ ├── preferences.page │ ├── preferences_braille.page │ ├── preferences_chat.page │ ├── preferences_general.page │ ├── preferences_introduction.page │ ├── preferences_key_bindings.page │ ├── preferences_key_echo.page │ ├── preferences_pronunciation.page │ ├── preferences_speech.page │ ├── preferences_spellcheck.page │ ├── preferences_table_navigation.page │ ├── preferences_text_attributes.page │ ├── preferences_voice.page │ └── preferences_web.page ├── LINGUAS ├── bg │ └── bg.po ├── ca │ └── ca.po ├── cs │ └── cs.po ├── da │ └── da.po ├── de │ └── de.po ├── el │ └── el.po ├── es │ └── es.po ├── eu │ └── eu.po ├── fa │ └── fa.po ├── fr │ └── fr.po ├── gl │ └── gl.po ├── hu │ └── hu.po ├── id │ └── id.po ├── meson.build ├── pt_BR │ └── pt_BR.po ├── ru │ └── ru.po ├── sl │ └── sl.po ├── sv │ └── sv.po └── uk │ └── uk.po ├── icons ├── AUTHORS ├── COPYING ├── meson.build ├── orca-16x16.png ├── orca-22x22.png ├── orca-24x24.png ├── orca-256x256.png ├── orca-32x32.png ├── orca-48x48.png ├── orca-scalable.svg ├── orca-splash.svg └── orca-symbolic.svg ├── meson.build ├── meson_options.txt ├── orca-autostart.desktop.in ├── orca.doap ├── orca.service ├── po ├── .gitignore ├── ChangeLog ├── LINGUAS ├── POTFILES.in ├── POTFILES.skip ├── ab.po ├── an.po ├── ar.po ├── ast.po ├── be.po ├── bg.po ├── bn.po ├── bn_IN.po ├── bs.po ├── ca.po ├── ca@valencia.po ├── ckb.po ├── cs.po ├── cy.po ├── da.po ├── de.po ├── dz.po ├── el.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── fur.po ├── ga.po ├── gl.po ├── gu.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── id.po ├── is.po ├── it.po ├── ja.po ├── ka.po ├── kab.po ├── kk.po ├── kn.po ├── ko.po ├── lt.po ├── lv.po ├── mai.po ├── meson.build ├── mk.po ├── ml.po ├── mr.po ├── ms.po ├── nb.po ├── ne.po ├── nl.po ├── nn.po ├── oc.po ├── or.po ├── pa.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rw.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sr@latin.po ├── sv.po ├── ta.po ├── te.po ├── tg.po ├── th.po ├── tr.po ├── ug.po ├── uk.po ├── uz.po ├── vi.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── pyproject.toml ├── src ├── meson.build └── orca │ ├── .gitignore │ ├── __init__.py │ ├── acss.py │ ├── action_presenter.py │ ├── ax_collection.py │ ├── ax_component.py │ ├── ax_document.py │ ├── ax_event_synthesizer.py │ ├── ax_hypertext.py │ ├── ax_object.py │ ├── ax_selection.py │ ├── ax_table.py │ ├── ax_text.py │ ├── ax_utilities.py │ ├── ax_utilities.pyi │ ├── ax_utilities_application.py │ ├── ax_utilities_collection.py │ ├── ax_utilities_debugging.py │ ├── ax_utilities_event.py │ ├── ax_utilities_relation.py │ ├── ax_utilities_role.py │ ├── ax_utilities_state.py │ ├── ax_value.py │ ├── backends │ ├── __init__.py │ ├── json_backend.py │ └── meson.build │ ├── braille.py │ ├── braille_generator.py │ ├── braille_presenter.py │ ├── braille_rolenames.py │ ├── brlmon.py │ ├── brltablenames.py │ ├── bypass_mode_manager.py │ ├── caret_navigator.py │ ├── chat.py │ ├── clipboard.py │ ├── cmdnames.py │ ├── colornames.py │ ├── dbus_service.py │ ├── debug.py │ ├── debugging_tools_manager.py │ ├── event_manager.py │ ├── flat_review.py │ ├── flat_review_finder.py │ ├── flat_review_presenter.py │ ├── focus_manager.py │ ├── generator.py │ ├── guilabels.py │ ├── highlighter.py │ ├── input_event.py │ ├── input_event_manager.py │ ├── keybindings.py │ ├── keynames.py │ ├── label_inference.py │ ├── learn_mode_presenter.py │ ├── live_region_presenter.py │ ├── mathsymbols.py │ ├── meson.build │ ├── messages.py │ ├── mouse_review.py │ ├── notification_presenter.py │ ├── object_navigator.py │ ├── object_properties.py │ ├── orca-setup.ui │ ├── orca.py │ ├── orca_bin.py.in │ ├── orca_gtkbuilder.py │ ├── orca_gui_navlist.py │ ├── orca_gui_prefs.py │ ├── orca_gui_profile.py │ ├── orca_i18n.py.in │ ├── orca_modifier_manager.py │ ├── orca_platform.py.in │ ├── phonnames.py │ ├── pronunciation_dict.py │ ├── say_all_presenter.py │ ├── script.py │ ├── script_manager.py │ ├── script_utilities.py │ ├── scripts │ ├── __init__.py │ ├── apps │ │ ├── SeaMonkey │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ └── script.py │ │ ├── Thunderbird │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── script.py │ │ │ └── spellcheck.py │ │ ├── __init__.py │ │ ├── evolution │ │ │ ├── __init__.py │ │ │ ├── braille_generator.py │ │ │ ├── meson.build │ │ │ ├── script.py │ │ │ ├── script_utilities.py │ │ │ └── speech_generator.py │ │ ├── gajim │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ └── script.py │ │ ├── gedit │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── script.py │ │ │ └── spellcheck.py │ │ ├── gnome-shell │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── script.py │ │ │ └── script_utilities.py │ │ ├── kwin │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── script.py │ │ │ └── script_utilities.py │ │ ├── meson.build │ │ ├── notification-daemon │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ └── script.py │ │ ├── pidgin │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── script.py │ │ │ ├── script_utilities.py │ │ │ └── speech_generator.py │ │ ├── smuxi-frontend-gnome │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ └── script.py │ │ ├── soffice │ │ │ ├── __init__.py │ │ │ ├── braille_generator.py │ │ │ ├── meson.build │ │ │ ├── script.py │ │ │ ├── script_utilities.py │ │ │ ├── speech_generator.py │ │ │ └── spellcheck.py │ │ └── xfwm4 │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ └── script.py │ ├── default.py │ ├── meson.build │ ├── sleepmode │ │ ├── __init__.py │ │ ├── braille_generator.py │ │ ├── meson.build │ │ ├── script.py │ │ └── speech_generator.py │ ├── switcher │ │ ├── __init__.py │ │ ├── meson.build │ │ ├── script.py │ │ └── script_utilities.py │ ├── terminal │ │ ├── __init__.py │ │ ├── braille_generator.py │ │ ├── meson.build │ │ ├── script.py │ │ ├── script_utilities.py │ │ └── speech_generator.py │ ├── toolkits │ │ ├── Chromium │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── script.py │ │ │ └── script_utilities.py │ │ ├── Gecko │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── script.py │ │ │ └── script_utilities.py │ │ ├── Qt │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── script.py │ │ │ └── script_utilities.py │ │ ├── WebKitGTK │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ ├── script.py │ │ │ └── script_utilities.py │ │ ├── __init__.py │ │ ├── gtk │ │ │ ├── __init__.py │ │ │ ├── meson.build │ │ │ └── script.py │ │ └── meson.build │ └── web │ │ ├── __init__.py │ │ ├── braille_generator.py │ │ ├── meson.build │ │ ├── script.py │ │ ├── script_utilities.py │ │ └── speech_generator.py │ ├── settings.py │ ├── settings_manager.py │ ├── sleep_mode_manager.py │ ├── sound.py │ ├── sound_generator.py │ ├── speech.py │ ├── speech_and_verbosity_manager.py │ ├── speech_generator.py │ ├── speechdispatcherfactory.py │ ├── speechserver.py │ ├── spellcheck.py │ ├── spiel.py │ ├── ssml.py │ ├── structural_navigator.py │ ├── system_information_presenter.py │ ├── systemd.py │ ├── table_navigator.py │ ├── text_attribute_names.py │ ├── typing_echo_presenter.py │ └── where_am_i_presenter.py ├── subprojects └── spiel.wrap ├── test-historical ├── documents │ ├── column-example.odt │ ├── fruit.ods │ ├── navigator.odt │ ├── spanish.odt │ ├── table-sample.odt │ └── table-sample2.odt └── html │ ├── EpiphanyProfile │ ├── bookmarks.rdf │ └── states.xml │ ├── FirefoxProfile │ ├── extensions.rdf │ └── prefs.js │ ├── GnomeWorldWideSmall.jpg │ ├── abbr.html │ ├── accesskeys.html │ ├── anchors.html │ ├── anchors2.html │ ├── aria-alert-dialog.html │ ├── aria-alert.html │ ├── aria-button-toggle.html │ ├── aria-button.html │ ├── aria-checkbox.html │ ├── aria-invalid.html │ ├── aria-landmarks.html │ ├── aria-landmarks2.html │ ├── aria-modal-dialog.html │ ├── aria-progressbar.html │ ├── aria-radiobutton.html │ ├── aria-role-application.html │ ├── aria-role-list.html │ ├── aria-roledescription.html │ ├── aria-slider.html │ ├── aria-sliders.html │ ├── aria-spreadsheet.html │ ├── aria-switch.html │ ├── aria-tabpanel.html │ ├── aria-tabpanel2.html │ ├── aria-tree.html │ ├── aria-treegrid.html │ ├── back.png │ ├── backwards.html │ ├── blockquotes.html │ ├── blogger-navbar.html │ ├── bogus-ol.html │ ├── broken-list.html │ ├── bug-511389.html │ ├── bug-517371.html │ ├── bug-544771.html │ ├── bug-546815.html │ ├── bug-554616.html │ ├── bug-555055.html │ ├── bug-556470.html │ ├── bug-567984.html │ ├── bug-570757.html │ ├── bug-577239.html │ ├── bug-591351-1.html │ ├── bug-591592.html │ ├── bug-591807.html │ ├── bug-592383.html │ ├── button-in-link-with-position-relative-on-focus.html │ ├── canvas-fallback.html │ ├── checked.gif │ ├── clickable-anchor.html │ ├── clickable-text-change.html │ ├── clickable.html │ ├── cloud-nightmare.html │ ├── combobox.html │ ├── common.css │ ├── common.js │ ├── containers.html │ ├── descriptions.html │ ├── dev-accessibility.html │ ├── display-table-cell.html │ ├── emoji.html │ ├── empty-block-link.html │ ├── empty-heading.html │ ├── empty-link-and-line-break.html │ ├── empty.gif │ ├── entries.html │ ├── fail-fragment.html │ ├── fail.html │ ├── fb-stuck.html │ ├── fieldset.html │ ├── focused-link-stuck.html │ ├── fraction.svg │ ├── gear.png │ ├── heading-loop.html │ ├── heading-section.html │ ├── heading-with-child-text.html │ ├── headings-blank.html │ ├── headings-in-divs-in-links-in-list-items.html │ ├── hidden-float-repeat.html │ ├── hidden-label.html │ ├── hidden.html │ ├── htmlpage.html │ ├── iframes-inside-inline-block.html │ ├── iframes-inside-inline-block2.html │ ├── image-stuck.html │ ├── image-test.html │ ├── imagelink.html │ ├── images-in-links.html │ ├── images-in-table-and-floating-div.html │ ├── inline-block-spans.html │ ├── inner-iframe.html │ ├── input-type-number.html │ ├── java-sun-com.html │ ├── left.png │ ├── letters.gif │ ├── linebreak-test.html │ ├── lines-in-pre.html │ ├── link-child-of-body.html │ ├── link-in-pre.html │ ├── link-in-quotes.html │ ├── link-position-relative-on-focus.html │ ├── link-with-child-text.html │ ├── list-with-anchors-and-hyphens.html │ ├── lists.html │ ├── lists2.html │ ├── longdesc-content.html │ ├── longdesc.html │ ├── longdesc.txt │ ├── math-fraction.html │ ├── math-in-aria-dialog.html │ ├── math-mathvariant.html │ ├── math-menclose.html │ ├── math-mfenced.html │ ├── math-mroot.html │ ├── math-mrow.html │ ├── math-scripts.html │ ├── math-table.html │ ├── math-torture-test.html │ ├── mathml-has-display-none.html │ ├── mixed.gif │ ├── mouseover.html │ ├── multi-line.html │ ├── nested-stuff.html │ ├── nested-tables.html │ ├── offscreen-text-with-tiny-width.html │ ├── orca-for-tests.jpg │ ├── outer-iframe.html │ ├── paragraph-with-onmouseup.html │ ├── paragraphs-in-links.html │ ├── pass-fragment.html │ ├── pass.html │ ├── picture.png │ ├── poorly-labeled-form.html │ ├── pretty-links.html │ ├── print.css │ ├── projection.css │ ├── radio-checked.gif │ ├── radio-unchecked.gif │ ├── radio-with-label-and-name.html │ ├── rebased │ ├── fail.html │ └── picture2.png │ ├── regions-and-fieldsets.html │ ├── right.png │ ├── samesizearea.html │ ├── screen.css │ ├── simpleform.html │ ├── simpleheader.html │ ├── slash-test.html │ ├── slider.png │ ├── slider_h-focus.png │ ├── slider_h.png │ ├── slider_v-focus.png │ ├── slider_v.png │ ├── so.html │ ├── status-bar.html │ ├── steaks.html │ ├── table-caption.html │ ├── table-cell-links.html │ ├── tables.html │ ├── textarea.html │ ├── textattributes.html │ ├── tinymath.html │ ├── treeContracted.gif │ ├── treeContractedFocus.gif │ ├── treeExpanded.gif │ ├── treeExpandedFocus.gif │ ├── twitter-bug.html │ ├── two-combos-on-line.html │ ├── ul-no-li.html │ ├── unchecked.gif │ ├── view-classic.gif │ ├── willie-walker.gif │ └── words-with-links.html ├── tests ├── .gitignore ├── README.md ├── __init__.py ├── integration_test_wrapper.py.in ├── integration_tests │ ├── __init__.py │ ├── conftest.py │ └── test_dbus_with_orca.py ├── meson.build └── unit_tests │ ├── __init__.py │ ├── conftest.py │ ├── orca_test_context.py │ ├── orca_test_fixtures.py │ ├── test_action_presenter.py │ ├── test_ax_collection.py │ ├── test_ax_component.py │ ├── test_ax_document.py │ ├── test_ax_event_synthesizer.py │ ├── test_ax_hypertext.py │ ├── test_ax_object.py │ ├── test_ax_selection.py │ ├── test_ax_table.py │ ├── test_ax_text.py │ ├── test_ax_utilities.py │ ├── test_ax_utilities_application.py │ ├── test_ax_utilities_debugging.py │ ├── test_ax_utilities_event.py │ ├── test_ax_utilities_relation.py │ ├── test_ax_utilities_role.py │ ├── test_ax_utilities_state.py │ ├── test_ax_value.py │ ├── test_braille_presenter.py │ ├── test_bypass_mode_manager.py │ ├── test_caret_navigator.py │ ├── test_dbus_service.py │ ├── test_debugging_tools_manager.py │ ├── test_event_manager.py │ ├── test_flat_review_presenter.py │ ├── test_focus_manager.py │ ├── test_input_event_manager.py │ ├── test_learn_mode_presenter.py │ ├── test_live_region_presenter.py │ ├── test_notification_presenter.py │ ├── test_object_navigator.py │ ├── test_orca_modifier_manager.py │ ├── test_say_all_presenter.py │ ├── test_script_manager.py │ ├── test_sleep_mode_manager.py │ ├── test_speech_and_verbosity_manager.py │ ├── test_structural_navigator.py │ ├── test_system_information_presenter.py │ ├── test_table_navigator.py │ ├── test_typing_echo_presenter.py │ └── test_where_am_i_presenter.py └── tools ├── dump-focused-object.py ├── dump-tree.py ├── dump-window-events.py └── generate_dbus_documentation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/Default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/.gitlab/issue_templates/Default.md -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog-pre-2.27.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/ChangeLog-pre-2.27.1 -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- 1 | Please contact the MAINTAINERS before making changes to Orca. -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/NEWS -------------------------------------------------------------------------------- /QUICKSTART: -------------------------------------------------------------------------------- 1 | See http://wiki.gnome.org/Projects/Orca 2 | -------------------------------------------------------------------------------- /README-APPLICATION-DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/README-APPLICATION-DEVELOPERS.md -------------------------------------------------------------------------------- /README-REMOTE-CONTROLLER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/README-REMOTE-CONTROLLER.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/RELEASE-HOWTO -------------------------------------------------------------------------------- /REMOTE-CONTROLLER-COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/REMOTE-CONTROLLER-COMMANDS.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/TODO -------------------------------------------------------------------------------- /ci/build_and_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/ci/build_and_install.sh -------------------------------------------------------------------------------- /ci/container_builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/ci/container_builds.yml -------------------------------------------------------------------------------- /ci/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/ci/env.sh -------------------------------------------------------------------------------- /ci/install-python-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/ci/install-python-tools.sh -------------------------------------------------------------------------------- /ci/install_atspi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/ci/install_atspi.sh -------------------------------------------------------------------------------- /ci/prepare_translated_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/ci/prepare_translated_docs.sh -------------------------------------------------------------------------------- /ci/pull-container-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/ci/pull-container-image.sh -------------------------------------------------------------------------------- /ci/render_mallard_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/ci/render_mallard_docs.sh -------------------------------------------------------------------------------- /ci/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/ci/requirements.txt -------------------------------------------------------------------------------- /docs/meson.build: -------------------------------------------------------------------------------- 1 | install_man('orca.1') 2 | -------------------------------------------------------------------------------- /docs/orca.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/docs/orca.1 -------------------------------------------------------------------------------- /help/C/commands.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands.page -------------------------------------------------------------------------------- /help/C/commands_braille.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_braille.page -------------------------------------------------------------------------------- /help/C/commands_chat.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_chat.page -------------------------------------------------------------------------------- /help/C/commands_controlling_orca.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_controlling_orca.page -------------------------------------------------------------------------------- /help/C/commands_debugging.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_debugging.page -------------------------------------------------------------------------------- /help/C/commands_find.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_find.page -------------------------------------------------------------------------------- /help/C/commands_flat_review.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_flat_review.page -------------------------------------------------------------------------------- /help/C/commands_live_regions.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_live_regions.page -------------------------------------------------------------------------------- /help/C/commands_mouse.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_mouse.page -------------------------------------------------------------------------------- /help/C/commands_profiles.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_profiles.page -------------------------------------------------------------------------------- /help/C/commands_reading.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_reading.page -------------------------------------------------------------------------------- /help/C/commands_speech_settings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_speech_settings.page -------------------------------------------------------------------------------- /help/C/commands_structural_navigation.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_structural_navigation.page -------------------------------------------------------------------------------- /help/C/commands_table.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_table.page -------------------------------------------------------------------------------- /help/C/commands_time_date_notifications.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_time_date_notifications.page -------------------------------------------------------------------------------- /help/C/commands_where_am_i.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/commands_where_am_i.page -------------------------------------------------------------------------------- /help/C/figures/orca-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/figures/orca-logo.svg -------------------------------------------------------------------------------- /help/C/howto_documents.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_documents.page -------------------------------------------------------------------------------- /help/C/howto_flat_review.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_flat_review.page -------------------------------------------------------------------------------- /help/C/howto_forms.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_forms.page -------------------------------------------------------------------------------- /help/C/howto_key_bindings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_key_bindings.page -------------------------------------------------------------------------------- /help/C/howto_keyboard_layout.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_keyboard_layout.page -------------------------------------------------------------------------------- /help/C/howto_learn_modes.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_learn_modes.page -------------------------------------------------------------------------------- /help/C/howto_live_regions.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_live_regions.page -------------------------------------------------------------------------------- /help/C/howto_mouse_review.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_mouse_review.page -------------------------------------------------------------------------------- /help/C/howto_notifications.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_notifications.page -------------------------------------------------------------------------------- /help/C/howto_orca_find.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_orca_find.page -------------------------------------------------------------------------------- /help/C/howto_profiles.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_profiles.page -------------------------------------------------------------------------------- /help/C/howto_setting_up_orca.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_setting_up_orca.page -------------------------------------------------------------------------------- /help/C/howto_structural_navigation.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_structural_navigation.page -------------------------------------------------------------------------------- /help/C/howto_tables.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_tables.page -------------------------------------------------------------------------------- /help/C/howto_text_attributes.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_text_attributes.page -------------------------------------------------------------------------------- /help/C/howto_the_orca_modifier.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_the_orca_modifier.page -------------------------------------------------------------------------------- /help/C/howto_toggling_caps_lock.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_toggling_caps_lock.page -------------------------------------------------------------------------------- /help/C/howto_whereami.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/howto_whereami.page -------------------------------------------------------------------------------- /help/C/index.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/index.page -------------------------------------------------------------------------------- /help/C/introduction.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/introduction.page -------------------------------------------------------------------------------- /help/C/preferences.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences.page -------------------------------------------------------------------------------- /help/C/preferences_braille.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_braille.page -------------------------------------------------------------------------------- /help/C/preferences_chat.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_chat.page -------------------------------------------------------------------------------- /help/C/preferences_general.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_general.page -------------------------------------------------------------------------------- /help/C/preferences_introduction.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_introduction.page -------------------------------------------------------------------------------- /help/C/preferences_key_bindings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_key_bindings.page -------------------------------------------------------------------------------- /help/C/preferences_key_echo.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_key_echo.page -------------------------------------------------------------------------------- /help/C/preferences_pronunciation.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_pronunciation.page -------------------------------------------------------------------------------- /help/C/preferences_speech.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_speech.page -------------------------------------------------------------------------------- /help/C/preferences_spellcheck.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_spellcheck.page -------------------------------------------------------------------------------- /help/C/preferences_table_navigation.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_table_navigation.page -------------------------------------------------------------------------------- /help/C/preferences_text_attributes.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_text_attributes.page -------------------------------------------------------------------------------- /help/C/preferences_voice.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_voice.page -------------------------------------------------------------------------------- /help/C/preferences_web.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/C/preferences_web.page -------------------------------------------------------------------------------- /help/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/LINGUAS -------------------------------------------------------------------------------- /help/bg/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/bg/bg.po -------------------------------------------------------------------------------- /help/ca/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/ca/ca.po -------------------------------------------------------------------------------- /help/cs/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/cs/cs.po -------------------------------------------------------------------------------- /help/da/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/da/da.po -------------------------------------------------------------------------------- /help/de/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/de/de.po -------------------------------------------------------------------------------- /help/el/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/el/el.po -------------------------------------------------------------------------------- /help/es/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/es/es.po -------------------------------------------------------------------------------- /help/eu/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/eu/eu.po -------------------------------------------------------------------------------- /help/fa/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/fa/fa.po -------------------------------------------------------------------------------- /help/fr/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/fr/fr.po -------------------------------------------------------------------------------- /help/gl/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/gl/gl.po -------------------------------------------------------------------------------- /help/hu/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/hu/hu.po -------------------------------------------------------------------------------- /help/id/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/id/id.po -------------------------------------------------------------------------------- /help/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/meson.build -------------------------------------------------------------------------------- /help/pt_BR/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/pt_BR/pt_BR.po -------------------------------------------------------------------------------- /help/ru/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/ru/ru.po -------------------------------------------------------------------------------- /help/sl/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/sl/sl.po -------------------------------------------------------------------------------- /help/sv/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/sv/sv.po -------------------------------------------------------------------------------- /help/uk/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/help/uk/uk.po -------------------------------------------------------------------------------- /icons/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/AUTHORS -------------------------------------------------------------------------------- /icons/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/COPYING -------------------------------------------------------------------------------- /icons/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/meson.build -------------------------------------------------------------------------------- /icons/orca-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/orca-16x16.png -------------------------------------------------------------------------------- /icons/orca-22x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/orca-22x22.png -------------------------------------------------------------------------------- /icons/orca-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/orca-24x24.png -------------------------------------------------------------------------------- /icons/orca-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/orca-256x256.png -------------------------------------------------------------------------------- /icons/orca-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/orca-32x32.png -------------------------------------------------------------------------------- /icons/orca-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/orca-48x48.png -------------------------------------------------------------------------------- /icons/orca-scalable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/orca-scalable.svg -------------------------------------------------------------------------------- /icons/orca-splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/orca-splash.svg -------------------------------------------------------------------------------- /icons/orca-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/icons/orca-symbolic.svg -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/meson_options.txt -------------------------------------------------------------------------------- /orca-autostart.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/orca-autostart.desktop.in -------------------------------------------------------------------------------- /orca.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/orca.doap -------------------------------------------------------------------------------- /orca.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/orca.service -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/.gitignore -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/POTFILES.skip -------------------------------------------------------------------------------- /po/ab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ab.po -------------------------------------------------------------------------------- /po/an.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/an.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/bn_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/bn_IN.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ca@valencia.po -------------------------------------------------------------------------------- /po/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ckb.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/cy.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/de.po -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/dz.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/fur.po -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ga.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/gu.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/id.po -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/is.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/kab.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/kn.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/mai.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/mai.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), 2 | preset: 'glib', 3 | ) 4 | -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/mk.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ne.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/or.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/rw.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/sr@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/te.po -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/tg.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/ug.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/uz.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- 1 | subdir('orca') 2 | -------------------------------------------------------------------------------- /src/orca/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/.gitignore -------------------------------------------------------------------------------- /src/orca/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/__init__.py -------------------------------------------------------------------------------- /src/orca/acss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/acss.py -------------------------------------------------------------------------------- /src/orca/action_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/action_presenter.py -------------------------------------------------------------------------------- /src/orca/ax_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_collection.py -------------------------------------------------------------------------------- /src/orca/ax_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_component.py -------------------------------------------------------------------------------- /src/orca/ax_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_document.py -------------------------------------------------------------------------------- /src/orca/ax_event_synthesizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_event_synthesizer.py -------------------------------------------------------------------------------- /src/orca/ax_hypertext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_hypertext.py -------------------------------------------------------------------------------- /src/orca/ax_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_object.py -------------------------------------------------------------------------------- /src/orca/ax_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_selection.py -------------------------------------------------------------------------------- /src/orca/ax_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_table.py -------------------------------------------------------------------------------- /src/orca/ax_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_text.py -------------------------------------------------------------------------------- /src/orca/ax_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_utilities.py -------------------------------------------------------------------------------- /src/orca/ax_utilities.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_utilities.pyi -------------------------------------------------------------------------------- /src/orca/ax_utilities_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_utilities_application.py -------------------------------------------------------------------------------- /src/orca/ax_utilities_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_utilities_collection.py -------------------------------------------------------------------------------- /src/orca/ax_utilities_debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_utilities_debugging.py -------------------------------------------------------------------------------- /src/orca/ax_utilities_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_utilities_event.py -------------------------------------------------------------------------------- /src/orca/ax_utilities_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_utilities_relation.py -------------------------------------------------------------------------------- /src/orca/ax_utilities_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_utilities_role.py -------------------------------------------------------------------------------- /src/orca/ax_utilities_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_utilities_state.py -------------------------------------------------------------------------------- /src/orca/ax_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ax_value.py -------------------------------------------------------------------------------- /src/orca/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orca/backends/json_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/backends/json_backend.py -------------------------------------------------------------------------------- /src/orca/backends/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/backends/meson.build -------------------------------------------------------------------------------- /src/orca/braille.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/braille.py -------------------------------------------------------------------------------- /src/orca/braille_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/braille_generator.py -------------------------------------------------------------------------------- /src/orca/braille_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/braille_presenter.py -------------------------------------------------------------------------------- /src/orca/braille_rolenames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/braille_rolenames.py -------------------------------------------------------------------------------- /src/orca/brlmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/brlmon.py -------------------------------------------------------------------------------- /src/orca/brltablenames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/brltablenames.py -------------------------------------------------------------------------------- /src/orca/bypass_mode_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/bypass_mode_manager.py -------------------------------------------------------------------------------- /src/orca/caret_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/caret_navigator.py -------------------------------------------------------------------------------- /src/orca/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/chat.py -------------------------------------------------------------------------------- /src/orca/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/clipboard.py -------------------------------------------------------------------------------- /src/orca/cmdnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/cmdnames.py -------------------------------------------------------------------------------- /src/orca/colornames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/colornames.py -------------------------------------------------------------------------------- /src/orca/dbus_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/dbus_service.py -------------------------------------------------------------------------------- /src/orca/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/debug.py -------------------------------------------------------------------------------- /src/orca/debugging_tools_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/debugging_tools_manager.py -------------------------------------------------------------------------------- /src/orca/event_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/event_manager.py -------------------------------------------------------------------------------- /src/orca/flat_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/flat_review.py -------------------------------------------------------------------------------- /src/orca/flat_review_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/flat_review_finder.py -------------------------------------------------------------------------------- /src/orca/flat_review_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/flat_review_presenter.py -------------------------------------------------------------------------------- /src/orca/focus_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/focus_manager.py -------------------------------------------------------------------------------- /src/orca/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/generator.py -------------------------------------------------------------------------------- /src/orca/guilabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/guilabels.py -------------------------------------------------------------------------------- /src/orca/highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/highlighter.py -------------------------------------------------------------------------------- /src/orca/input_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/input_event.py -------------------------------------------------------------------------------- /src/orca/input_event_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/input_event_manager.py -------------------------------------------------------------------------------- /src/orca/keybindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/keybindings.py -------------------------------------------------------------------------------- /src/orca/keynames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/keynames.py -------------------------------------------------------------------------------- /src/orca/label_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/label_inference.py -------------------------------------------------------------------------------- /src/orca/learn_mode_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/learn_mode_presenter.py -------------------------------------------------------------------------------- /src/orca/live_region_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/live_region_presenter.py -------------------------------------------------------------------------------- /src/orca/mathsymbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/mathsymbols.py -------------------------------------------------------------------------------- /src/orca/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/meson.build -------------------------------------------------------------------------------- /src/orca/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/messages.py -------------------------------------------------------------------------------- /src/orca/mouse_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/mouse_review.py -------------------------------------------------------------------------------- /src/orca/notification_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/notification_presenter.py -------------------------------------------------------------------------------- /src/orca/object_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/object_navigator.py -------------------------------------------------------------------------------- /src/orca/object_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/object_properties.py -------------------------------------------------------------------------------- /src/orca/orca-setup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/orca-setup.ui -------------------------------------------------------------------------------- /src/orca/orca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/orca.py -------------------------------------------------------------------------------- /src/orca/orca_bin.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/orca_bin.py.in -------------------------------------------------------------------------------- /src/orca/orca_gtkbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/orca_gtkbuilder.py -------------------------------------------------------------------------------- /src/orca/orca_gui_navlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/orca_gui_navlist.py -------------------------------------------------------------------------------- /src/orca/orca_gui_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/orca_gui_prefs.py -------------------------------------------------------------------------------- /src/orca/orca_gui_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/orca_gui_profile.py -------------------------------------------------------------------------------- /src/orca/orca_i18n.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/orca_i18n.py.in -------------------------------------------------------------------------------- /src/orca/orca_modifier_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/orca_modifier_manager.py -------------------------------------------------------------------------------- /src/orca/orca_platform.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/orca_platform.py.in -------------------------------------------------------------------------------- /src/orca/phonnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/phonnames.py -------------------------------------------------------------------------------- /src/orca/pronunciation_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/pronunciation_dict.py -------------------------------------------------------------------------------- /src/orca/say_all_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/say_all_presenter.py -------------------------------------------------------------------------------- /src/orca/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/script.py -------------------------------------------------------------------------------- /src/orca/script_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/script_manager.py -------------------------------------------------------------------------------- /src/orca/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orca/scripts/apps/SeaMonkey/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/SeaMonkey/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/SeaMonkey/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/SeaMonkey/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/SeaMonkey/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/SeaMonkey/script.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/Thunderbird/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/Thunderbird/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/Thunderbird/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/Thunderbird/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/Thunderbird/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/Thunderbird/script.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/Thunderbird/spellcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/Thunderbird/spellcheck.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/evolution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/evolution/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/evolution/braille_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/evolution/braille_generator.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/evolution/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/evolution/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/evolution/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/evolution/script.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/evolution/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/evolution/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/evolution/speech_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/evolution/speech_generator.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/gajim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/gajim/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/gajim/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/gajim/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/gajim/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/gajim/script.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/gedit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/gedit/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/gedit/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/gedit/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/gedit/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/gedit/script.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/gedit/spellcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/gedit/spellcheck.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/gnome-shell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/gnome-shell/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/gnome-shell/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/gnome-shell/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/gnome-shell/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/gnome-shell/script.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/gnome-shell/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/gnome-shell/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/kwin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/kwin/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/kwin/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/kwin/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/kwin/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/kwin/script.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/kwin/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/kwin/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/notification-daemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/notification-daemon/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/notification-daemon/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/notification-daemon/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/notification-daemon/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/notification-daemon/script.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/pidgin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/pidgin/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/pidgin/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/pidgin/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/pidgin/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/pidgin/script.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/pidgin/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/pidgin/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/pidgin/speech_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/pidgin/speech_generator.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/smuxi-frontend-gnome/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/smuxi-frontend-gnome/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/smuxi-frontend-gnome/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/smuxi-frontend-gnome/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/smuxi-frontend-gnome/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/smuxi-frontend-gnome/script.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/soffice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/soffice/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/soffice/braille_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/soffice/braille_generator.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/soffice/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/soffice/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/soffice/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/soffice/script.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/soffice/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/soffice/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/soffice/speech_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/soffice/speech_generator.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/soffice/spellcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/soffice/spellcheck.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/xfwm4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/xfwm4/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/apps/xfwm4/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/xfwm4/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/apps/xfwm4/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/apps/xfwm4/script.py -------------------------------------------------------------------------------- /src/orca/scripts/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/default.py -------------------------------------------------------------------------------- /src/orca/scripts/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/sleepmode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/sleepmode/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/sleepmode/braille_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/sleepmode/braille_generator.py -------------------------------------------------------------------------------- /src/orca/scripts/sleepmode/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/sleepmode/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/sleepmode/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/sleepmode/script.py -------------------------------------------------------------------------------- /src/orca/scripts/sleepmode/speech_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/sleepmode/speech_generator.py -------------------------------------------------------------------------------- /src/orca/scripts/switcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/switcher/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/switcher/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/switcher/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/switcher/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/switcher/script.py -------------------------------------------------------------------------------- /src/orca/scripts/switcher/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/switcher/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/terminal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/terminal/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/terminal/braille_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/terminal/braille_generator.py -------------------------------------------------------------------------------- /src/orca/scripts/terminal/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/terminal/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/terminal/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/terminal/script.py -------------------------------------------------------------------------------- /src/orca/scripts/terminal/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/terminal/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/terminal/speech_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/terminal/speech_generator.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Chromium/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Chromium/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Chromium/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Chromium/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Chromium/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Chromium/script.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Chromium/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Chromium/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Gecko/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Gecko/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Gecko/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Gecko/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Gecko/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Gecko/script.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Gecko/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Gecko/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Qt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Qt/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Qt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Qt/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Qt/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Qt/script.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/Qt/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/Qt/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/WebKitGTK/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/WebKitGTK/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/WebKitGTK/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/WebKitGTK/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/WebKitGTK/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/WebKitGTK/script.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/WebKitGTK/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/WebKitGTK/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/gtk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/gtk/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/gtk/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/gtk/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/gtk/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/gtk/script.py -------------------------------------------------------------------------------- /src/orca/scripts/toolkits/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/toolkits/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/web/__init__.py -------------------------------------------------------------------------------- /src/orca/scripts/web/braille_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/web/braille_generator.py -------------------------------------------------------------------------------- /src/orca/scripts/web/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/web/meson.build -------------------------------------------------------------------------------- /src/orca/scripts/web/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/web/script.py -------------------------------------------------------------------------------- /src/orca/scripts/web/script_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/web/script_utilities.py -------------------------------------------------------------------------------- /src/orca/scripts/web/speech_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/scripts/web/speech_generator.py -------------------------------------------------------------------------------- /src/orca/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/settings.py -------------------------------------------------------------------------------- /src/orca/settings_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/settings_manager.py -------------------------------------------------------------------------------- /src/orca/sleep_mode_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/sleep_mode_manager.py -------------------------------------------------------------------------------- /src/orca/sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/sound.py -------------------------------------------------------------------------------- /src/orca/sound_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/sound_generator.py -------------------------------------------------------------------------------- /src/orca/speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/speech.py -------------------------------------------------------------------------------- /src/orca/speech_and_verbosity_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/speech_and_verbosity_manager.py -------------------------------------------------------------------------------- /src/orca/speech_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/speech_generator.py -------------------------------------------------------------------------------- /src/orca/speechdispatcherfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/speechdispatcherfactory.py -------------------------------------------------------------------------------- /src/orca/speechserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/speechserver.py -------------------------------------------------------------------------------- /src/orca/spellcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/spellcheck.py -------------------------------------------------------------------------------- /src/orca/spiel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/spiel.py -------------------------------------------------------------------------------- /src/orca/ssml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/ssml.py -------------------------------------------------------------------------------- /src/orca/structural_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/structural_navigator.py -------------------------------------------------------------------------------- /src/orca/system_information_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/system_information_presenter.py -------------------------------------------------------------------------------- /src/orca/systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/systemd.py -------------------------------------------------------------------------------- /src/orca/table_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/table_navigator.py -------------------------------------------------------------------------------- /src/orca/text_attribute_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/text_attribute_names.py -------------------------------------------------------------------------------- /src/orca/typing_echo_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/typing_echo_presenter.py -------------------------------------------------------------------------------- /src/orca/where_am_i_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/src/orca/where_am_i_presenter.py -------------------------------------------------------------------------------- /subprojects/spiel.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/subprojects/spiel.wrap -------------------------------------------------------------------------------- /test-historical/documents/column-example.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/documents/column-example.odt -------------------------------------------------------------------------------- /test-historical/documents/fruit.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/documents/fruit.ods -------------------------------------------------------------------------------- /test-historical/documents/navigator.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/documents/navigator.odt -------------------------------------------------------------------------------- /test-historical/documents/spanish.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/documents/spanish.odt -------------------------------------------------------------------------------- /test-historical/documents/table-sample.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/documents/table-sample.odt -------------------------------------------------------------------------------- /test-historical/documents/table-sample2.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/documents/table-sample2.odt -------------------------------------------------------------------------------- /test-historical/html/EpiphanyProfile/bookmarks.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/EpiphanyProfile/bookmarks.rdf -------------------------------------------------------------------------------- /test-historical/html/EpiphanyProfile/states.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/EpiphanyProfile/states.xml -------------------------------------------------------------------------------- /test-historical/html/FirefoxProfile/extensions.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/FirefoxProfile/extensions.rdf -------------------------------------------------------------------------------- /test-historical/html/FirefoxProfile/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/FirefoxProfile/prefs.js -------------------------------------------------------------------------------- /test-historical/html/GnomeWorldWideSmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/GnomeWorldWideSmall.jpg -------------------------------------------------------------------------------- /test-historical/html/abbr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/abbr.html -------------------------------------------------------------------------------- /test-historical/html/accesskeys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/accesskeys.html -------------------------------------------------------------------------------- /test-historical/html/anchors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/anchors.html -------------------------------------------------------------------------------- /test-historical/html/anchors2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/anchors2.html -------------------------------------------------------------------------------- /test-historical/html/aria-alert-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-alert-dialog.html -------------------------------------------------------------------------------- /test-historical/html/aria-alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-alert.html -------------------------------------------------------------------------------- /test-historical/html/aria-button-toggle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-button-toggle.html -------------------------------------------------------------------------------- /test-historical/html/aria-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-button.html -------------------------------------------------------------------------------- /test-historical/html/aria-checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-checkbox.html -------------------------------------------------------------------------------- /test-historical/html/aria-invalid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-invalid.html -------------------------------------------------------------------------------- /test-historical/html/aria-landmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-landmarks.html -------------------------------------------------------------------------------- /test-historical/html/aria-landmarks2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-landmarks2.html -------------------------------------------------------------------------------- /test-historical/html/aria-modal-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-modal-dialog.html -------------------------------------------------------------------------------- /test-historical/html/aria-progressbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-progressbar.html -------------------------------------------------------------------------------- /test-historical/html/aria-radiobutton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-radiobutton.html -------------------------------------------------------------------------------- /test-historical/html/aria-role-application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-role-application.html -------------------------------------------------------------------------------- /test-historical/html/aria-role-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-role-list.html -------------------------------------------------------------------------------- /test-historical/html/aria-roledescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-roledescription.html -------------------------------------------------------------------------------- /test-historical/html/aria-slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-slider.html -------------------------------------------------------------------------------- /test-historical/html/aria-sliders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-sliders.html -------------------------------------------------------------------------------- /test-historical/html/aria-spreadsheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-spreadsheet.html -------------------------------------------------------------------------------- /test-historical/html/aria-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-switch.html -------------------------------------------------------------------------------- /test-historical/html/aria-tabpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-tabpanel.html -------------------------------------------------------------------------------- /test-historical/html/aria-tabpanel2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-tabpanel2.html -------------------------------------------------------------------------------- /test-historical/html/aria-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-tree.html -------------------------------------------------------------------------------- /test-historical/html/aria-treegrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/aria-treegrid.html -------------------------------------------------------------------------------- /test-historical/html/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/back.png -------------------------------------------------------------------------------- /test-historical/html/backwards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/backwards.html -------------------------------------------------------------------------------- /test-historical/html/blockquotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/blockquotes.html -------------------------------------------------------------------------------- /test-historical/html/blogger-navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/blogger-navbar.html -------------------------------------------------------------------------------- /test-historical/html/bogus-ol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bogus-ol.html -------------------------------------------------------------------------------- /test-historical/html/broken-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/broken-list.html -------------------------------------------------------------------------------- /test-historical/html/bug-511389.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-511389.html -------------------------------------------------------------------------------- /test-historical/html/bug-517371.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-517371.html -------------------------------------------------------------------------------- /test-historical/html/bug-544771.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-544771.html -------------------------------------------------------------------------------- /test-historical/html/bug-546815.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-546815.html -------------------------------------------------------------------------------- /test-historical/html/bug-554616.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-554616.html -------------------------------------------------------------------------------- /test-historical/html/bug-555055.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-555055.html -------------------------------------------------------------------------------- /test-historical/html/bug-556470.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-556470.html -------------------------------------------------------------------------------- /test-historical/html/bug-567984.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-567984.html -------------------------------------------------------------------------------- /test-historical/html/bug-570757.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-570757.html -------------------------------------------------------------------------------- /test-historical/html/bug-577239.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-577239.html -------------------------------------------------------------------------------- /test-historical/html/bug-591351-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-591351-1.html -------------------------------------------------------------------------------- /test-historical/html/bug-591592.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-591592.html -------------------------------------------------------------------------------- /test-historical/html/bug-591807.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-591807.html -------------------------------------------------------------------------------- /test-historical/html/bug-592383.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/bug-592383.html -------------------------------------------------------------------------------- /test-historical/html/button-in-link-with-position-relative-on-focus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/button-in-link-with-position-relative-on-focus.html -------------------------------------------------------------------------------- /test-historical/html/canvas-fallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/canvas-fallback.html -------------------------------------------------------------------------------- /test-historical/html/checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/checked.gif -------------------------------------------------------------------------------- /test-historical/html/clickable-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/clickable-anchor.html -------------------------------------------------------------------------------- /test-historical/html/clickable-text-change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/clickable-text-change.html -------------------------------------------------------------------------------- /test-historical/html/clickable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/clickable.html -------------------------------------------------------------------------------- /test-historical/html/cloud-nightmare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/cloud-nightmare.html -------------------------------------------------------------------------------- /test-historical/html/combobox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/combobox.html -------------------------------------------------------------------------------- /test-historical/html/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/common.css -------------------------------------------------------------------------------- /test-historical/html/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/common.js -------------------------------------------------------------------------------- /test-historical/html/containers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/containers.html -------------------------------------------------------------------------------- /test-historical/html/descriptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/descriptions.html -------------------------------------------------------------------------------- /test-historical/html/dev-accessibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/dev-accessibility.html -------------------------------------------------------------------------------- /test-historical/html/display-table-cell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/display-table-cell.html -------------------------------------------------------------------------------- /test-historical/html/emoji.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/emoji.html -------------------------------------------------------------------------------- /test-historical/html/empty-block-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/empty-block-link.html -------------------------------------------------------------------------------- /test-historical/html/empty-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/empty-heading.html -------------------------------------------------------------------------------- /test-historical/html/empty-link-and-line-break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/empty-link-and-line-break.html -------------------------------------------------------------------------------- /test-historical/html/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/empty.gif -------------------------------------------------------------------------------- /test-historical/html/entries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/entries.html -------------------------------------------------------------------------------- /test-historical/html/fail-fragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/fail-fragment.html -------------------------------------------------------------------------------- /test-historical/html/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/fail.html -------------------------------------------------------------------------------- /test-historical/html/fb-stuck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/fb-stuck.html -------------------------------------------------------------------------------- /test-historical/html/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/fieldset.html -------------------------------------------------------------------------------- /test-historical/html/focused-link-stuck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/focused-link-stuck.html -------------------------------------------------------------------------------- /test-historical/html/fraction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/fraction.svg -------------------------------------------------------------------------------- /test-historical/html/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/gear.png -------------------------------------------------------------------------------- /test-historical/html/heading-loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/heading-loop.html -------------------------------------------------------------------------------- /test-historical/html/heading-section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/heading-section.html -------------------------------------------------------------------------------- /test-historical/html/heading-with-child-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/heading-with-child-text.html -------------------------------------------------------------------------------- /test-historical/html/headings-blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/headings-blank.html -------------------------------------------------------------------------------- /test-historical/html/headings-in-divs-in-links-in-list-items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/headings-in-divs-in-links-in-list-items.html -------------------------------------------------------------------------------- /test-historical/html/hidden-float-repeat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/hidden-float-repeat.html -------------------------------------------------------------------------------- /test-historical/html/hidden-label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/hidden-label.html -------------------------------------------------------------------------------- /test-historical/html/hidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/hidden.html -------------------------------------------------------------------------------- /test-historical/html/htmlpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/htmlpage.html -------------------------------------------------------------------------------- /test-historical/html/iframes-inside-inline-block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/iframes-inside-inline-block.html -------------------------------------------------------------------------------- /test-historical/html/iframes-inside-inline-block2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/iframes-inside-inline-block2.html -------------------------------------------------------------------------------- /test-historical/html/image-stuck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/image-stuck.html -------------------------------------------------------------------------------- /test-historical/html/image-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/image-test.html -------------------------------------------------------------------------------- /test-historical/html/imagelink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/imagelink.html -------------------------------------------------------------------------------- /test-historical/html/images-in-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/images-in-links.html -------------------------------------------------------------------------------- /test-historical/html/images-in-table-and-floating-div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/images-in-table-and-floating-div.html -------------------------------------------------------------------------------- /test-historical/html/inline-block-spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/inline-block-spans.html -------------------------------------------------------------------------------- /test-historical/html/inner-iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/inner-iframe.html -------------------------------------------------------------------------------- /test-historical/html/input-type-number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/input-type-number.html -------------------------------------------------------------------------------- /test-historical/html/java-sun-com.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/java-sun-com.html -------------------------------------------------------------------------------- /test-historical/html/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/left.png -------------------------------------------------------------------------------- /test-historical/html/letters.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/letters.gif -------------------------------------------------------------------------------- /test-historical/html/linebreak-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/linebreak-test.html -------------------------------------------------------------------------------- /test-historical/html/lines-in-pre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/lines-in-pre.html -------------------------------------------------------------------------------- /test-historical/html/link-child-of-body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/link-child-of-body.html -------------------------------------------------------------------------------- /test-historical/html/link-in-pre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/link-in-pre.html -------------------------------------------------------------------------------- /test-historical/html/link-in-quotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/link-in-quotes.html -------------------------------------------------------------------------------- /test-historical/html/link-position-relative-on-focus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/link-position-relative-on-focus.html -------------------------------------------------------------------------------- /test-historical/html/link-with-child-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/link-with-child-text.html -------------------------------------------------------------------------------- /test-historical/html/list-with-anchors-and-hyphens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/list-with-anchors-and-hyphens.html -------------------------------------------------------------------------------- /test-historical/html/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/lists.html -------------------------------------------------------------------------------- /test-historical/html/lists2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/lists2.html -------------------------------------------------------------------------------- /test-historical/html/longdesc-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/longdesc-content.html -------------------------------------------------------------------------------- /test-historical/html/longdesc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/longdesc.html -------------------------------------------------------------------------------- /test-historical/html/longdesc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/longdesc.txt -------------------------------------------------------------------------------- /test-historical/html/math-fraction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/math-fraction.html -------------------------------------------------------------------------------- /test-historical/html/math-in-aria-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/math-in-aria-dialog.html -------------------------------------------------------------------------------- /test-historical/html/math-mathvariant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/math-mathvariant.html -------------------------------------------------------------------------------- /test-historical/html/math-menclose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/math-menclose.html -------------------------------------------------------------------------------- /test-historical/html/math-mfenced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/math-mfenced.html -------------------------------------------------------------------------------- /test-historical/html/math-mroot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/math-mroot.html -------------------------------------------------------------------------------- /test-historical/html/math-mrow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/math-mrow.html -------------------------------------------------------------------------------- /test-historical/html/math-scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/math-scripts.html -------------------------------------------------------------------------------- /test-historical/html/math-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/math-table.html -------------------------------------------------------------------------------- /test-historical/html/math-torture-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/math-torture-test.html -------------------------------------------------------------------------------- /test-historical/html/mathml-has-display-none.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/mathml-has-display-none.html -------------------------------------------------------------------------------- /test-historical/html/mixed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/mixed.gif -------------------------------------------------------------------------------- /test-historical/html/mouseover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/mouseover.html -------------------------------------------------------------------------------- /test-historical/html/multi-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/multi-line.html -------------------------------------------------------------------------------- /test-historical/html/nested-stuff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/nested-stuff.html -------------------------------------------------------------------------------- /test-historical/html/nested-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/nested-tables.html -------------------------------------------------------------------------------- /test-historical/html/offscreen-text-with-tiny-width.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/offscreen-text-with-tiny-width.html -------------------------------------------------------------------------------- /test-historical/html/orca-for-tests.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/orca-for-tests.jpg -------------------------------------------------------------------------------- /test-historical/html/outer-iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/outer-iframe.html -------------------------------------------------------------------------------- /test-historical/html/paragraph-with-onmouseup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/paragraph-with-onmouseup.html -------------------------------------------------------------------------------- /test-historical/html/paragraphs-in-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/paragraphs-in-links.html -------------------------------------------------------------------------------- /test-historical/html/pass-fragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/pass-fragment.html -------------------------------------------------------------------------------- /test-historical/html/pass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/pass.html -------------------------------------------------------------------------------- /test-historical/html/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/picture.png -------------------------------------------------------------------------------- /test-historical/html/poorly-labeled-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/poorly-labeled-form.html -------------------------------------------------------------------------------- /test-historical/html/pretty-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/pretty-links.html -------------------------------------------------------------------------------- /test-historical/html/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/print.css -------------------------------------------------------------------------------- /test-historical/html/projection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/projection.css -------------------------------------------------------------------------------- /test-historical/html/radio-checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/radio-checked.gif -------------------------------------------------------------------------------- /test-historical/html/radio-unchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/radio-unchecked.gif -------------------------------------------------------------------------------- /test-historical/html/radio-with-label-and-name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/radio-with-label-and-name.html -------------------------------------------------------------------------------- /test-historical/html/rebased/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/rebased/fail.html -------------------------------------------------------------------------------- /test-historical/html/rebased/picture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/rebased/picture2.png -------------------------------------------------------------------------------- /test-historical/html/regions-and-fieldsets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/regions-and-fieldsets.html -------------------------------------------------------------------------------- /test-historical/html/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/right.png -------------------------------------------------------------------------------- /test-historical/html/samesizearea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/samesizearea.html -------------------------------------------------------------------------------- /test-historical/html/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/screen.css -------------------------------------------------------------------------------- /test-historical/html/simpleform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/simpleform.html -------------------------------------------------------------------------------- /test-historical/html/simpleheader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/simpleheader.html -------------------------------------------------------------------------------- /test-historical/html/slash-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/slash-test.html -------------------------------------------------------------------------------- /test-historical/html/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/slider.png -------------------------------------------------------------------------------- /test-historical/html/slider_h-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/slider_h-focus.png -------------------------------------------------------------------------------- /test-historical/html/slider_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/slider_h.png -------------------------------------------------------------------------------- /test-historical/html/slider_v-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/slider_v-focus.png -------------------------------------------------------------------------------- /test-historical/html/slider_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/slider_v.png -------------------------------------------------------------------------------- /test-historical/html/so.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/so.html -------------------------------------------------------------------------------- /test-historical/html/status-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/status-bar.html -------------------------------------------------------------------------------- /test-historical/html/steaks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/steaks.html -------------------------------------------------------------------------------- /test-historical/html/table-caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/table-caption.html -------------------------------------------------------------------------------- /test-historical/html/table-cell-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/table-cell-links.html -------------------------------------------------------------------------------- /test-historical/html/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/tables.html -------------------------------------------------------------------------------- /test-historical/html/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/textarea.html -------------------------------------------------------------------------------- /test-historical/html/textattributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/textattributes.html -------------------------------------------------------------------------------- /test-historical/html/tinymath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/tinymath.html -------------------------------------------------------------------------------- /test-historical/html/treeContracted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/treeContracted.gif -------------------------------------------------------------------------------- /test-historical/html/treeContractedFocus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/treeContractedFocus.gif -------------------------------------------------------------------------------- /test-historical/html/treeExpanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/treeExpanded.gif -------------------------------------------------------------------------------- /test-historical/html/treeExpandedFocus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/treeExpandedFocus.gif -------------------------------------------------------------------------------- /test-historical/html/twitter-bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/twitter-bug.html -------------------------------------------------------------------------------- /test-historical/html/two-combos-on-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/two-combos-on-line.html -------------------------------------------------------------------------------- /test-historical/html/ul-no-li.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/ul-no-li.html -------------------------------------------------------------------------------- /test-historical/html/unchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/unchecked.gif -------------------------------------------------------------------------------- /test-historical/html/view-classic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/view-classic.gif -------------------------------------------------------------------------------- /test-historical/html/willie-walker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/willie-walker.gif -------------------------------------------------------------------------------- /test-historical/html/words-with-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/test-historical/html/words-with-links.html -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_test_wrapper.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/integration_test_wrapper.py.in -------------------------------------------------------------------------------- /tests/integration_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/integration_tests/conftest.py -------------------------------------------------------------------------------- /tests/integration_tests/test_dbus_with_orca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/integration_tests/test_dbus_with_orca.py -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/meson.build -------------------------------------------------------------------------------- /tests/unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/conftest.py -------------------------------------------------------------------------------- /tests/unit_tests/orca_test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/orca_test_context.py -------------------------------------------------------------------------------- /tests/unit_tests/orca_test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/orca_test_fixtures.py -------------------------------------------------------------------------------- /tests/unit_tests/test_action_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_action_presenter.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_collection.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_component.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_document.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_event_synthesizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_event_synthesizer.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_hypertext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_hypertext.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_object.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_selection.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_table.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_text.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_utilities.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_utilities_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_utilities_application.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_utilities_debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_utilities_debugging.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_utilities_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_utilities_event.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_utilities_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_utilities_relation.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_utilities_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_utilities_role.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_utilities_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_utilities_state.py -------------------------------------------------------------------------------- /tests/unit_tests/test_ax_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_ax_value.py -------------------------------------------------------------------------------- /tests/unit_tests/test_braille_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_braille_presenter.py -------------------------------------------------------------------------------- /tests/unit_tests/test_bypass_mode_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_bypass_mode_manager.py -------------------------------------------------------------------------------- /tests/unit_tests/test_caret_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_caret_navigator.py -------------------------------------------------------------------------------- /tests/unit_tests/test_dbus_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_dbus_service.py -------------------------------------------------------------------------------- /tests/unit_tests/test_debugging_tools_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_debugging_tools_manager.py -------------------------------------------------------------------------------- /tests/unit_tests/test_event_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_event_manager.py -------------------------------------------------------------------------------- /tests/unit_tests/test_flat_review_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_flat_review_presenter.py -------------------------------------------------------------------------------- /tests/unit_tests/test_focus_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_focus_manager.py -------------------------------------------------------------------------------- /tests/unit_tests/test_input_event_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_input_event_manager.py -------------------------------------------------------------------------------- /tests/unit_tests/test_learn_mode_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_learn_mode_presenter.py -------------------------------------------------------------------------------- /tests/unit_tests/test_live_region_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_live_region_presenter.py -------------------------------------------------------------------------------- /tests/unit_tests/test_notification_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_notification_presenter.py -------------------------------------------------------------------------------- /tests/unit_tests/test_object_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_object_navigator.py -------------------------------------------------------------------------------- /tests/unit_tests/test_orca_modifier_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_orca_modifier_manager.py -------------------------------------------------------------------------------- /tests/unit_tests/test_say_all_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_say_all_presenter.py -------------------------------------------------------------------------------- /tests/unit_tests/test_script_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_script_manager.py -------------------------------------------------------------------------------- /tests/unit_tests/test_sleep_mode_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_sleep_mode_manager.py -------------------------------------------------------------------------------- /tests/unit_tests/test_speech_and_verbosity_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_speech_and_verbosity_manager.py -------------------------------------------------------------------------------- /tests/unit_tests/test_structural_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_structural_navigator.py -------------------------------------------------------------------------------- /tests/unit_tests/test_system_information_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_system_information_presenter.py -------------------------------------------------------------------------------- /tests/unit_tests/test_table_navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_table_navigator.py -------------------------------------------------------------------------------- /tests/unit_tests/test_typing_echo_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_typing_echo_presenter.py -------------------------------------------------------------------------------- /tests/unit_tests/test_where_am_i_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tests/unit_tests/test_where_am_i_presenter.py -------------------------------------------------------------------------------- /tools/dump-focused-object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tools/dump-focused-object.py -------------------------------------------------------------------------------- /tools/dump-tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tools/dump-tree.py -------------------------------------------------------------------------------- /tools/dump-window-events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tools/dump-window-events.py -------------------------------------------------------------------------------- /tools/generate_dbus_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/orca/HEAD/tools/generate_dbus_documentation.py --------------------------------------------------------------------------------