[at-spi2-core] Modify the interface name from org.freedesktop.atspi to org.a11y.atspi.



commit 3ab84d890e525ed271e844ba8b161352d5f589b9
Author: Mark Doffman <mark doffman codethink co uk>
Date:   Thu Feb 11 18:23:31 2010 -0800

    Modify the interface name from org.freedesktop.atspi to
    org.a11y.atspi.
    
    This is because the protocol is defined by the a11y group at
    the linux foundation and has not been discussed on freedesktop
    or over the xdg lists.

 .gitignore                                         |    1 -
 README                                             |    3 +-
 registryd/Makefile.am                              |    6 +-
 registryd/deviceeventcontroller.c                  |    2 +-
 registryd/introspection.c                          |   68 ++++++++++----------
 registryd/introspection.h                          |   34 +++++-----
 ...rvice.in => org.a11y.atspi.Registry.service.in} |    2 +-
 registryd/paths.h                                  |    6 +-
 registryd/registry.c                               |    6 +-
 registryd/testregistry.py                          |    6 +-
 xml/Accessible.xml                                 |    2 +-
 xml/Action.xml                                     |    2 +-
 xml/Application.xml                                |    2 +-
 xml/Cache.xml                                      |    2 +-
 xml/Collection.xml                                 |    2 +-
 xml/Component.xml                                  |    2 +-
 xml/DeviceEventController.xml                      |    2 +-
 xml/DeviceEventListener.xml                        |    2 +-
 xml/Document.xml                                   |    2 +-
 xml/EditableText.xml                               |    2 +-
 xml/Event.xml                                      |   14 ++--
 xml/Hyperlink.xml                                  |    2 +-
 xml/Hypertext.xml                                  |    2 +-
 xml/Image.xml                                      |    2 +-
 xml/Selection.xml                                  |    2 +-
 xml/Socket.xml                                     |    2 +-
 xml/Table.xml                                      |    2 +-
 xml/Text.xml                                       |    2 +-
 xml/Value.xml                                      |    2 +-
 29 files changed, 91 insertions(+), 93 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c8ee8f6..cf54044 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,5 +6,4 @@ autom4te.cache
 config.h.in~
 config
 configure
-xml/introspection/org.freedesktop.atspi.*
 m4/*.m4
diff --git a/README b/README
index d7c24ac..8b3e493 100644
--- a/README
+++ b/README
@@ -21,8 +21,7 @@ bugzilla. The freedesktop project name is at-spi2.
 
 A git repository with the latest development code is available at:
 
-        git://anongit.freedesktop.org/git/at-spi2/at-spi2-core
-
+	git://git.gnome.org/at-spi2-core
 
 More information
 ----------------
diff --git a/registryd/Makefile.am b/registryd/Makefile.am
index b2c794f..749394a 100644
--- a/registryd/Makefile.am
+++ b/registryd/Makefile.am
@@ -36,11 +36,11 @@ at_spi2_registryd_SOURCES =	\
 	ucs2keysym.c
 
 servicedir       = $(DBUS_SERVICES_DIR)
-service_in_files = org.freedesktop.atspi.Registry.service.in
+service_in_files = org.a11y.atspi.Registry.service.in
 service_DATA     = $(service_in_files:.service.in=.service)
 
 $(service_DATA): $(service_in_files) Makefile
 	@sed -e "s|\ LIBEXECDIR\@|$(libexecdir)|" $< > $@
 
-DISTCLEANFILES = org.freedesktop.atspi.Registry.service
-EXTRA_DIST = org.freedesktop.atspi.Registry.service.in
+DISTCLEANFILES = org.a11y.atspi.Registry.service
+EXTRA_DIST = org.a11y.atspi.Registry.service.in
diff --git a/registryd/deviceeventcontroller.c b/registryd/deviceeventcontroller.c
index b4c6a8f..156e289 100644
--- a/registryd/deviceeventcontroller.c
+++ b/registryd/deviceeventcontroller.c
@@ -2819,7 +2819,7 @@ impl_Introspect (DBusConnection * bus,
 
   g_string_append_printf(output, introspection_node_element, pathstr);
 
-  g_string_append (output, spi_org_freedesktop_atspi_DeviceEventController);
+  g_string_append (output, spi_org_a11y_atspi_DeviceEventController);
 
   g_string_append(output, introspection_footer);
   final = g_string_free(output, FALSE);
diff --git a/registryd/introspection.c b/registryd/introspection.c
index 0fb1d9f..a4db1f2 100644
--- a/registryd/introspection.c
+++ b/registryd/introspection.c
@@ -10,8 +10,8 @@
  */
 
 
