Reinstated translation; removed Accessibility_Registry.server from dist
[platform/core/uifw/at-spi2-atk.git] / ChangeLog
index fb1097f..5076016 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,495 @@
+2006-02-20  Bill Haneman <billh@gnome.org>
+
+       * configure.in: Rev to 1.7.5.
+       Reinstate localization of this module.  Thanks for Rodney
+       Dawes for fixing my patch.
+
+       * registryd/Makefile.am: Remove Accessibility_Registry.server 
+       from dist, since it needs to be re-created at configure time.
+       Fixes bug #3331484.
+       
+2006-01-31  Bill Haneman <billh@gnome.org>
+
+       * configure.in: Rev to 1.7.4 (to include build fix below).
+       
+       * idl/Makefile.am: Include Selector.idl in dist.
+       Fixes bug #328859.
+
+       * cspi/spi_event.c:
+       (cspi_internal_event_get_object): Handle case where
+       "object" isn't present, i.e. CORBA_TC_Object doesn't match
+       the EventDetails data.
+       (cspi_internal_event_get_text): Handle NULL string.
+       (cspi_internal_event_get_rect): Handle missing/empty rect
+       data, Accessibility_TC_RectBounds doesn't match any_data.
+
+2006-01-30  Bill Haneman <billh@gnome.org>
+
+       * Released 1.7.3.
+
+       * atk-bridge/bridge.c:
+       (spi_atk_emit_eventv): Check for SPI_REMOTE_OBJECT 
+       interface and use that when instantiating a new source
+       accessible.  Better fix for bug #321814.
+       
+2006-01-27  Bill Haneman <billh@gnome.org>
+
+       * idl/Accessibility_Selector.idl: Added to the cvs repository.
+
+       * configure.in: Revved to 1.7.3.
+       
+2006-01-17  Bill Haneman <billh@gnome.org>
+
+       * configure.in: Revved to 1.7.2, re-dist to include docs.
+
+2006-01-09  Bill Haneman <billh@gnome.org>
+
+       * configure.in: Removed po/Makefile.in inclusion, we do not need
+       it.  Revved to 1.7.0.
+
+       * idl/Accessibility.idl: Improved documentation here, and for all
+       IDL in the 'GNOME::Accessibility' namespace.
+
+       * idl/Accessibility_Accessible.idl:
+       (LOCALE_TYPE): Added enum.
+       (AttributeSet): New, for returning multiple name/value attribute pairs.
+       (RoleSet): New, sequence of Roles, to be used in upcoming
+       Collection API.
+       (getAttributes): New API, allows retrieval of name/value pair
+       annotations for all kinds of Accessible objects.  C.f. 
+       Text:getAttributes, which is only for typographic/textual/semantic tags in
+       text content.
+       (getApplication): New, retrieves the host/containing Application
+       instance for an object (without having to walk up the whole tree).
+
+       * idl/Accessibility_Component.idl:
+       (getAlpha): New method, returns the alpha blending (aka 'opacity')
+       value for an object.  An alpha of 1.0 is fully opaque, 0.0 is
+       fully transparent.
+
+       * idl/Accessibility_Event.idl:
+       (EventDetails): New struct definition, for encapsulating
+       commonly-queried information about emitted events.  The use of
+       this structure in emitted events (in the 'any' member of
+       Accessibility_Event) should greatly reduce the number of
+       client-server roundtrips necessary.
+
+       * idl/Accessibility_Image.idl:
+       (imageLocale): New, a readonly attribute indicating the POSIX 
+       LC_MESSAGES locale of the image and associated Alt/descriptive
+       text.
+
+       * idl/Accessibility_Relation.idl:
+       (RELATION_PARENT_WINDOW_OF): Include, as complement to
+       RELATION_POPUP_FOR.
+
+       * idl/Accessibility_Role.idl:
+       (ROLE_ENTRY, ROLE_CHART, ROLE_CAPTION, ROLE_DOCUMENT_FRAME)
+       (ROLE_HEADING, ROLE_PAGE, ROLE_SECTION): New roles for
+       complex document and form support.
+
+       * idl/Accessibility_State.idl:
+       (STATE_REQUIRED, STATE_TRUNCATED, STATE_ANIMATED)
+       (STATE_INVALID_ENTRY, STATE_SUPPORTS_AUTOCOMPLETION)
+       (STATE_SELECTABLE_TEXT, STATE_IS_DEFAULT): New states,
+       for support of complex documents and forms.
+
+       * idl/Accessibility_StreamableContent.idl:
+       (SeekType, IOError, NotSupported, NoPermission): New enum and exceptions, to
+       allow old bonobo-stream interfaces to be deprecated in the next
+       release.
+
+       * idl/Accessibility_Text.idl:
+       (getAttributeValue): New method, allows query-by-name of single
+       attributes.
+
+       * libspi/accessible.c:
+       Added support for new roles.  Implemented new methods
+       (impl_accessibility_accessible_get_application): New
+       (impl_accessibility_accessible_get_attributes): New
+
+       * libspi/component.c:
+       (impl_accessibility_component_get_alpha): New.
+
+       * libspi/image.c:
+       (impl_accessibility_image_get_locale): New.
+
+       * libspi/relation.c: Added support for new relation type.
+
+       * libspi/stateset.c: Added support for new state types.
+
+       * libspi/text.c: 
+       (impl_getAttributeValue): New.
+       
+       * libspi/util.c:
+       New prototypes for private methods
+       spi_init_any_nil,
+       spi_init_any_object, spi_init_any_string,
+       spi_init_any_rect.
+       
+       * libspi/spi_event.c: 
+       Use EventDetails in the event emission methods.
+
+       * cspi/spi-private.h:
+       (cspi_role_from_spi_role): Expose this adapter method, since
+       we need it in the bridge (see below).
+
+       * cspi/spi.h:
+       (AccessibleEvent_getSourceName):
+       (AccessibleEvent_getSourceRole):
+       (AccessibleEvent_getSourceApplication):
+       (AccessibleEvent_getSourceDetails):
+       New methods for interrogating/demarshalling
+       event details (i.e. source's accessible name, role, 
+       and host app).
+
+       * cspi/spi_accessible.c: Use cspi_role_from_spi_role.
+       Make use of the new EventDetails struct in events, if present.
+       (AccessibleEvent_getSourceName)
+       (AccessibleEvent_getSourceRole)
+       (AccessibleEvent_getSourceApplication)
+       (AccessibleEvent_getSourceDetails): Implement the newly exposed
+       methods from spi.h.
+       (Accessible_getAttributes): New, wraps
+       Accessibility_Accessible_getAttributes.
+       (Accessible_getHostApplication): New, wraps
+       Accessibility_Accessible_getApplication.
+
+       * cspi/spi_image.c:
+       (AccessibleImage_getImageLocale): New wrapper for
+       Accessibility_Image_get_imageLocale.
+
+       * cspi/spi_component.c:
+       (AccessibleComponent_getAlpha): New wrapper for
+       Accessibility_Component_getAlpha.
+       
+       * atk-bridge/bridge.c:
+       Use new prototyped for init_any methods.
+       (spi_atk_bridge_init_nil, spi_atk_bridge_init_object)
+       (spi_atk_bridge_init_string, spi_atk_bridge_init_rect)
+       (spi_atk_bridge_init_base): Wrappers
+       for spi_init_any_* methods, due to refactor; include extended
+       information in the Accessibility_EventDetails struct, for instance
+       accessible-name, Role, and containing Application.
+
+       * registryd/registry.c: 
+       Use new event emission (with EventDetails).
+       
+       * registryd/deviceeventcontroller.c:
+       Use new event emission (with EventDetails).
+
+2006-01-09  Kjartan Maraas <kmaraas@gnome.org>
+
+       * configure.in: Generate po/Makefile.in
+       * cspi/spi_main.c: Add #ifdef PRINT_LEAKS around a function
+       * cspi/spi_streamablecontent.c: 
+       (accessible_bonobo_stream_client_seek),
+       (AccessibleStreamableContent_seek): Remove unused vars.
+       * libspi/application.c: Missing header.
+       * libspi/text.c: (impl_getDefaultAttributes): Unused vars
+       * login-helper/login-helper.c: (login_helper_finalize),
+       (login_helper_init): Remove unused stuff
+       * registryd/deviceeventcontroller.c: (spi_dec_replace_map_keysym),
+       (spi_dec_init_mouse_listener), (is_key_released): Remove unused vars
+       and surround some with #ifdef GRAB_BUTTON.
+       * test/event-listener-test.c: (main), (report_event),
+       (report_caret_event), (report_detail_event),
+       (report_detail1_event), (report_bounds_event), (report_text_event),
+       (report_text_selection_event),
+       (report_active_descendant_changed_event),
+       (report_children_changed_event), (report_name_changed_event),
+       (report_description_changed_event), (report_parent_changed_event),
+       (report_window_event), (report_table_summary_event),
+       (report_table_header_event), (report_table_caption_event),
+       (report_table_row_description_event),
+       (report_table_column_description_event), (timing_test_event):
+       Remove a bunch of unused variables and fix a slew of format specifiers
+       * test/key-listener-test.c: (report_all_key_event): Format specifier
+       * test/keypad-test.c: (print_key_event): Same
+       * test/login-helper-server-test.c: (main): Include gtkmain.h and remove
+       unused var.
+       * test/screen-review-test.c: (main), (print_chunk_debug),
+       (review_buffer_get_text_chunk), (debug_chunk_list),
+       (string_guess_clip), (text_chunk_get_clipped_string),
+       (text_chunk_list_to_string), (get_screen_review_line_at):
+       Remove unused variables and fix format specifiers.
+       * test/simple-at.c: (report_text_event): Format specifier fix.
+       * test/stress-test.c: (main): Remove unused var.
+
+2005-12-29  Abel Cheung  <maddog@linuxhall.org>
+
+       * configure.in: Add zh_HK, zh_TW to ALL_LINGUAS
+       (yes I know that's useless)
+
+2005-11-20  Theppitak Karoonboonyanan  <thep@linux.thai.net>
+
+       * configure.in: Added "th" (Thai) to ALL_LINGUAS.
+
+2005-11-17  Michael Meeks  <michael.meeks@novell.com>
+
+       * atk-bridge/bridge.c (spi_atk_emit_eventv): 
+       urgh-fix embarassing typo.
+
+2005-11-16  Michael Meeks  <michael.meeks@novell.com>
+
+       * atk-bridge/bridge.c (spi_atk_emit_eventv):
+       do a faster, less problematic _unref call on this local
+       object, rather than a slower (potentially cross-thread
+       complicated) CORBA call.
+
+2005-11-02  Kjartan Maraas  <kmaraas@gnome.org>
+
+       * atk-bridge/bridge.c: (spi_atk_bridge_signal_listener):
+       * cspi/spi_streamablecontent.c: (AccessibleStreamableContent_seek):
+       * registryd/deviceeventcontroller.c:
+       (spi_controller_notify_mouselisteners),
+       (impl_generate_keyboard_event):
+       * test/screen-review-test.c: (chunk_bounds_within):
+       * test/test-simple.c: (test_desktop): Remove some unused code
+       and fix compiler warnings. Closes bug #320049.
+
+2005-10-27 Bill Haneman <bill.haneman@sun.com>
+
+       * registryd/deviceeventcontroller.c:
+       (spi_controller_notify_keylisteners): Check
+       to make sure the event listener has requested 'preemptive'
+       status before pre-empting an event.
+       
+2005-08-29 Bill Haneman <bill.haneman@sun.com>
+
+       * configure.in, README, NEWS: Release 1.6.5.
+       
+2005-07-25  Matthias Clasen  <mclasen@redhat.com>
+
+       * test/window-listener-test.c: Fix a printf
+       format error.  (#169453)
+
+2005-07-15  Bill Haneman <bill.haneman@sun.com>
+
+       * tests/test-simple.c: 
+       (key_listener_cb): Ensure that the keystring is dup'ed instead of
+       relying on the old string from the key event hanging around after
+       the event handler returns.  Fixes broken 'make check'.
+       
+2005-06-06  Swapnil Hajare  <dreamil@gmail.com>
+
+       * Added Marathi (mr_IN) translations.
+
+2005-05-27  Kjartan Maraas  <kmaraas@gnome.org>
+
+       * cspi/bonobo/cspi-bonobo-listener.c:
+       (cspi_event_list_remove_by_cb): Fix the build.
+
+2005-05-26  Michael Meeks  <michael.meeks@novell.com>
+
+       * cspi/bonobo/cspi-bonobo-listener.c
+       (cspi_event_list_remove_by_cb): actually filter by callback.
+
+2005-05-25  Bill Haneman <bill.haneman@sun.com>
+
+       * registryd/registry.c (remove_listener_cb):
+       Make deregistration filter rules match the event emission rules.
+
+2005-05-25  Michael Meeks  <michael.meeks@novell.com>
+
+       * registryd/registry.c (remove_listener_cb),
+       (impl_accessibility_registry_deregister_global_event_listener),
+       (impl_accessibility_registry_deregister_global_event_listener_all): 
+       pass a closure to the remove callback to filter listeners more
+       accurately on remove.
+
+2005-04-05  Bill Haneman <bill.haneman@sun.com>
+
+       * configure.in: Revved to 1.6.4.
+       Remember to put quotes around XEVIE_LIBS assignment.
+       Fixed one of tertiary AC_CHECK_HEADER tests for XEvie.
+       Fixes bug #303694.
+
+       * tests/event-listener-test.c: Tweaked the tests - more detail
+       from caret events, and some interrogation of AccessibleText APIs.
+       Commented-out the bounds-changed events by default, since they can
+       be very noisy.
+
+2005-04-14  Kjartan Maraas  <kmaraas@gnome.org>
+
+       * atk-bridge/bridge.c: (spi_atk_emit_eventv): Plug a leak.
+       * cspi/bonobo/cspi-bonobo-listener.c: (cspi_device_event):
+       Same here. Closes bug #167806
+
+2005-04-05  Bill Haneman <bill.haneman@sun.com>
+
+       * atk-bridge/bridge.c: 
+       (spi_atk_bridge_signal_listener):
+       Free the any._value if any._release is TRUE,
+       since the ORB won't do it for us in this case
+       [because this method is not a skel].
+       Fix for bug #168679.    
+       
+2005-03-30  Steve Murphy  <murf@e-tools.com>
+
+       * configure.in: Added "rw" to ALL_LINGUAS.
+
+2005-03-29  Bill Haneman <bill.haneman@sun.com>
+
+       * configure.in: Improved check for HAVE_XEVIE, to detect 
+       presence on XOrg, where -lXevie is a separate library.
+
+2005-03-08  Bill Haneman <bill.haneman@sun.com>
+
+       * configure.in, NEWS, README: Revved to 1.6.3.
+
+2005-02-16  Adi Attar  <aattar@cvs.gnome.org>
+
+       * configure.in: Added "xh" to ALL_LINGUAS.
+
+2005-02-07  Bill Haneman <bill.haneman@sun.com>
+
+       * atk-bridge/bridge.c: 
+       (atk_bridge_init): Added missing NULL in g_strconcat(),
+       also check for symlink before logging to 
+       insecure directory.  Thanks to meissner@suse.de.
+
+2005-01-25  Padraig O'Briain <padraig.obriain@sun.com>
+
+       * tests/login-helper-server-test.c: Add return call to main
+       function. Patch from Chris Lahey. Fixes bug #165129.
+
+2004-12-20  Padraig O'Briain <padraig.obriain@sun.com>
+
+       * cspi/spi.h: Add description for SPI_RELATION_SUBWINDOW_OF.
+
+2004-12-09  Bill Haneman <billh@gnome.org>
+
+       * registryd/registry-main.c:
+       Added #define <string.h> for strrchr. (bug 160862).
+       Thanks to Vincent Berger for catching.
+       
+2004-12-09  Padraig O'Briain <padraig.obriain@sun.com>
+
+       * atk-bridge/bridge.c (spi_atk_get_registry): Do not attempt to
+       restart registry process if the registry process is found to have died
+       and the current process is exiting.
+       (spi_atk_bridge_exit_func): Do not attempt to deregister the
+       application if the registry process has died.
+       (spi_atk_emit_eventv): Return if call to spi_atk_get_registry
+       does not return a registry object.
+       (spi_atk_tidy_windows): Give up if the registry process has died.
+
+       This fixes problems with hangs and crashes when logging out.
+
+2004-12-03  Padraig O'Briain <padraig.obriain@sun.com>
+
+       * registryd/desktop.c: Add checking that we are not exiting before
+       calling spi_desktop_remove_application in 
+       abnormal_application_termination. Fix for bug #152147.
+
+2004-12-02  Bill Haneman <billh@gnome.org>
+
+       * configure.in, NEWS, README: Revved to 1.6.1.
+       
+       Patch from Padraig O'Briain <padraig.obriain@sun.com>
+       * atk-bridge/bridge.c:
+       (atk_bridge_init): Save the pid when we start, to detect forks.
+       (spi_atk_bridge_exit_func): Don't call the cleanup routines
+       if we're in a forked pid.
+       
+2004-10-09  Bill Haneman <billh@gnome.org>
+
+       * idl/Accessibility_LoginHelper.idl:
+       Improved inline documentation.
+
+2004-10-02  Jesus Bravo Alvarez  <suso@trasno.net>
+
+       * configure.in: Added gl (Galician) to ALL_LINGUAS
+
+2004-09-30  Kjartan Maraas  <kmaraas@gnome.org>
+
+       * libspi/accessible.c:
+       (impl_accessibility_accessible_get_role_name),
+       (impl_accessibility_accessible_get_local_role_name):
+       NULL vs. 0 cleanups.
+       * libspi/component.c:
+       (impl_accessibility_component_get_accessible_at_point):
+       Same here.
+       * libspi/eventlistener.c: (spi_event_listener_new):
+       ANSIfication.
+       * libspi/stateset.c: (impl_compare): More of the same
+       * libspi/table.c: (impl_getRowDescription): Again.
+       * registryd/desktop.c: (spi_atk_desktop_get_type): Same
+       * registryd/deviceeventcontroller.c: (spi_clear_error_state),
+       (impl_generate_keyboard_event): Same.
+       * registryd/registry-main.c: (main): Same
+       * test/event-listener-test.c: (test_exit): Same
+       * test/keysynth-demo.c: (scan_state), (create_vkbd): Same
+       * test/keysynth-test.c: (test_key_synthesis): Same
+       * test/login-helper-server-test.c: (main): Fix warning.
+       * test/screen-review-test.c: (test_exit): Fix include.
+       * test/simple-at.c: (simple_at_exit), (_festival_init):
+       ANSIfication.
+
+2004-09-13  Padraig O'Briain <padraig.vriain@sun.com>
+
+       * configure.in, NEWS, README: Revved to 1.6.0.
+
+2004-09-12  Bill Haneman <bill.haneman@sun.com>
+
+       * configure.in: Rev and re-dist, since the 1.5.4 tarball
+       was missing the HTML docs.
+
+2004-09-12  Tomasz Kłoczko <kloczek@pld.org.pl>
+
+       * configure.in: only cleanups:
+       - better looking PKG_CHECK_MODULES() output,
+       - justification,
+       - declare in one common place required versions of other tools using
+         m4_define().
+
+2004-09-11  J.H.M. Dassen (Ray) <jdassen@debian.org>
+
+       * configure.in: libspi/accessible.c uses ATK_ROLE_EMBEDDED
+       (unconditionally) which was introduced in ATK 1.7.2. Bumped the
+       required ATK version accordingly.
+
+2004-09-03 Bill Haneman    <bill.haneman@sun.com>
+
+       * cspi/bonobo/cspi-bonobo.c:
+       (cspi_display_name): Fix C99ism.
+       * atk-bridge/bridge.c:
+       (spi_display_name): Fix C99ism.
+       Patch from Jens Granseuer, jensgr@gmx.net.
+       
+2004-09-03  Gora Mohanty  <gmohanty@cvs.gnome.org>
+       * configure.in: Added "or" to ALL_LINGUAS.
+
+2004-08-20  Bill Haneman    <bill.haneman@sun.com>
+
+       * configure.in, NEWS, README: Revved to 1.5.4.
+       
+       * registryd/registry-main.c:
+       (main): Set the reg_env to use AT_SPI_DISPLAY instead of
+       $DISPLAY.  
+       
+       * cspi/bonobo/cspi-bonobo.c:
+       (cspi_display_name): New convenience method, gets DISPLAY with
+       screen number stripped, if AT_SPI_DISPLAY isn't already set.
+       (cspi_init): Set the activation env value above before getting
+       the registry.
+       
+       * atk-bridge/bridge.c:
+       (spi_display_name): Create the AT_SPI_DISPLAY activation
+       environment for an app, based on the DISPLAY environment with the
+       screen number stripped off.
+       (atk_bridge_init):  Allow redirection of error messages to a log.
+       (spi_atk_bridge_get_registry): Call
+       bonobo_activation_set_activation_env_value for AT_SPI_DISPLAY.
+
+       Fixes for bugs #149962, #136986, #144086.
+       
+2004-08-16  Christian Rose  <menthos@menthos.com>
+
+       * configure.in: Added "bs" to ALL_LINGUAS.
+
 2004-08-12  Kjartan Maraas  <kmaraas@gnome.org>
 
        * configure.in: Added nb to ALL_LINGUAS.