Updated ChangeLog, AUTHORS, and README for "initial" checkin.
authorbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Wed, 25 Jul 2001 21:30:15 +0000 (21:30 +0000)
committerbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Wed, 25 Jul 2001 21:30:15 +0000 (21:30 +0000)
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@7 e2bd861d-eb25-0410-b326-f6ed22b6b98c

AUTHORS
ChangeLog
README

diff --git a/AUTHORS b/AUTHORS
index e69de29..9090703 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -0,0 +1,9 @@
+The Gnome Accessibility Project SPI Team
+========================================
+Bill Haneman <bill.haneman@sun.com>
+Marc Mulcahy <marc.mulchay@sun.com>
+with contributions from:
+
+Mark McLoughlin <mark.mcloughlin@sun.com>
+Michael Meeks <micheal@ximian.com>
index 3ff0f65..6c92ee3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-07-25  Bill Haneman <bill.haneman@sun.com>
+
+       * initial CVS checkin
+
 2001-06-29  Michael Meeks  <michael@ximian.com>
 
        * configure.in: add AM_CONFIG_HEADER to gen config.h
diff --git a/README b/README
index e69de29..7cec905 100644 (file)
--- a/README
+++ b/README
@@ -0,0 +1,25 @@
+This is the initial CVS checkin of the Gnome Accessibility Project's Assistive Technology Service Provider Interface.
+
+At the moment it does not include IDL for all of the SPI, but it does provide a prototype implementation of the core of the out-of-process accessibility service, the 'registry'.
+
+Accessible applications will register with this registry service (via OAF) and adaptive/assistive technologies will register with the service as well, to indicate their interest in receiving UI events.  ATs can also use the registry's services programmatically to query accessible applications.
+
+
+Running the test programs:
+============================
+
+At the moment the only clients and 'apps' are the test at client and test app in the 'tests' subdirectory.
+
+If you have a working ORBit2/OAF installation you can run the tests after adding the registryd directory to OAF's directory list with oaf-sysconf, or by installing Accessibility_Registry.oaf in your 'oafinfo' directory.
+
+You can then run './at' and './app' from the 'test' directory, to see 'app' register as an application, and 'at' as a listening client.  OAF should take care of the job of bootstrapping the registry daemon ('registryd') for you.
+
+At the moment app and at deregistration are broken, so you are advised to kill the registry daemon if you exit either 'at' or 'app' instances.  You may run as many instances of each as you like, concurrently - you may find it useful to do so in separate terminal windows.
+
+
+'at' connects to the registry as an event listener, then queries the service for the number of virtual desktops (currently always 0 or 1), and queries each desktop for the accessible applications it is running.  It then prints out the name of each such application (as reported by the application's accessibility interfaces), and then waits to receive events.
+
+'app' connects to the registry as an application, then dispatches an event which the registry should relay to all registered listeners.  Thus instances of 'app' run after 'at' should cause the 'at' instances to receive events.
+
+
+-Bill