-const char *spi_org_freedesktop_atspi_Accessible = 
-"<interface name=\"org.freedesktop.atspi.Accessible\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Accessible = 
+"<interface name=\"org.a11y.atspi.Accessible\" version=\"0.1.7\">"
 ""
 "  <property access=\"read\" name=\"name\" type=\"s\" />"
 ""
@@ -68,8 +68,8 @@ const char *spi_org_freedesktop_atspi_Accessible =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Action = 
-"<interface name=\"org.freedesktop.atspi.Action\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Action = 
+"<interface name=\"org.a11y.atspi.Action\" version=\"0.1.7\">"
 ""
 "  <property access=\"read\" name=\"nActions\" type=\"i\" />"
 ""
@@ -101,8 +101,8 @@ const char *spi_org_freedesktop_atspi_Action =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Application = 
-"<interface name=\"org.freedesktop.atspi.Application\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Application = 
+"<interface name=\"org.a11y.atspi.Application\" version=\"0.1.7\">"
 ""
 "  <property access=\"read\" name=\"toolkitName\" type=\"s\" />"
 ""
@@ -118,8 +118,8 @@ const char *spi_org_freedesktop_atspi_Application =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Collection = 
-"<interface name=\"org.freedesktop.atspi.Collection\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Collection = 
+"<interface name=\"org.a11y.atspi.Collection\" version=\"0.1.7\">"
 ""
 "  <method name=\"GetMatches\">"
 "    <arg direction=\"in\" name=\"rule\" type=\"(auuasuauusub)\" />"
@@ -166,8 +166,8 @@ const char *spi_org_freedesktop_atspi_Collection =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Component = 
-"<interface name=\"org.freedesktop.atspi.Component\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Component = 
+"<interface name=\"org.a11y.atspi.Component\" version=\"0.1.7\">"
 ""
 "  <method name=\"Contains\">"
 "    <arg direction=\"in\" name=\"x\" type=\"i\" />"
@@ -220,8 +220,8 @@ const char *spi_org_freedesktop_atspi_Component =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Document = 
-"<interface name=\"org.freedesktop.atspi.Document\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Document = 
+"<interface name=\"org.a11y.atspi.Document\" version=\"0.1.7\">"
 ""
 "  <method name=\"GetLocale\">"
 "    <arg direction=\"out\" type=\"s\" />"
@@ -240,8 +240,8 @@ const char *spi_org_freedesktop_atspi_Document =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Hypertext = 
-"<interface name=\"org.freedesktop.atspi.Hypertext\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Hypertext = 
+"<interface name=\"org.a11y.atspi.Hypertext\" version=\"0.1.7\">"
 ""
 "  <method name=\"GetNLinks\">"
 "    <arg direction=\"out\" type=\"i\" />"
@@ -261,8 +261,8 @@ const char *spi_org_freedesktop_atspi_Hypertext =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Hyperlink = 
-"<interface name=\"org.freedesktop.atspi.Hyperlink\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Hyperlink = 
+"<interface name=\"org.a11y.atspi.Hyperlink\" version=\"0.1.7\">"
 ""
 "  <property access=\"read\" name=\"nAnchors\" type=\"n\" />"
 ""
@@ -288,8 +288,8 @@ const char *spi_org_freedesktop_atspi_Hyperlink =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Image = 
-"<interface name=\"org.freedesktop.atspi.Image\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Image = 
+"<interface name=\"org.a11y.atspi.Image\" version=\"0.1.7\">"
 ""
 "  <property access=\"read\" name=\"imageDescription\" type=\"s\" />"
 ""
@@ -315,8 +315,8 @@ const char *spi_org_freedesktop_atspi_Image =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Selection = 
-"<interface name=\"org.freedesktop.atspi.Selection\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Selection = 
+"<interface name=\"org.a11y.atspi.Selection\" version=\"0.1.7\">"
 ""
 "  <property access=\"read\" name=\"nSelectedChildren\" type=\"i\" />"
 ""
