summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagappan <nagappan>2007-08-28 09:17:40 +0000
committernagappan <nagappan>2007-08-28 09:17:40 +0000
commitc1087dce6786f29fa985b4519864cead836c2910 (patch)
tree7059b42eeacdd75b6d13d51016c815290d4b6c42
parentce31c4a1030bae016ac38f8e3ce71d71fd5c7292 (diff)
2007-05-14 Nagappan A <anagappan@novell.com>LDTP_0_9_0
* Doxyfile: Updated file, not to generate RTF, man formats. * README: Updated file, for using a new option for GNOME versions less 2.16. * configure.in: Added logic to include new roles for latest GNOME version. Added ldtplib directory Makefile generation.
-rw-r--r--ChangeLog4
-rw-r--r--Doxyfile2
-rw-r--r--configure.in2
-rw-r--r--python/ldtp.py2
-rwxr-xr-xpython/ldtpcodegen2
-rw-r--r--python/ldtplib/ldtprecorder.py2
-rw-r--r--src/remap.c2
7 files changed, 11 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index e9cdf02..bf58365 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-08-28 Nagappan A <anagappan@novell.com>
+
+ * configure.in: Bumped version to 0.9.0.
+
2007-05-14 Nagappan A <anagappan@novell.com>
* Doxyfile: Updated file, not to generate RTF, man formats.
diff --git a/Doxyfile b/Doxyfile
index 6111b2c..e207eab 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -4,7 +4,7 @@
# Project related configuration options
#---------------------------------------------------------------------------
PROJECT_NAME = LDTP
-PROJECT_NUMBER = 0.8.0
+PROJECT_NUMBER = 0.9.0
OUTPUT_DIRECTORY = doc
CREATE_SUBDIRS = YES
OUTPUT_LANGUAGE = English
diff --git a/configure.in b/configure.in
index 4f27ace..b223bb6 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
dnl *************************************************************
dnl Process this file with autoconf to produce a configure script
dnl *************************************************************
-AC_INIT(ldtp, 0.8.0, ldtp-dev@lists.freedesktop.org)
+AC_INIT(ldtp, 0.9.0, ldtp-dev@lists.freedesktop.org)
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE
diff --git a/python/ldtp.py b/python/ldtp.py
index bdbdc7f..40579af 100644
--- a/python/ldtp.py
+++ b/python/ldtp.py
@@ -30,7 +30,7 @@
__author__ = "Nagappan A"
__maintainer__ = "Nagappan A"
-__version__ = "0.8.0"
+__version__ = "0.9.0"
import socket, os, types, sys, struct, traceback, time, commands
import threading, re, atexit, random, thread, select, logging, logging.config
diff --git a/python/ldtpcodegen b/python/ldtpcodegen
index 7c5d337..f4c39dc 100755
--- a/python/ldtpcodegen
+++ b/python/ldtpcodegen
@@ -27,7 +27,7 @@
__author__ = "Nagappan A"
__maintainer__ = "Nagappan A"
-__version__ = "0.8.0"
+__version__ = "0.9.0"
import socket, os, types, sys, struct, traceback, time
import threading, re, atexit
diff --git a/python/ldtplib/ldtprecorder.py b/python/ldtplib/ldtprecorder.py
index bb61890..6174b49 100644
--- a/python/ldtplib/ldtprecorder.py
+++ b/python/ldtplib/ldtprecorder.py
@@ -27,7 +27,7 @@
__author__ = "Nagappan A"
__maintainer__ = "Nagappan A"
-__version__ = "0.8.0"
+__version__ = "0.9.0"
import re
import os
diff --git a/src/remap.c b/src/remap.c
index 9c6cc9a..23a1947 100644
--- a/src/remap.c
+++ b/src/remap.c
@@ -568,12 +568,14 @@ get_object_info (Accessible *accessible)
text++;
obj_info->object_type = g_strdup ("text");
}
+#ifdef ENABLE_NEWROLES
else if (role == SPI_ROLE_ENTRY) {
obj_info->prefix = g_strdup ("txt");
obj_info->instance_index = text;
text++;
obj_info->object_type = g_strdup ("entry");
}
+#endif
/*
else if (role == SPI_ROLE_AUTOCOMPLETE) {
obj_info->prefix = g_strdup ("txt");