@@ -357,8 +357,8 @@ const char *spi_org_freedesktop_atspi_Selection =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Table = 
-"<interface name=\"org.freedesktop.atspi.Table\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Table = 
+"<interface name=\"org.a11y.atspi.Table\" version=\"0.1.7\">"
 ""
 "  <property access=\"read\" name=\"nRows\" type=\"i\" />"
 ""
@@ -492,8 +492,8 @@ const char *spi_org_freedesktop_atspi_Table =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Text = 
-"<interface name=\"org.freedesktop.atspi.Text\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Text = 
+"<interface name=\"org.a11y.atspi.Text\" version=\"0.1.7\">"
 ""
 "  <property access=\"read\" name=\"characterCount\" type=\"i\" />"
 ""
@@ -643,8 +643,8 @@ const char *spi_org_freedesktop_atspi_Text =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_EditableText = 
-"<interface name=\"org.freedesktop.atspi.EditableText\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_EditableText = 
+"<interface name=\"org.a11y.atspi.EditableText\" version=\"0.1.7\">"
 ""
 "  <method name=\"SetTextContents\">"
 "    <arg direction=\"in\" name=\"newContents\" type=\"s\" />"
@@ -683,8 +683,8 @@ const char *spi_org_freedesktop_atspi_EditableText =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Cache = 
-"<interface name=\"org.freedesktop.atspi.Cache\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Cache = 
+"<interface name=\"org.a11y.atspi.Cache\" version=\"0.1.7\">"
 ""
 "  <method name=\"GetItems\">"
 "    <arg direction=\"out\" name=\"nodes\" type=\"a((so)(so)a(so)assusau)\" />"
@@ -704,8 +704,8 @@ const char *spi_org_freedesktop_atspi_Cache =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_Value = 
-"<interface name=\"org.freedesktop.atspi.Value\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_Value = 
+"<interface name=\"org.a11y.atspi.Value\" version=\"0.1.7\">"
 ""
 "        <property access=\"read\" name=\"minimumValue\" type=\"d\" />"
 ""
@@ -718,8 +718,8 @@ const char *spi_org_freedesktop_atspi_Value =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_DeviceEventController = 
-"<interface name=\"org.freedesktop.atspi.DeviceEventController\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_DeviceEventController = 
+"<interface name=\"org.a11y.atspi.DeviceEventController\" version=\"0.1.7\">"
 ""
 "  <method name=\"RegisterKeystrokeListener\">"
 "    <arg direction=\"in\" name=\"listener\" type=\"o\" />"
@@ -782,8 +782,8 @@ const char *spi_org_freedesktop_atspi_DeviceEventController =
 "</interface>"
 "";
 
-const char *spi_org_freedesktop_atspi_DeviceEventListener = 
-"<interface name=\"org.freedesktop.atspi.DeviceEventListener\" version=\"0.1.7\">"
+const char *spi_org_a11y_atspi_DeviceEventListener = 
+"<interface name=\"org.a11y.atspi.DeviceEventListener\" version=\"0.1.7\">"
 ""
 "  <method name=\"NotifyEvent\">"
 "    <arg direction=\"in\" name=\"event\" type=\"(uinnisb)\" />"
diff --git a/registryd/introspection.h b/registryd/introspection.h
index 54f4498..8ebd641 100644
--- a/registryd/introspection.h
+++ b/registryd/introspection.h
@@ -13,39 +13,39 @@
 #define SPI_INTROSPECTION_DATA_H_
 
 
-const char *spi_org_freedesktop_atspi_Accessible;
+const char *spi_org_a11y_atspi_Accessible;
 
-const char *spi_org_freedesktop_atspi_Action;
+const char *spi_org_a11y_atspi_Action;
 
-const char *spi_org_freedesktop_atspi_Application;
+const char *spi_org_a11y_atspi_Application;
 
-const char *spi_org_freedesktop_atspi_Collection;
+const char *spi_org_a11y_atspi_Collection;
 
-const char *spi_org_freedesktop_atspi_Component;
+const char *spi_org_a11y_atspi_Component;
 
-const char *spi_org_freedesktop_atspi_Document;
+const char *spi_org_a11y_atspi_Document;
 
-const char *spi_org_freedesktop_atspi_Hypertext;
+const char *spi_org_a11y_atspi_Hypertext;
 
-const char *spi_org_freedesktop_atspi_Hyperlink;
+const char *spi_org_a11y_atspi_Hyperlink;
 
-const char *spi_org_freedesktop_atspi_Image;
+const char *spi_org_a11y_atspi_Image;
 
-const char *spi_org_freedesktop_atspi_Selection;
+const char *spi_org_a11y_atspi_Selection;
 
-const char *spi_org_freedesktop_atspi_Table;
+const char *spi_org_a11y_atspi_Table;
 
-const char *spi_org_freedesktop_atspi_Text;
+const char *spi_org_a11y_atspi_Text;
 
-const char *spi_org_freedesktop_atspi_EditableText;
+const char *spi_org_a11y_atspi_EditableText;
 
-const char *spi_org_freedesktop_atspi_Cache;
+const char *spi_org_a11y_atspi_Cache;
 
-const char *spi_org_freedesktop_atspi_Value;
+const char *spi_org_a11y_atspi_Value;
 
-const char *spi_org_freedesktop_atspi_DeviceEventController;
+const char *spi_org_a11y_atspi_DeviceEventController;
 
-const char *spi_org_freedesktop_atspi_DeviceEventListener;
+const char *spi_org_a11y_atspi_DeviceEventListener;
 
 
 #endif /* SPI_INTROSPECTION_DATA_H_ */
diff --git a/registryd/org.freedesktop.atspi.Registry.service.in b/registryd/org.a11y.atspi.Registry.service.in
similarity index 66%
rename from registryd/org.freedesktop.atspi.Registry.service.in
rename to registryd/org.a11y.atspi.Registry.service.in
index 15ec3e7..5561175 100644
--- a/registryd/org.freedesktop.atspi.Registry.service.in
+++ b/registryd/org.a11y.atspi.Registry.service.in
@@ -1,3 +1,3 @@
 [D-BUS Service]
-Name=org.freedesktop.atspi.Registry
+Name=org.a11y.atspi.Registry
 Exec= LIBEXECDIR@/at-spi2-registryd --use-gnome-session
diff --git a/registryd/paths.h b/registryd/paths.h
index 86b4829..6ef98bd 100644
--- a/registryd/paths.h
+++ b/registryd/paths.h
@@ -24,9 +24,9 @@
 #ifndef SPI_PATHS_H_
 #define SPI_PATHS_H_
 
-#define SPI_DBUS_NAME_PREFIX                     "org.freedesktop.atspi."
-#define SPI_DBUS_PATH_PREFIX                     "/org/freedesktop/atspi/"
-#define SPI_DBUS_INTERFACE_PREFIX                "org.freedesktop.atspi."
+#define SPI_DBUS_NAME_PREFIX                     "org.a11y.atspi."
+#define SPI_DBUS_PATH_PREFIX                     "/org/a11y/atspi/"
+#define SPI_DBUS_INTERFACE_PREFIX                "org.a11y.atspi."
 
 #define SPI_DBUS_PATH_NULL                       SPI_DBUS_PATH_PREFIX "null"
 #define SPI_DBUS_PATH_ROOT                       SPI_DBUS_PATH_PREFIX "accessible/root"
diff --git a/registryd/registry.c b/registryd/registry.c
index d042a0c..e1c858d 100644
--- a/registryd/registry.c
+++ b/registryd/registry.c
@@ -675,8 +675,8 @@ impl_Introspect (DBusConnection * bus,
 
   g_string_append_printf(output, introspection_node_element, pathstr);
 
-  g_string_append (output, spi_org_freedesktop_atspi_Accessible);
-  g_string_append (output, spi_org_freedesktop_atspi_Component);
+  g_string_append (output, spi_org_a11y_atspi_Accessible);
+  g_string_append (output, spi_org_a11y_atspi_Component);
 
   g_string_append(output, introspection_footer);
   final = g_string_free(output, FALSE);
@@ -739,7 +739,7 @@ emit_event (DBusConnection *bus,
 /*
  * Children changed signal converter and forwarder.
  *
- * Klass (Interface) org.freedesktop.atspi.Event.Object
+ * Klass (Interface) org.a11y.atspi.Event.Object
  * Major is the signal name.
  * Minor is 'add' or 'remove'
  * detail1 is the index.
diff --git a/registryd/testregistry.py b/registryd/testregistry.py
index 86be32a..9469525 100644
--- a/registryd/testregistry.py
+++ b/registryd/testregistry.py
@@ -22,10 +22,10 @@ class IdleStateM (object):
 		return True
 
 	def setup(self):
-		self.obj = self._bus.get_object("org.freedesktop.atspi.Registry",
-                                                "/org/freedesktop/atspi/registry",
+		self.obj = self._bus.get_object("org.a11y.atspi.Registry",
+                                                "/org/a11y/atspi/registry",
                                                 introspect=False)
-		self.itf = dbus.Interface(self.obj, dbus_interface="org.freedesktop.atspi.Registry")
+		self.itf = dbus.Interface(self.obj, dbus_interface="org.a11y.atspi.Registry")
 		return self.register_apps
 
 	def register_apps(self):
diff --git a/xml/Accessible.xml b/xml/Accessible.xml
index ace5926..5e41be9 100644
--- a/xml/Accessible.xml
+++ b/xml/Accessible.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Accessible">
+<interface name="org.a11y.atspi.Accessible">
 
   <property name="name" type="s" access="read"/>
 
diff --git a/xml/Action.xml b/xml/Action.xml
index 8702dca..eca978c 100644
--- a/xml/Action.xml
+++ b/xml/Action.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Action">
+<interface name="org.a11y.atspi.Action">
 
   <property name="nActions" type="i" access="read"/>
 
diff --git a/xml/Application.xml b/xml/Application.xml
index 82d2818..cc90347 100644
--- a/xml/Application.xml
+++ b/xml/Application.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Application">
+<interface name="org.a11y.atspi.Application">
 
   <property name="toolkitName" type="s" access="read"/>
 
diff --git a/xml/Cache.xml b/xml/Cache.xml
index fd6ead1..6f79786 100644
--- a/xml/Cache.xml
+++ b/xml/Cache.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Cache">
+<interface name="org.a11y.atspi.Cache">
 
   <method name="GetItems">
     <arg name="nodes" type="a((so)(so)a(so)assusau)" direction="out"/>
diff --git a/xml/Collection.xml b/xml/Collection.xml
index 748b851..f4dca8a 100644
--- a/xml/Collection.xml
+++ b/xml/Collection.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Collection">
+<interface name="org.a11y.atspi.Collection">
 
   <method name="GetMatches">
     <arg direction="in" name="rule" type="(auuasuauusub)"/>
diff --git a/xml/Component.xml b/xml/Component.xml
index c7d3f94..2e8f19d 100644
--- a/xml/Component.xml
+++ b/xml/Component.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Component">
+<interface name="org.a11y.atspi.Component">
 
   <method name="Contains">
     <arg direction="in" name="x" type="i"/>
diff --git a/xml/DeviceEventController.xml b/xml/DeviceEventController.xml
index 1c76789..1f680ef 100644
--- a/xml/DeviceEventController.xml
+++ b/xml/DeviceEventController.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.DeviceEventController">
+<interface name="org.a11y.atspi.DeviceEventController">
 
   <method name="RegisterKeystrokeListener">
     <arg direction="in" name="listener" type="o"/>
diff --git a/xml/DeviceEventListener.xml b/xml/DeviceEventListener.xml
index 69193e3..0a10c16 100644
--- a/xml/DeviceEventListener.xml
+++ b/xml/DeviceEventListener.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.DeviceEventListener">
+<interface name="org.a11y.atspi.DeviceEventListener">
 
   <method name="NotifyEvent">
     <arg direction="in" name="event" type="(uinnisb)"/>
diff --git a/xml/Document.xml b/xml/Document.xml
index 047b3fc..28b205d 100644
--- a/xml/Document.xml
+++ b/xml/Document.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Document">
+<interface name="org.a11y.atspi.Document">
 
   <method name="GetLocale">
     <arg direction="out" type="s"/>
diff --git a/xml/EditableText.xml b/xml/EditableText.xml
index 62befd4..09f62f5 100644
--- a/xml/EditableText.xml
+++ b/xml/EditableText.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.EditableText">
+<interface name="org.a11y.atspi.EditableText">
 
   <method name="SetTextContents">
     <arg direction="in" name="newContents" type="s"/>
diff --git a/xml/Event.xml b/xml/Event.xml
index 1731147..fb4f3c8 100644
--- a/xml/Event.xml
+++ b/xml/Event.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
 
-<interface name="org.freedesktop.atspi.Event.Object">
+<interface name="org.a11y.atspi.Event.Object">
 	<signal name="PropertyChange"><arg direction="in" type="(suuv)"/>
           <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
@@ -67,7 +67,7 @@
         </signal>
 </interface>
 
-<interface name="org.freedesktop.atspi.Event.Window">
+<interface name="org.a11y.atspi.Event.Window">
 	<signal name="PropertyChange"><arg direction="in" type="(suuv)"/>
           <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
@@ -127,7 +127,7 @@
         </signal>
 </interface>
 
-<interface name="org.freedesktop.atspi.Event.Mouse">
+<interface name="org.a11y.atspi.Event.Mouse">
 	<signal name="Abs"><arg direction="in" type="(suuv)"/>
           <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
@@ -139,13 +139,13 @@
         </signal>
 </interface>
 
-<interface name="org.freedesktop.atspi.Event.Keyboard">
+<interface name="org.a11y.atspi.Event.Keyboard">
 	<signal name="Modifiers"><arg direction="in" type="(suuv)"/>
           <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
 </interface>
 
-<interface name="org.freedesktop.atspi.Event.Terminal">
+<interface name="org.a11y.atspi.Event.Terminal">
 	<signal name="LineChanged"><arg direction="in" type="(suuv)"/>
           <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
@@ -163,7 +163,7 @@
         </signal>
 </interface>
 
-<interface name="org.freedesktop.atspi.Event.Document">
+<interface name="org.a11y.atspi.Event.Document">
 	<signal name="LoadComplete"><arg direction="in" type="(suuv)"/>
           <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
@@ -181,7 +181,7 @@
         </signal>
 </interface>
 
-<interface name="org.freedesktop.atspi.Event.Focus">
+<interface name="org.a11y.atspi.Event.Focus">
 	<signal name="Focus"><arg direction="in" type="(suuv)"/>
           <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
diff --git a/xml/Hyperlink.xml b/xml/Hyperlink.xml
index bf3b01c..d306894 100644
--- a/xml/Hyperlink.xml
+++ b/xml/Hyperlink.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Hyperlink">
+<interface name="org.a11y.atspi.Hyperlink">
 
   <property name="nAnchors" type="n" access="read"/>
 
diff --git a/xml/Hypertext.xml b/xml/Hypertext.xml
index 1a5d7c8..18a3b34 100644
--- a/xml/Hypertext.xml
+++ b/xml/Hypertext.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Hypertext">
+<interface name="org.a11y.atspi.Hypertext">
 
   <method name="GetNLinks">
     <arg direction="out" type="i"/>
diff --git a/xml/Image.xml b/xml/Image.xml
index a2aa01d..80fd448 100644
--- a/xml/Image.xml
+++ b/xml/Image.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Image">
+<interface name="org.a11y.atspi.Image">
 
   <property name="imageDescription" type="s" access="read"/>
 
diff --git a/xml/Selection.xml b/xml/Selection.xml
index 69727e4..32e55b8 100644
--- a/xml/Selection.xml
+++ b/xml/Selection.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Selection">
+<interface name="org.a11y.atspi.Selection">
 
   <property name="nSelectedChildren" type="i" access="read"/>
 
diff --git a/xml/Socket.xml b/xml/Socket.xml
index 9b3ad8b..ae49e48 100644
--- a/xml/Socket.xml
+++ b/xml/Socket.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Image">
+<interface name="org.a11y.atspi.Image">
 
   <method name="Embed">
     <arg direction="in" name="plug" type="(so)">
diff --git a/xml/Table.xml b/xml/Table.xml
index 07d8fb6..b27df82 100644
--- a/xml/Table.xml
+++ b/xml/Table.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Table">
+<interface name="org.a11y.atspi.Table">
 
   <property name="nRows" type="i" access="read"/>
 
diff --git a/xml/Text.xml b/xml/Text.xml
index 349bfbb..097e1d9 100644
--- a/xml/Text.xml
+++ b/xml/Text.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Text">
+<interface name="org.a11y.atspi.Text">
 
   <property name="characterCount" type="i" access="read"/>
 
diff --git a/xml/Value.xml b/xml/Value.xml
index 13e53db..aa097cf 100644
--- a/xml/Value.xml
+++ b/xml/Value.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <node name="/node">
-<interface name="org.freedesktop.atspi.Value">
+<interface name="org.a11y.atspi.Value">
 
         <property name="minimumValue" type="d" access="read"/>
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]