1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112
|
NOTE: THIS FILE IS NO LONGER UPDATED. Please see the git log for recent
changes.
2009-05-24 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in: Bumped to version 1.7.2.
* src/lib/accerciser/accessible_treeview.py:
* plugins/interface_view.py: Added accessible name changed
listeners to update the view accordingly (bug #582434).
2009-05-15 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Fixed editable text bug (bug #574223).
* plugins/Makefile.am:
* plugins/event_monitor.py:
* plugins/event_monitor.ui:
* plugins/interface_view.py:
* plugins/interface_view.ui:
* plugins/script_recorder.py:
* plugins/script_recorder.ui:
* plugins/validate.py:
* plugins/validate.ui:
* po/POTFILES.in: Migrated to GtkBuilder (bug 572207).
2009-05-04 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in: Bumped to version 1.7.1.
* src/lib/accerciser/accerciser.py (Main.run): Minimize CPU usage
and wakeups by setting gil to False, and pumping events with a
timeout as opposed to an idle callback (bug #576954).
* .gitignore: Added for cleaner git usage.
2009-05-02 Eitan Isaacson <eitan@ascender.com>
* plugins/ipython_view.py: Made up/down history not loop (bug #578608).
* README:
* accerciser.spec.in:
* debian/control:
* macaroon/pyreqs.py:
* pyreqs.py: Removed bonobo and ORBit2 dependencies. Accerciser
does not depend on them directly, and they will be deprecated in
GNOME 3.0 (bug #580421).
2009-04-13 Brian G. Merrell <bgmerrell@novell.com>
* NEWS:
* README:
* configure.in: Prepared 1.6.1 release.
2009-04-05 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/prefs_dialog.py:
* src/lib/accerciser/node.py: Updated highlight SVG to work with
newer rsvg (bug #576756).
2009-03-16 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in: Prepared 1.6.0 release.
2009-03-11 Mike Gorse <mgorse@novell.com>
* plugins/interface_view.py: Call getindexInParent to pass the
correct index to addSelection (bug #574783).
2009-03-04 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/main_window.py: Added an informative window
title (bug #574103).
* src/lib/accerciser/prefs_dialog.py: Fixed empty padding
issue (bug #574101)
* plugins/script_recorder.py: Port to gtksourceview2 (bug #574100).
2009-02-17 Brad Taylor <brad@getcoded.net>
* plugins/interface_view.py: Don't allow the set_range to change the
value of our accessible (bug #572201).
2009-02-17 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in: Prepared 1.5.91 release.
2009-02-03 Eitan Isaacson <eitan@ascender.com>
* autogen.sh: Provide a $srcdir (bug #570332).
Thanks Theppitak Karoonboonyanan!
2009-02-02 Brian G. Merrell <bgmerrell@novell.com>
* src/lib/accerciser/i18n.py.in: Use gettext.gettext (imported as
translate_func) instead of _ in C_ to avoid distcheck failure. This
is part of the 1.5.9 release.
2009-02-02 Brian G. Merrell <bgmerrell@novell.com>
* NEWS:
* README:
* configure.in: Prepared 1.5.9 release.
2009-01-28 Eitan Isaacson <eitan@ascender.com>
* po/ca.po:
* po/el.po:
* po/es.po:
* po/hu.po:
* po/nb.po:
* po/sl.po:
* po/sv.po:
* po/zh_CN.po: Updated PO files for msgctx.
* src/lib/accerciser/i18n.py.in:
* src/lib/accerciser/plugin/plugin_manager.py:
* src/lib/accerciser/ui_manager.py: Use C_() instead of Q_() with
context (bug #569341).
2009-01-26 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/ui_manager.py: Added context for "Bookmarks"
for translation (bug #520296).
2009-01-18 Eitan Isaacson <eitan@ascender.com>
* NEWS
* README
* configure.in: Mark for 1.5.5 release.
2009-01-15 Eitan Isaacson <eitan@ascender.com>
* pyreqs.py: Put pygtk as the first required module (bug #547778).
2009-01-07 Brian G. Merrell <bgmerrell@novell.com>
* plugins/interface_view.py: Correctly calculate the range of
characters to be deleted, so that it would match the range of
characters to be deleted in the outgoing calls cache when
appropriate (bug #563284)
2009-01-05 Brian G. Merrell <bgmerrell@novell.com>
* NEWS:
* README:
* configure.in: Prepared 1.5.4 release.
2009-01-05 Brian G. Merrell <bgmerrell@novell.com>
* plugins/interface_view.py: Import markup_escape_text from gobject
instead of glib. This seems to work more consistently across distros.
2008-12-18 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py (InterfaceViewer.onAccChanged): Escape
label text for accessible roles and names (bug #564776).
2008-12-01 Eitan Isaacson <eitan@ascender.com>
* MAINTAINERS: Updated with Brian's info.
2008-12-01 Brian G. Merrell <bgmerrell@novell.com>
* NEWS:
* README:
* configure.in: Prepared 1.5.2 release.
2008-11-20 Brian G. Merrell <bgmerrell@gmail.com>
* plugins/interface_view.py: Get each relation name in a list of
relations instead of getting the first relation name every time.
Bug #561598
2008-11-18 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/node.py: If duration is 0, don't highlight at all.
2008-10-10 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/i18n.py.in:
* src/lib/accerciser/plugin/plugin_manager.py:
* src/lib/accerciser/ui_manager.py: Added proper context to the term
'View' with the Q_ thing. Thanks Wouter Bolsterlee! Bug #520296.
* src/lib/accerciser/node.py: When a node is updated to desktop, don't
highlight the entire desktop, it get's annoying.
* plugins/event_monitor.py: Disable event monitoring if the event we
are listening for disappears.
* plugins/interface_view.py: Catch exceptions when getting states
during state changes, they could be defunct state, which means the
object is dead.
* src/accerciser.in: Set process name to 'accerciser'. Bug #555416.
* configure.in: Bumped version to 1.5.1
* help/C/accerciser.xml: Changed "left plugin display area" to "right
plugin display area". Bug #555108. Thanks Lucas Lommer!
2008-09-22 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in:
* debian/changelog: Prepared 1.4.0 release.
2008-09-08 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in:
* debian/changelog: Updated for 1.3.92 release.
* src/accerciser.in: Put pygtk.require before loading the gnome
module. Thanks Fredric Peters! (bug #547778).
2008-09-03 Eitan Isaacson <eitan@ascender.com>
* accerciser.schemas.in:
Changed color string to be parsable (bug #550689).
2008-09-01 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in:
* debian/changelog: Updated for 1.3.91 release.
2008-08-04 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in:
* debian/changelog: Bumped to new version, 1.3.6.
* src/lib/accerciser/node.py: Removed "finally" block for
compatability (bug #545904), thanks Will. Hard code default colors.
2008-07-21 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/node.py: Fixed highlighting in composited
environments.
2008-07-20 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* debian/changelog: Updated for 1.3.5 release.
* pyreqs.py: Changed pyatspi version checking to use the new
__version__ symbol.
2008-07-08 Eitan Isaacson <eitan@ascender.com>
* accerciser.schemas.in:
* debian/changelog:
* debian/rules:
* src/lib/accerciser/accessible_treeview.py:
* src/lib/accerciser/node.py:
* src/lib/accerciser/prefs_dialog.py:
* src/lib/accerciser/tools.py: Added new highlight features and
eye-candy. Updated debian dirs.
* src/lib/accerciser/accessible_treeview.py:
* src/lib/accerciser/main_window.py:
* src/lib/accerciser/plugin/plugin_manager.py:
* src/lib/accerciser/tools.py:
* src/lib/accerciser/ui_manager.py: Added a context menu to the
main tree.
2008-07-02 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accessible_treeview.py: Fixed
UnboundLocalError (bug #540166).
2008-06-16 Eitan Isaacson <eitan@ascender.com>
* confugure.in: Set trunk version to 1.3.5.
* NEWS:
* confugure.in:
* README: Updated to version 1.3.4.
2008-06-12 Eitan Isaacson <eitan@ascender.com>
* pyreqs.py: Make pyreqs behave nicely in a headless build
environment (bug #528828).
* po/LINGUAS: Fixed build issue - bugs 537272 and 536468.
Thanks David Fuereder!
* accerciser.desktop.in.in:
* po/ar.po:
* po/bg.po:
* po/bn.po:
* po/bn_IN.po:
* po/ca.po:
* po/cs.po:
* po/da.po:
* po/de.po:
* po/dz.po:
* po/el.po:
* po/en_CA.po:
* po/en_GB.po:
* po/es.po:
* po/fi.po:
* po/fr.po:
* po/gl.po:
* po/gu.po:
* po/he.po:
* po/hi.po:
* po/hu.po:
* po/it.po:
* po/ja.po:
* po/lt.po:
* po/lv.po:
* po/mk.po:
* po/ml.po:
* po/nb.po:
* po/nl.po:
* po/oc.po:
* po/or.po:
* po/pa.po:
* po/pl.po:
* po/pt.po:
* po/pt_BR.po:
* po/ru.po:
* po/si.po:
* po/sl.po:
* po/sq.po:
* po/sv.po:
* po/te.po:
* po/th.po:
* po/tr.po:
* po/uk.po:
* po/vi.po:
* po/zh_CN.po: Fixed desktop file typo (bug #520729).
Thanks Pedro Fragoso!
2008-04-22 Brian G. Merrell <bgmerrell@gmail.com>
* plugins/ipython_view.py: modified the code to check for different
modifiers (CONTROL, SHIFT, and MOD1/ALT) and correct the behavior of
the 'Home' key to perform as the user would expect (bug #431882).
2008-04-21 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* confugure.in:
* README: Updated to version 1.3.1.
* pyreqs.py: Check that the version of pyatspi is current enough.
2008-04-21 Brian G. Merrell <bgmerrell@gmail.com>
* src/lib/accerciser/accerciser.py: Added whitespace to strings (bug
#528261).
2008-03-26 Eitan Isaacson <eitan@ascender.com>
* plugins/validate.glade:
* plugins/validate.py: Implement save functionality,
thanks Brian Merrell! (bug #508665). Added an extra column
to the append in _exceptionError()'s append to model.
2008-03-16 Eitan Isaacson <eitan@ascender.com>
* plugins/quick_select.py: Make it work better with tab lists
and windows.
2008-03-07 Wouter Bolsterlee <wbolster@svn.gnome.org>
* plugins/interface_view.py: Added some translator
comments.
2008-03-05 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/plugin/plugin_manager.py: Added translator
comments for "View" (bug #520296).
* plugins/interface_view.py: Removed prefix space from
translatable string (bug #514232).
* src/lib/accerciser/accessible_treeview.py:
* plugindata/validate/basic.py:
* plugins/interface_view.glade: Added translator comments.
2008-02-28 Eitan Isaacson <eitan@ascender.com>
* plugins/event_monitor.glade: Move the separator directly beneath
the text window (bug #494634). Thanks Brian G. Merrell!
* plugins/event_monitor.py: Make hyperlinks work with single
clicks (bug #494632). Thanks Steve Lee and Brian G. Merrell!
* plugins/api_view.py: Put interface combo box on tob (bug
#493650). Thanks Brian G. Merrell!
* plugins/interface_view.py: Swapped absolute and relative
positions in Component section (bug #503654).
2008-02-10 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/Makefile.am: Removed pyatspi.zip
* NEWS:
* README:
* configure.in:
* debian/changelog: 1.1.91 release.
2008-02-08 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/pyatspi.zip: Deleted.
2008-01-28 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in:
* debian/changelog: 1.1.90 release.
* src/lib/accerciser/accerciser.py: Make event handling asynchronous.
* plugins/event_monitor.py: Remove decoupling of event handling, we
don't need to worry about it any more.
2008-01-26 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py: Fixed hang when enabling
desktop a11y through accerciser (bug #509805). Thanks Pedro Fragoso.
2008-01-16 Peter Parente <parente@cs.unc.edu>
* plugindata/validate/basic.py: Added comments
2008-01-14 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in:
* debian/changelog: Bumped to version 1.1.5.
* plugindata/validate/basic.py: Added translator comments.
2008-01-11 Eitan Isaacson <eitan@ascender.com>
* plugindata/validate/Makefile.am: Fixed install path.
* plugins/event_monitor.py: Added a new global hotkey for
starting/stopping recording.
* plugins/validate.glade: Removed Save button, changed layout so
it won't be so wide. Added label relationships to comobox and label.
* plugins/validate.py: Removed Save button stuff.
* plugindata/validate/Makefile.am:
* plugindata/Makefile.am: Added missing Makefile.ams.
2008-01-10 Peter Parente <parente@cs.unc.edu>
* plugins/validate.py
* plugins/validate.glade
* plugindata/validate/basic.py: Old code for validate plugin
2007-12-03 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in:
* debian/changelog: Bumped to version 1.1.3.
2007-12-01 Eitan Isaacson <eitan@ascender.com>
* plugins/ipython_view.py (IPythonView.__init__): Removed a "print".
* plugins/ipython_view.py (ConsoleView.onKeyPressExtend): Fixed
strange bug when trying to extend a superclass's method through a
callback (bug #500900).
2007-11-13 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in:
* debian/changelog: Bumped to version 1.1.2.
2007-11-03 Eitan Isaacson <eitan@ascender.com>
* src/accerciser.in: Initialized GDK threading, IPython 0.8.* is
forcing us to do this because it imports ctypes which enables
Python threading (bug #469427).
* plugins/ipython_view.py (ConsoleView): De-coupled all caret
movement and text manipulation in the ConsoleView from the input
event handling. Without decoupling we get a lockup if threading
is enabled when a GAIL callback tries to acquire the lock during a
GDK event dispatch.
2007-10-29 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in:
* debian/changelog: Bumped to version 1.1.1.
2007-10-12 Eitan Isaacson <eitan@ascender.com>
* README:
* configure.in:
* debian/changelog: Bumped to 1.0.2.
* NEWS: Updated to 1.0.1.
* src/lib/accerciser/accerciser.py: Removed _onAccChanged
callback, and put in a more general selection changed callback in
main_window.py (bug #484843).
* src/lib/accerciser/main_window.py: Put in a selection changed
callback to update the status bar with the current path (bug #484843).
* src/lib/accerciser/plugin/message.py: Fixed tooltip style issue
(bug #460071).
* src/lib/accerciser/prefs_dialog.py: Fixed bug that would not
alow preferences window to be closed (bug #481176).
2007-10-05 Eitan Isaacson <eitan@ascender.com>
* configure.in:
* README: Changed to version 1.0.1
* help/C/accerciser.xml: Fixed bad entity name (bug
#475593). Thanks Frederic Peters!
2007-09-17 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/node.py (Node.update): Assert that a
Component interface is actually given before trying to use it.
* README: Bumped to version 1.1.0 for GNOME 2.21 development
cycle.
* configure.in: Bumped to version 1.1.0 for GNOME 2.21 development
cycle.
2007-09-16 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in:
* debian/changelog: Updated to version 1.0.0.
2007-09-15 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/pyatspi.zip: Updated to latest pyatspi revision.
These are updates from bugs #472301 and #467366.
2007-09-04 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README:
* configure.in:
* debian/changelog: Changed to version 0.1.92.
2007-08-31 Eitan Isaacson <eitan@ascender.com>
* MAINTAINERS: Updated to new format.
2007-08-30 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade:
* plugins/script_recorder.glade: Added translation comments
to some hard strings (bug 471756).
* plugins/event_monitor.glade:
* plugins/interface_view.glade:
* plugins/script_recorder.glade: Unmark stock ids for
translation, thanks Gabor Kelemen! (bug 470901).
2007-08-29 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Limit splits in accessible
attribute pairs, thanks Scott Haeger! (bug 464365).
2007-08-27 Eitan Isaacson <eitan@ascender.com>
* doc/accerciser.1: New manpage.
* doc/Makefile.am: New Makefile.am.
* configure.in: Added doc dir.
* Makefile.am: Added doc dir.
* NEWS: Updated news with manpage.
* NEWS: Updated with news for version 0.1.91.
* README: Updated to version 0.1.91.
* configure.in: Updated to version 0.1.91.
* debian/changelog: Updated to version 0.1.91.
2007-08-13 Eitan Isaacson <eitan@ascender.com>
* NEWS: Updated to version 0.1.90.
* po/POTFILES.skip: Added accerciser.desktop.in.
2007-08-09 Eitan Isaacson <eitan@ascender.com>
* plugins/api_view.py: Fixed assumption that the type of a variable is
always a string.
2007-07-31 Eitan Isaacson <eitan@ascender.com>
* po/POTFILES.in: Removed weird automated addition.
* po/POTFILES.skip: Removed accerciser.desktop.in.
* src/lib/accerciser/plugin/message.py: Added an assertion test to
fix bug #460071. I wish I understood what the root of the problem
is, but I can't seem to replicate this on my system.
2007-07-30 Eitan Isaacson <eitan@ascender.com>
* po/POTFILES.in:
* po/POTFILES.skip: Added and skipped relevant files.
Thanks Claude Paroz.
2007-07-29 Eitan Isaacson <eitan@ascender.com>
* README:
* configure.in:
* debian/changelog: Version bumped to version 0.1.90.
* NEWS: Updated for version 0.1.6.
2007-07-20 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/__init__.py: Block SIGSTP so we don't hang
the desktop, thank you Simos Xenitellis (bug 457965).
2007-07-08 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade: Marked 'C' string as untranslatable.
* src/lib/accerciser/accessible_treeview.py: Added some safety harnesses.
* src/lib/accerciser/plugin/view.py: Fixed new view dialog.
2007-07-08 Eitan Isaacson <eitan@ascender.com>
* README: Bumped to 0.1.6.
* configure.in: Bumped to 0.1.6.
* debian/changelog: Bumped to 0.1.6.
* src/lib/accerciser/bookmarks.py: Fixed bookmark deletion. Fixed
application bookmarks.
* src/lib/accerciser/accessible_treeview.py: Fixed indirect
selection of top level nodes.
2007-07-08 Eitan Isaacson <eitan@ascender.com>
* NEWS: Updated to 0.1.5.
* src/lib/accerciser/plugin/base_plugin.py: Added focus
callback that scrolls to the focused child widget in a
viewport plugin.
* plugins/interface_view.py: Removed focus callback for scrolling.
It is now in a superclass.
2007-07-05 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Handle exception from a non-existant
selection interface.
* src/lib/accerciser/main_window.py: Fixed exception raised in bug
453330.
2007-07-01 Eitan Isaacson <eitan@ascender.com>
* plugins/api_view.py: Catch AttributeError on slots.
* src/lib/accerciser/pyatspi.zip: Updated to revisio 935.
2007-07-01 Eitan Isaacson <eitan@ascender.com>
* accerciser.schemas.in: Changed caps on view names.
* help/C/accerciser.xml: Updated documentation.
* help/C/figures/accerciser.png: Updated screenshot.
* help/C/figures/api_browser.png: Updated screenshot.
* help/C/figures/event_monitor.png: Updated screenshot.
* help/C/figures/interface_viewer.png: Updated screenshot.
* help/C/figures/script_recorder.png: Updated screenshot.
* help/Makefile.am: Added script_recorder.png.
* src/lib/accerciser/plugin/view.py: Added mnemonic to single
view mode.
2007-06-29 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py: Changed to new UI Manager scheme.
* src/lib/accerciser/bookmarks.py: Changed to new UI Manager scheme.
* src/lib/accerciser/main_window.py: Removed UI manager stuff.
* src/lib/accerciser/node.py: Check if no application accessible
was found.
* src/lib/accerciser/plugin/view.py: Renamed ViewManager to
MultiViewModel with a ViewModel superclass. This allows more then
one kind of view management scheme, like SingleViewModel.
* src/lib/accerciser/tools.py: Added Proxy class
for wrapping weak referenced callables.
* src/lib/accerciser/ui_manager.py: Added.
Creates a singleton UIManager.
* src/lib/accerciser/Makefile.am: Added ui_manager.py.
2007-06-19 Eitan Isaacson <eitan@ascender.com>
* plugins/Makefile.am: Added quick select plugin.
* plugins/quick_select.py: Added quick select plugin.
* src/lib/accerciser/accerciser.py: Removed quick select
functionality, and put it in a seperate plugin.
* src/lib/accerciser/plugin/plugin_manager.py: Made changes to
allow plugins that have no visible widget.
* src/lib/accerciser/plugin/view.py: Made changes to
allow plugins that have no visible widget.
* README: Bumped to 0.1.5.
* configure.in: Bumped to 0.1.5.
* debian/changelog: Bumped to 0.1.5.
* src/lib/accerciser/__init__.py: Changed main class name.
* src/lib/accerciser/accerciser.py: Changed main class name.
Moved global keypress listening to hotkey manager.
* src/lib/accerciser/hotkey_manager.py: Moved global keypress
listening to hotkey manager.
2007-06-17 Eitan Isaacson <eitan@ascender.com>
* NEWS: Updated to 0.1.4.
* src/lib/accerciser/main_window.py: Added shadow to treeview.
* src/lib/accerciser/plugin/view.py: Fixed crash when no gconf
settings are found.
2007-06-15 Eitan Isaacson <eitan@ascender.com>
* po/POTFILES.in: Removed glade, added new files.
* src/Makefile.am: Removed glade file.
* src/accerciser.glade: Removed glade file.
* src/lib/accerciser/Makefile.am: Added prefs dialog, about dialog
and main window files.
* src/lib/accerciser/about_dialog.py: Replaced glade description.
* src/lib/accerciser/accerciser.py: Refacotred out all main window
functionality.
* src/lib/accerciser/accessible_treeview.py: Manage own action group.
* src/lib/accerciser/bookmarks.py: Refactored, use UIManager and actions.
* src/lib/accerciser/main_window.py: Replaced glade description.
* src/lib/accerciser/prefs_dialog.py: Replaced glade description.
2007-06-05 Eitan Isaacson <eitan@ascender.com>
* src/accerciser.glade: Added bookmarks menu.
* src/lib/accerciser/Makefile.am: Added bookmarks.py.
* src/bookmarks.py: Added support for bookmarks.
* src/lib/accerciser/accerciser.py: Added bookmark callbacks.
* src/lib/accerciser/accessible_treeview.py: Fixed node selection bug.
* src/lib/accerciser/hotkey_manager.py:
* src/lib/accerciser/node.py: added tree_path attribute for more
accurate accessible paths.
2007-06-05 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accessible_treeview.py: Decouple children
node loading (bug 441013).
2007-06-04 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Scroll a focused expander
in plugin area into view.
* README: Bumped to version 0.1.4
* configure.in: Bumped to version 0.1.4
* debian/changelog: Bumped to version 0.1.4
2007-06-03 Eitan Isaacson <eitan@ascender.com>
* NEWS: Updated news file for upcomming release.
2007-06-02 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade: Made added labels selectable
(bug 440972).
2007-06-01 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Removed print.
* src/lib/accerciser/accessible_treeview.py: Made '<dead>' string
localized.
* src/lib/accerciser/plugin/view.py: Plugin tabs now accessible
(we were getting "None" for pluginview children via at-spi).
2007-05-31 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade:
* plugins/interface_view.py: Added accessible description and
childcount. and image description and locale (bug 440972).
2007-05-28 Eitan Isaacson <eitan@ascender.com>
* plugins/script_recorder.py: Added title to confirm clear dialog.
2007-05-27 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Fixed bug 441201.
2007-05-24 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/__init__.py: Completed epydoc.
* src/lib/accerciser/plugin/message.py: Completed epydoc.
* src/lib/accerciser/plugin/message.py: Epydoced.
* src/lib/accerciser/plugin/plugin_manager.py: Epydoced.
* src/lib/accerciser/plugin/view.py: Epydoced.
2007-05-22 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py: Added forced
refresh after rectangle blinks (bug 433514).
* src/lib/accerciser/node.py: Added a signal for when the
rectangle stops blinking.
* plugins/interface_view.py: Fixed bug 440177.
* plugins/interface_view.glade:
* plugins/interface_view.py: Limit selection view populating to
50 children (bug 440269).
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/plugin/view.py: Skip over invisible tabs
when focusing with alt-<num>.
* configure.in:
* plugins/script_recorder.py:
* src/lib/accerciser/Makefile.am:
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/message.py:
* src/lib/accerciser/plugin.py:
* src/lib/accerciser/plugin:
* src/lib/accerciser/plugin/Makefile.am:
* src/lib/accerciser/plugin/__init__.py:
* src/lib/accerciser/plugin/base_plugin.py:
* src/lib/accerciser/plugin/message.py:
* src/lib/accerciser/plugin/plugin_manager.py:
* src/lib/accerciser/plugin/view.py:
* src/lib/accerciser/plugin_manager.py:
* src/lib/accerciser/view_manager.py: Moved all plugin-related
code to a seperate package.
* plugins/script_recorder.py:
* src/lib/accerciser/Makefile.am:
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/message.py:
* src/lib/accerciser/plugin.py:
* src/lib/accerciser/plugin_manager.py:
* src/lib/accerciser/view_manager.py: Plugin management
re-factoring. This is a working, intermittent commit
before major file renaming.
2007-05-17 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/plugin.py: Epydoced.
* src/lib/accerciser/tools.py: Epydoced, removed unused Proxy class.
2007-05-16 Eitan Isaacson <eitan@ascender.com>
* plugins/console.py: Epydoced.
* plugins/ipython_view.py: Epydoced.
* plugins/script_recorder.py: Epydoced.
* plugins/api_view.py: Epydoced.
* plugins/event_monitor.glade: Reattached signals that got lost.
* plugins/event_monitor.py: Epydoced.
* src/lib/accerciser/pyatspi.zip: Updated to revision 927.
2007-05-15 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Epydoced.
* plugins/event_monitor.glade:
* plugins/event_monitor.py: Fixed event filtering (bug 438622).
2007-05-14 Eitan Isaacson <eitan@ascender.com>
* README: Bumped to version 0.1.3
* configure.in: Bumped to version 0.1.3
* debian/changelog: Bumped to version 0.1.3
* help/C/accerciser.xml: Changed console example to pyatspi (bug 438056)
2007-05-10 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/pyatspi.zip: Updated to revision 925.
2007-05-10 Eitan Isaacson <eitan@ascender.com>
* README: Updated requirements. Added requirements for Debian
based machines.
* src/lib/accerciser/pyatspi.zip: Updated to revision 924.
* NEWS: Added entry for 0.1.2.
* pixmaps/Makefile.am:
* pixmaps/alert.png:
* pixmaps/column.png:
* pixmaps/desktopframe.png:
* pixmaps/directorypane.png:
* pixmaps/embedded.png:
* pixmaps/endnote.png:
* pixmaps/htmlcontainer.png:
* pixmaps/label.png:
* pixmaps/link.png:
* pixmaps/outlineitem.png:
* pixmaps/pagetab.png:
* pixmaps/passwordtext.png:
* pixmaps/row.png:
* pixmaps/section.png:
* pixmaps/shape.png:
* pixmaps/tablecell.png: Tweaked icons.
2007-05-09 Eitan Isaacson <eitan@ascender.com>
* NOTICE: Added copyright notice for role icons.
* pixmaps/Makefile.am:
* pixmaps/acceleratorlabel.png:
* pixmaps/arrow.png:
* pixmaps/calendar.png:
* pixmaps/canvas.png:
* pixmaps/chart.png:
* pixmaps/checkbox.png:
* pixmaps/checkmenuitem.png:
* pixmaps/colorchooser.png:
* pixmaps/combobox.png:
* pixmaps/dateeditor.png:
* pixmaps/desktopicon.png:
* pixmaps/dialog.png:
* pixmaps/drawingarea.png:
* pixmaps/entry.png:
* pixmaps/filechooser.png:
* pixmaps/filler.png:
* pixmaps/focustraversable.png:
* pixmaps/fontchooser.png:
* pixmaps/frame.png:
* pixmaps/glasspane.png:
* pixmaps/icon.png:
* pixmaps/image.png:
* pixmaps/list.png:
* pixmaps/listitem.png:
* pixmaps/menu.png:
* pixmaps/menubar.png:
* pixmaps/menuitem.png:
* pixmaps/pagetablist.png:
* pixmaps/popupmenu.png:
* pixmaps/progressbar.png:
* pixmaps/pushbutton.png:
* pixmaps/radiobutton.png:
* pixmaps/radiomenuitem.png:
* pixmaps/ruler.png:
* pixmaps/scrollbar.png:
* pixmaps/scrollpane.png:
* pixmaps/separator.png:
* pixmaps/seperator.png:
* pixmaps/slider.png:
* pixmaps/spinbutton.png:
* pixmaps/splitpane.png:
* pixmaps/statusbar.png:
* pixmaps/table.png:
* pixmaps/tearoffmenuitem.png:
* pixmaps/text.png:
* pixmaps/togglebutton.png:
* pixmaps/toolbar.png:
* pixmaps/tree.png:
* pixmaps/treetable.png:
* pixmaps/window.png: Added/modified icons from glade3 icons (bug
431816). Thank you Vincent Geddes!
* plugins/api_view.py: Removed custom list interfaces method, use
pyatspi one.
* plugins/interface_view.py: Removed custom list interfaces
method,use pyatspi one.
* src/accerciser.glade: Added Vincent Geddes to 'about' dialog.
* src/lib/accerciser/accerciser.py: Fixed application quitting.
* src/lib/accerciser/icons.py: Removed role->filename mapping.
* src/lib/accerciser/pyatspi.zip: Updated to snapshot of revision 922.
2007-05-08 Eitan Isaacson <eitan@ascender.com>
* plugins/event_monitor.py: Made load time extremely faster.
* src/accerciser.in: Always enable gail.
* src/lib/accerciser/accerciser.py: Changed no desktop a11y dialog
behavior (bug 429505).
* src/lib/accerciser/plugin_manager.py: Added context menus to
plugin tabs (bug 427059).
* ChangeLog:
* NOTICE:
* help/C/accerciser.xml:
* help/en_GB/en_GB.po:
* help/es/es.po:
* help/sv/sv.po:
* plugins/api_view.py:
* plugins/console.py:
* plugins/event_monitor.py:
* plugins/interface_view.glade:
* plugins/interface_view.py:
* plugins/script_recorder.py:
* src/lib/accerciser/Makefile.am:
* src/lib/accerciser/__init__.py:
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/accessible_treeview.py:
* src/lib/accerciser/hotkey_manager.py:
* src/lib/accerciser/icons.py:
* src/lib/accerciser/node.py:
* src/lib/accerciser/plugin.py:
* src/lib/accerciser/pyLinAcc.zip:
* src/lib/accerciser/pyatspi.zip:
* src/lib/accerciser/script_playback.py:
* src/lib/accerciser/tools.py: Merged pyatspi branch in to trunk.
2007-05-07 Eitan Isaacson <eitan@ascender.com>
* NOTICE: Replaced pyLinAcc copyright notice with pyatspi one.
* help/C/accerciser.xml: Replaced pyLinAcc with pyatspi.
* help/en_GB/en_GB.po: Replaced pyLinAcc with pyatspi.
* help/sv/sv.po: Replaced pyLinAcc with pyatspi.
* plugins/script_recorder.py: Replaced pyLinAcc with pyatspi.
* src/lib/accerciser/Makefile.am: Replaced pyLinAcc.zip with pyatspi.zip.
* src/lib/accerciser/__init__.py: Fall back on zipped pyatspi if
not in distro.
* src/lib/accerciser/accerciser.py: Removed pyLinAcc from epydoc.
* src/lib/accerciser/accessible_treeview.py: Removed pyLinAcc from
epydoc.
* src/lib/accerciser/node.py: Removed pyLinAcc from epydoc.
* src/lib/accerciser/plugin.py: Removed pyLinAcc from epydoc.
* src/lib/accerciser/pyLinAcc.zip: Removed.
* src/lib/accerciser/pyatspi.zip: Added.
* src/lib/accerciser/script_playback.py: Removed pyLinAcc from epydoc.
* src/lib/accerciser/tools.py: Removed pyLinAcc from epydoc.
2007-05-06 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Implemented text, value and hyperlink
sections. Mark unassociated sections as unimplemented.
* plugins/interface_view.glade: Added Hyperlink expander.
2007-05-05 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Implemented table section.
2007-05-05 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Implemented sections for accessible,
action, application, component, document, hypertext, image,
selection and streamable content.
* src/lib/accerciser/accerciser.py: Changed gtk.main to
pyatspi.Registry.start()
2007-05-05 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Changed set_select_function() to be
pygtk 2.8 compatable.
* src/lib/accerciser/accessible_treeview.py: Changed
set_select_function() to be pygtk 2.8 compatable.
2007-05-02 Eitan Isaacson <eitan@ascender.com>
* plugins/api_view.py: Migrated to pyatspi.
* plugins/console.py: Migrated to pyatspi.
* plugins/event_monitor.py: Migrated to pyatspi.
* plugins/interface_view.py: Erased most of file, preparing for a rewrite.
* plugins/script_recorder.py: Migrated to pyatspi.
* src/lib/accerciser/accerciser.py: Migrated to pyatspi.
* src/lib/accerciser/accessible_treeview.py: Migrated to pyatspi.
* src/lib/accerciser/hotkey_manager.py: Migrated to pyatspi.
* src/lib/accerciser/icons.py: Migrated to pyatspi.
* src/lib/accerciser/node.py: Migrated to pyatspi.
* src/lib/accerciser/plugin.py: Migrated to pyatspi.
2007-04-24 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/script_playback.py: Added a quick fix for
headless setups.
2007-04-24 Eitan Isaacson <eitan@ascender.com>
* README: Added gconf-dev as a requirement for builing from SVN.
* plugins/ipython_view.py: * plugins/ipython_view.py: Fixed home
and left key behavior (bug 431882).
2007-04-24 Eitan Isaacson <eitan@ascender.com>
* plugins/ipython_view.py: Fixed argv being None (bug 431878).
2007-04-23 Eitan Isaacson <eitan@ascender.com>
* plugins/api_view.py: Added localized name (bug 432832).
* plugins/console.py: Added localized name (bug 432832).
* plugins/event_monitor.py: Added localized name (bug 432832).
* plugins/interface_view.py: Added localized name (bug 432832).
* plugins/script_recorder.py: Added localized name (bug 432832).
* src/lib/accerciser/accerciser.py: Provide localized component
name in addHotKey().
* src/lib/accerciser/hotkey_manager.py: Provide localized component
name in addHotKey().
* src/lib/accerciser/plugin_manager.py: Added data column for
localized plugin name.
* src/lib/accerciser/accerciser.py: Changed "Top right" to "Top Panel".
* accerciser.schemas.in: Changed default layout to a list format in
/apps/accerciser/[view name]/layout (bug 432697).
* src/lib/accerciser/plugin_manager.py: Changed layout to a list
format in /apps/accerciser/[view name]/layout (bug 432697).
* src/lib/accerciser/tools.py: Added a wrapper class for gconf
list entries.
* src/lib/accerciser/tools.py: Removed obsolete constants and
import line (bug 432423).
2007-04-19 Eitan Isaacson <eitan@ascender.com>
* plugins/Makefile.am: Added script_recorder.glade.
* plugins/script_recorder.glade: Added.
* plugins/script_recorder.py: Added script platform selection.
* src/lib/accerciser/script_playback.py: Fixed some issues with
application focusing.
* README:
* configure.in:
* debian/changelog: Bumped to version 0.1.2.
* plugins/ipython_view.py: Fixed more selection quirks.
2007-04-17 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Fixed syntax error.
* plugins/ipython_view.py: Removed prints.
2007-04-17 Eitan Isaacson <eitan@ascender.com>
* plugins/ipython_view.py: Fixed TAB completion on opn brackets
(bug 427048).
2007-04-16 Eitan Isaacson <eitan@ascender.com>
* plugins/ipython_view.py: * plugins/ipython_view.py: Enable
Home+Shift overwriting in the prompt.
* src/lib/accerciser/script_playback.py: run() now returns
application's PID.
2007-04-16 Eitan Isaacson <eitan@ascender.com>
* plugins/ipython_view.py: Fixed copy/paste bug (#425627).
2007-04-16 Eitan Isaacson <eitan@ascender.com>
* NEWS:
* README: Updated for upcoming release.
2007-04-15 Eitan Isaacson <eitan@ascender.com>
* po/POTFILES.skip: Added accerciser.desktop.in.
2007-04-14 Eitan Isaacson <eitan@ascender.com>
* Makefile.am:
* accerciser.desktop.in.in:
* accerciser.desktop.in:
* configure.in: Swapped accerciser.desktop.in for
accerciser.desktop.in.in (bug 429799).
2007-04-14 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py: Make bottom and top view names
translatable (bug 429824).
* src/lib/accerciser/plugin_manager.py: Make automatically created
view name translatable (bug 429824).
2007-04-14 Eitan Isaacson <eitan@ascender.com>
* plugins/api_view.py: Enabled plugin name for translation (bug 429797).
* plugins/console.py: Enabled plugin name for translation (bug 429797).
* plugins/event_monitor.py: Enabled plugin name for translation
(bug 429797).
* plugins/interface_view.py: Enabled plugin name for translation
(bug 429797).
* plugins/script_recorder.py: Enabled plugin name for translation
(bug 429797).
* src/accerciser.glade: Got rid of faulty domain in glade
constructor. Made some strings translatable.
* src/lib/accerciser/accerciser.py: Made some strings translatable.
* src/lib/accerciser/hotkey_manager.py: Made some strings
translatable (bug 429801).
* src/lib/accerciser/i18n.py.in: Added dummy N_() for later translation.
* src/lib/accerciser/plugin_manager.py: Made some strings
translatable. Allowed translation when necessary of plugin names
(bug 429797).
* po/POTFILES.in: Added all plugin files.
2007-04-14 Eitan Isaacson <eitan@ascender.com>
* plugins/api_view.py: Made some text translatable.
* src/lib/accerciser/i18n.py.in: Enable i18n in glade files.
2007-04-13 Eitan Isaacson <eitan@ascender.com>
* plugins/event_monitor.glade: Changed 'save as' to 'save' so
mnemonics won't overlap.
* plugins/interface_view.glade: Added back mnemonics, fixed
expanders visibility problem.
* plugins/interface_view.py: Don't overwrite label text, it erases
mnemonics.
2007-04-12 Eitan Isaacson <eitan@ascender.com>
* debian/changelog: Corrected version.
* src/lib/accerciser/accerciser.py: Fixed crasher (bug 429184)
2007-04-12 Eitan Isaacson <eitan@ascender.com>
* Makefile.am: Added uninstall gconf schema section (bug 429097).
2007-04-12 Eitan Isaacson <eitan@ascender.com>
* plugins/event_monitor.glade: Changed mnemonics to remove duplicates.
* plugins/interface_view.glade: Removed expander mnemonics will be
fixed with bug 429132. Changed mnemonics to remove duplicates.
* src/accerciser.glade: Changed mnemonics to remove duplicates
(bug 424465).
* src/lib/accerciser/icons.py: Small cleanup.
2007-04-12 Peter Parente <parente@cs.unc.edu>
* accerciser.spec.in: Added gconf schema install, uninstall, and files
2007-04-11 Eitan Isaacson <eitan@ascender.com>
* Makefile.am: Fixed a few things that broke distcheck.
* accerciser.schemas.in: Added, o allow translation.
* accerciser.schemas: Removed.
* help/C/accerciser.xml: Fixed some errors.
* po/POTFILES.in: Added schema file for translation.
2007-04-10 Eitan Isaacson <eitan@ascender.com>
* Makefile.am:
* configure.in:
* icons/Makefile.am:
* icons/custom.png:
* pixmaps:
* pixmaps/Makefile.am:
* pixmaps/acceleratorlabel.png:
* pixmaps/alert.png:
* pixmaps/animation.png:
* pixmaps/calendar.png:
* pixmaps/canvas.png:
* pixmaps/care.png:
* pixmaps/character.png:
* pixmaps/chart.png:
* pixmaps/checkbox.png:
* pixmaps/clock.png:
* pixmaps/colorchooser.png:
* pixmaps/column.png:
* pixmaps/combobox.png:
* pixmaps/cursor.png:
* pixmaps/desktopframe.png:
* pixmaps/desktopicon.png:
* pixmaps/dial.png:
* pixmaps/directorypane.png:
* pixmaps/drawingarea.png:
* pixmaps/embedded.png:
* pixmaps/endnote.png:
* pixmaps/entry.png:
* pixmaps/filechooser.png:
* pixmaps/filler.png:
* pixmaps/fontchooser.png:
* pixmaps/form.png:
* pixmaps/grip.png:
* pixmaps/heading.png:
* pixmaps/helpballoon.png:
* pixmaps/image.png:
* pixmaps/imagemap.png:
* pixmaps/inputmethodwindow.png:
* pixmaps/invalid.png:
* pixmaps/label.png:
* pixmaps/link.png:
* pixmaps/list.png:
* pixmaps/listitem.png:
* pixmaps/menuitem.png:
* pixmaps/outlineitem.png:
* pixmaps/passwordtext.png:
* pixmaps/progressbar.png:
* pixmaps/pushbutton.png:
* pixmaps/row.png:
* pixmaps/ruler.png:
* pixmaps/scrollbar.png:
* pixmaps/scrollpane.png:
* pixmaps/seperator.png:
* pixmaps/shape.png:
* pixmaps/slider.png:
* pixmaps/sound.png:
* pixmaps/spinbutton.png:
* pixmaps/splitpane.png:
* pixmaps/statusbar.png:
* pixmaps/table.png:
* pixmaps/tablecell.png:
* pixmaps/toolbar.png:
* pixmaps/tooltip.png:
* pixmaps/tree.png:
* pixmaps/treetable.png:
* src/lib/accerciser/icons.py: Added custom icons (thanks to James
Stipp).
2007-04-10 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/script_playback.py: Added run(). Made it all
a bit more robust.
2007-04-10 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade: Forgot to add to previuos commit
(bug 428104).
2007-04-09 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Added a 'do action' button
(bug 424463).
2007-04-09 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade:
* plugins/interface_view.py: Make 'show' buttons insensitive when
nothing is selected (bug 424462).
* src/accerciser.in: Put ~/.accerciser in sys.path for convinient user
imports.
2007-04-09 Eitan Isaacson <eitan@ascender.com>
* help/C/accerciser.xml: Updated documentation about global
hotkeys (bug 424489).
2007-04-06 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/plugin_manager.py: PluginView now grabs focus
when alt+<num> is pressed (bug 426744).
2007-04-06 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py: Consume event if HotkeyManager
handles keypress event (bug 424501).
* src/lib/accerciser/hotkey_manager.py: Return true if keypress
was handled in hotkeyPress()
2007-04-06 Eitan Isaacson <eitan@ascender.com>
* plugins/event_monitor.py:
* src/lib/accerciser/accerciser.py: Changed the default global hotkeys.
2007-04-06 Eitan Isaacson <eitan@ascender.com>
* plugins/event_monitor.glade: Put monitor options in paned
instead of an expander (bug 425474)
* plugins/event_monitor.py: Put save dialog inline with run()
instead of a callback.
* plugins/ipython_view.py: Made font monospace.
2007-04-06 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/plugin_manager.py: Reverted plugin tab popup
menus. It was not impleneted correctly. We will do it better at a
later date.
2007-04-05 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/plugin_manager.py: Got the popup key working.
* src/lib/accerciser/hotkey_manager.py: Made the keyval
cellrenderer a simple CellRendererText instead of an inaccessible
CellRendererColumn.
2007-04-05 Peter Parente <parente@cs.unc.edu>
* pyatspi: Temporary home of official Python bindings for AT-SPI
2007-04-04 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/plugin_manager.py: Added context menus to
plugin tabs for changing views.
2007-04-03 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/plugin_manager.py: Started adding context
menu support instead of the inaccessible treeview combo boxes in
the plugin preferences dialog.
2007-04-02 Peter Parente <parente@cs.unc.edu>
* po/ChangeLog: Renamed from incorrect Changelog
* accerciser.spec.in: Added more requirements and fixed description
* accerciser.desktop.in: Enabled startup notify
* configure.in: Added --without-pyreqs flag as a way to avoid checking
for Python modules at build time, moved intltool check after gettext
(seems more robust?), fixed bug #425497
* Makefile.am: reordered subdirs
* accerciser.spec.in: Added locals and --without-pyreqs flag
* Makefile.am: Added po/
* po/LINGUAS: Added per http://live.gnome.org/GnomeGoals/PoLinguas
* configure.in: Changed next version number to 0.1.1 to sync with GNOME
releases, removed ALL_LINGUAS line, added check for intltool 0.35.0
2007-03-30 Peter Parente <parente@cs.unc.edu>
* po/POTFILES.in: Added all translatable files
2007-03-28 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Expander labels show if a given
interface is implemented or not (bug 423749).
2007-03-28 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/pyLinAcc.zip: Repackaged from upstream.
2007-03-27 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/__init__.py: Added me as author.
* src/lib/accerciser/script_playback.py: A wait loop for getting
application focus. This is neccessary if the application takes
time to start up.
* src/lib/accerciser/hotkey_manager.py: Added file header.
2007-03-27 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/hotkey_manager.py: Use key code instead of
textual representation.
2007-03-27 Eitan Isaacson <eitan@ascender.com>
* src/accerciser.glade: Set correct paned positions. Added missing
callbacks to main window.
* src/lib/accerciser/accerciser.py: Save and restore paned positions.
* src/lib/accerciser/plugin_manager.py: refactor PluginManager.
2007-03-23 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/hotkey_manager.py: Added more keys to the key
combo entry.
2007-03-23 Eitan Isaacson <eitan@ascender.com>
* Makefile.am: Added gconf schema and schema installation
* accerciser.schemas: A new schema with default values for plugin layout.
* configure.in: Added gconf stuff
* debian/changelog: Bumped to version 0.2.0
* debian/rules: Added dh_gconf
* plugins/api_view.py: Capitalized plugin name
* plugins/console.py: Capitalized plugin name
* plugins/event_monitor.py: Capitalized plugin name
* plugins/interface_view.py: Capitalized plugin name
* src/lib/accerciser/accerciser.py: Using gconf for saving and
restoring main window size.
* src/lib/accerciser/hotkey_manager.py: Using gconf for saving and
restoring global hotkey combinations.
* src/lib/accerciser/plugin_manager.py: Using gconf for saving and
restoring plugin layout and pluginview dimensions.
* src/lib/accerciser/tools.py: removed old *.ini save/load stuff.
2007-03-21 Eitan Isaacson <eitan@ascender.com>
* plugins/event_monitor.py: Changed to new global hotkey method.
* src/accerciser.glade: Removed plugins dialog, and replaced with
global hotkey scheme.
* src/lib/accerciser/Makefile.am: Added hotkey_manager.py
* src/lib/accerciser/accerciser.py: Removed plugin dialog. Added
preferences dialog and added hotkey manager.
* src/lib/accerciser/hotkey_manager.py: A new global hotkey
manager. A centralized place to do all hotkey configurations.
* src/lib/accerciser/plugin.py: Changed to new global hotkey method.
* src/lib/accerciser/plugin_manager.py: Changed to new global
hotkey method.
2007-03-20 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/node.py: Fix bug 420774.
* src/lib/accerciser/pyLinAcc.zip: Re-packaged with new pyLinAcc
revision (bug 420832).
2007-03-20 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/plugin_manager.py: Fixed bottom pane being always
set to 350 no matter what size it was saved at last session.
* src/lib/accerciser/accessible_treeview.py: Added epydoc
docstrings.
2007-03-19 Eitan Isaacson <eitan@ascender.com>
* src/accerciser.glade: Removed old help dialog.
* src/lib/accerciser/accerciser.py: Added epydoc
docstrings. Removed obsolete methods.
2007-03-18 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py: Show dialog and quit when
desktop accessibility is disabled (bug 418842).
2007-03-16 Peter Parente <parente@cs.unc.edu>
* pyreqs.py: Fixed check for wnck when building RPM
* configure.in: Post release version increment
2007-03-15 Eitan Isaacson <eitan@ascender.com>
* plugins/Makefile.am:
* plugins/script_recorder.py: Added script_recorder.py (bug 419129).
* src/lib/accerciser/Makefile.am:
* src/lib/accerciser/script_playback.py: Added script_playback.py
(bug 419129).
2007-03-15 Peter Parente <parente@cs.unc.edu>
* pyreqs.py: Added check for wnck
2007-03-15 Eitan Isaacson <eitan@ascender.com>
* configure.in: removed accerciser.xml from generated
files. distcheck was not succeeding with it for some reason.
* help/C/accerciser.xml.in: Deleted.
* help/C/accerciser.xml: Added.
* help/Makefile.am: Removed C/accerciser.xml.in from EXTRA_DIST.
2007-03-15 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: Removed debug prints.
* plugins/ipython_view.py: Removed debug prints.
* src/lib/accerciser/accerciser.py: Added program version to
'about' dialog.
* src/lib/accerciser/plugin.py: Removed debug prints.
* src/lib/accerciser/tools.py: Removed debug prints.
2007-03-15 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade: Unexpanded table interface view.
* src/lib/accerciser/accerciser.py: Changes due to changed
settings scheme.
* src/lib/accerciser/plugin_manager.py: Added hardcoded default
settings.
* src/lib/accerciser/tools.py: Changed persisted settings scheme
to an INI format file (~/.accerciser/accerciser.conf).
2007-03-14 Eitan Isaacson <eitan@ascender.com>
* plugins/event_monitor.glade:
* plugins/event_monitor.py: Added mousover feedback and keyboard
control to hyperlinks in the event monitor (bug 417526).
2007-03-14 Eitan Isaacson <eitan@ascender.com>
* plugins/api_view.py:
* plugins/event_monitor.py:
* src/lib/accerciser/accessible_treeview.py:
* src/lib/accerciser/tools.py: Made more resilient to dead
corba objects.
* src/accerciser.glade:
* src/lib/accerciser/accerciser.py: Fixed accelerator issues
(bug 412509).
2007-03-13 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade:
* plugins/interface_view.py: Added Table interface viewer (bug 416188).
2007-03-13 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py: When tabbing to lower panels,
vieport is scrolled if needed (bug 416189).
* src/lib/accerciser/plugin.py: Removed shadow on plugin_area frame.
2007-03-13 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py:
* src/lib/accerciser/plugin_manager.py: Added accelerators for
quick plugin tab switching (bug 417424).
2007-03-13 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade: Added mnemonics to expanders
(bug 417421).
2007-03-13 Eitan Isaacson <eitan@ascender.com>
* plugins/event_monitor.py: Fixed a syntax error.
2007-03-12 Eitan Isaacson <eitan@ascender.com>
* plugins/event_monitor.py: Added links in event logs to show
accessible in tree (bug 417526).
2007-03-12 Peter Parente <parente@cs.unc.edu>
* src/lib/accerciser/accessible_treeview.py: Fixed bug #414915, also
added _buildRow convenience method for constructing new rows without
awareness of the current order of data fields in the model
2007-03-07 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade: Labeled value interface spinner
(bug 414909).
2007-03-07 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade: Made all informative labels
selectable (bug 414911).
2007-03-07 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade: added "label-for" and
"labelled-by" accessible relations where appropriate (bug 414914).
2007-03-07 Eitan Isaacson <eitan@ascender.com>
* plugins/ipython_view.py:
* plugins/console.py: Show appropriate error dialog when IPython
is not installed. And eliminate the need for running ipython from
a shell for the first time.
* src/lib/accerciser/accerciser.py: Fixed bug 415810.
2007-03-07 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/plugin.py: Added an __eq__ method to the
method wrapper class.
2007-03-07 Eitan Isaacson <eitan@ascender.com>
* plugins/api_view.py:
* plugins/console.py:
* plugins/event_monitor.py:
* plugins/interface_view.py:
* src/lib/accerciser/plugin.py: Added error messages to plugin
tabs when something goes wrong (bug 412249).
* src/lib/accerciser/plugin_manager.py: Added a tab to the bottom
plugin view that appears with error messages if plugins failed to
load (bug 412249).
2007-03-03 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/node.py:
* src/lib/accerciser/plugin.py:
* src/lib/accerciser/tools.py: Added epydoc docstrings.
2007-03-02 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade
* plugins/interface_view.py: Added Document interface (Bug 412729).
2007-03-02 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade
* plugins/interface_view.py: Improved Hypertext interface (Bug 412728).
2007-03-02 Eitan Isaacson <eitan@ascender.com>
* src/accerciser.glade:
* src/lib/accerciser/accerciser.py: Added status bar with path to
selected accessible (Bug 412797).
2007-03-02 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade:
* plugins/interface_view.py: Fixed cursor offeset reporting
(Bug 413121).
2007-03-02 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accessible_treeview.py: Activating row blinks
accessible on screen (Bug 413918).
* src/lib/accerciser/node.py: Minor refactor.
2007-03-02 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accessible_treeview.py: Columns are resizable
(Bug 413606).
* src/lib/accerciser/tools.py: Removed debug print when saving
settings.
2007-03-02 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade:
* plugins/interface_view.py: Added minimum, maximum and minimum
increment fields to value interface view (Bug 413151).
2007-03-02 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/plugin_manager.py: Minor cleanup.
* src/accerciser.glade: Changed help hotkey to F1. Still doesn't work.
2007-03-01 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py: Added toggle cellrenderer to
plugin name column in plugin dialog.
* src/lib/accerciser/plugin.py: Added _close method to manually
disconnect signal handlers that hold a reference to the plugin and
don't let it get garbage collected.
* src/lib/accerciser/plugin_manager.py: Added enable/disable
feature that persists.
* src/lib/accerciser/tools.py: Added Proxy class that is currently
not utilized
2007-02-27 Eitan Isaacson <eitan@ascender.com>
* src/accerciser.glade: Got rid of inconsistent padding of bottom
plugin pane (Bug #412510).
2007-02-27 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py: Persist window size (Bug #412417).
* src/lib/accerciser/plugin_manager.py: Persist plugin view sizes.
* src/lib/accerciser/tools.py: Added methods for loading/saving
settings.
* src/accerciser.glade: Use inner vbox for top level
widget. Create gtk.Window manually.
2007-02-27 Peter Parente <parente@cs.unc.edu>
* src/lib/accerciser/pyLinAcc.zip: Updated from LSR proper
2007-02-27 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accessible_treeview.py: Revert the last
changes. (Remove public method for setting cursor, it doesn't do
what I thought it would).
* plugins/interface_view.glade: Added a 'show' button for relation
view. (Bug #412272)
* plugins/interface_view.py: Added proper callbacks for the 'show'
button
2007-02-26 Eitan Isaacson <eitan@ascender.com>
* plugins/api_view.py: Hide private attributes by default.
* plugins/interface_view.py: Disable selection of headers in
relation view. Dummy callback for selection in relation view, to
be continued.
* plugins/ipython_view.py: System commands now ouput in the
shell window (Bug #412235).
* src/lib/accerciser/accessible_treeview.py: Added public method
for setting tree view cursor on given accessible.
2007-02-26 Eitan Isaacson <eitan@ascender.com>
* plugins/console.py: Added show() function for selecting an
accessible object in the treeview.
* src/lib/accerciser/accessible_treeview.py: Don't expand selected
accessible.
2007-02-22 Eitan Isaacson <eitan@ascender.com>
* src/lib/accerciser/accerciser.py: Refresh current callback.
* src/lib/accerciser/accessible_treeview.py: Some
refactoring. more dependable auto refresh.
* src/accerciser.glade: Refresh current in view menu.
2007-02-23 Peter Parente <parente@cs.unc.edu>
* src/lib/accerciser/plugin_manager.py: Iterating over keys list in
dictionary instead of using dictionary iterator to avoid size changes
* help/C/accerciser.xml.in: Using autotools version number, fixed intro
paragraph
* plugins/console.py: Pulled __dict__ from Constants and Interfaces to
add to local console namespace
* accerciser.spec.in: Added custom_release
* plugins/console.py: Raise exception when .ipython not created
* src/lib/accerciser/plugin_manager.py: Added try/except around init
* accerciser.spec.in: Fixed so rpmbuild works
* src/lib/accerciser/accerciser.py: Fixed wrong method name
* src/lib/accerciser/accessible_treeview.py: Added method for
refreshing the current level (not being used yet in the UI)
* plugins/interface_view.glade: Fixed pre-expanded text view
2007-02-22 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.glade (Module): Fixed a few misnamed callbacks
2007-02-22 Eitan Isaacson <eitan@ascender.com>
* plugins/api_view.py (Module): restored it. Did Pete forget 'cvs add'?
(Pete: yes I did :))
* src/lib/accerciser/accerciser.py (Module): Select accessible
with mouseover now works.
2007-02-22 Peter Parente <parente@cs.unc.edu>
* help/accerciser.omf.in: Fixed legal info
* src/lib/accerciser/Makefile.am: Added DISTCLEANFILES
* help/Makefile.am: Added DISTCLEANFILES
* examples/: Removed
* plugins/console.py: Changed human readable name to IPython console
* plugins/viewport_demo.py: Renamed to api_view.py
* src/accerciser.glade: Fixed copyright date
* src/accerciser.in: Fixed icon not loading
* src/lib/accerciser/pyLinAcc.zip: Updated from LSR, added version date
file
* src/lib/accerciser/plugin_manager.py: Handle plugins with unresolved
dependencies
* help/C/legal.xml: BSD license
* help/C/accerciser.xml: Version number from autoconf
* configure.in: Version number from autoconf
* accerciser.spec.in: Version number from autoconf
* accerciser.desktop.in: New description
* NEWS: Updated
* README: Updated
* help/C/accerciser.xml: Fixed some documentation errors
* plugins/console.py: Added header info, i18n
* plugins/event_monitor.py: Added header info, i18n
* plugins/interface_view.py: Added header info, i18n
* plugins/viewport_demo.py: Renamed to api_view.py, added header info,
i18n
* src/accerciser.glade: Updated license and artist info
* src/accerciser.in: Added global icon info, moved main loop, correct
version numbering
* src/lib/accerciser/__init__.py: Moved main loop here
* src/lib/accerciser/accerciser.py: Added header info, i18n
* src/lib/accerciser/accessible_treeview.py: Added header info
* src/lib/accerciser/i18n.py.in: Corrected prefix
* src/lib/accerciser/icons.py: Added header info
* src/lib/accerciser/nodes.py: Added header info
* src/lib/accerciser/plugin.py: Added header info
* src/lib/accerciser/plugin_manager.py: Added header info
* src/lib/accerciser/tools.py: Added header info
2007-02-22 Eitan Isaacson <eitan@ascender.com>
* Makefile.am (Module):
* accerciser.png (Module):
* accerciser.svg (Module):
* icons/Makefile.am (Module):
* icons/accerciser-16.png (Module):
* icons/accerciser-22.png (Module):
* icons/accerciser-32.png (Module):
* icons/accerciser-small.svg (Module):
* icons/accerciser.png (Module):
* icons/accerciser.svg (Module): Logo rework.
* src/accerciser.glade (Module):
2007-02-21 Eitan Isaacson <eitan@ascender.com>
* plugins/ipython_view.py (Message): The cursor could not leave
the editable command line.
2007-02-21 Eitan Isaacson <eitan@ascender.com>
* accerciser.png (Module):
* accerciser.svg (Module): New PC logo.
2007-02-21 Eitan Isaacson <eitan@ascender.com>
* Makefile.am (Module):
* configure.in (Module):
* pkg/.cvsignore (Module):
* pkg/Makefile.am (Module):
* pkg/accerciser/.cvsignore (Module):
* pkg/accerciser/Makefile.am (Module):
* pkg/accerciser/__init__.py (Module):
* pkg/accerciser/accerciser.py (Module):
* pkg/accerciser/accessible_treeview.py (Module):
* pkg/accerciser/i18n.py.in (Module):
* pkg/accerciser/icons.py (Module):
* pkg/accerciser/node.py (Module):
* pkg/accerciser/plugin.py (Module):
* pkg/accerciser/plugin_manager.py (Module):
* pkg/accerciser/pyLinAcc.zip (Module):
* pkg/accerciser/tools.py (Module):
* src/Makefile.am (Module):
* src/lib/Makefile.am (Module):
* src/lib/accerciser/.cvsignore (Module):
* src/lib/accerciser/Makefile.am (Module):
* src/lib/accerciser/__init__.py (Module):
* src/lib/accerciser/accerciser.py (Module):
* src/lib/accerciser/accessible_treeview.py (Module):
* src/lib/accerciser/i18n.py.in (Module):
* src/lib/accerciser/icons.py (Module):
* src/lib/accerciser/node.py (Module):
* src/lib/accerciser/plugin.py (Module):
* src/lib/accerciser/plugin_manager.py (Module):
* src/lib/accerciser/pyLinAcc.zip (Module):
* src/lib/accerciser/tools.py (Module): Moved accerciser package
from pkg to src/lib
2007-02-21 Eitan Isaacson <eitan@ascender.com>
* Makefile.am (Module):
* configure.in (Module):
* src/Makefile.am (Module):
* src/accerciser.glade (Module):
* src/accerciser.in (Module):
* accerciser.glade (Module):
* accerciser.in (Module): Undid move.
2007-02-21 Eitan Isaacson <eitan@ascender.com>
* pkg/accerciser/i18n.py.in (Module): Localization.
* Makefile.am (Module): Fixed icon updating.
* configure.in (Module):
* pkg/accerciser/accerciser.py (Module): Added app icon to window.
* pkg/accerciser/plugin_manager.py (Module): Fixed .accerciser
direcotry creation
* src/accerciser (Module): Not needed. Removed.
* accerciser.spec (Module): Not needed. Removed.
* help/C/Makefile.am (Module): Not needed. Removed.
2007-02-20 Eitan Isaacson <eitan@ascender.com>
* Makefile.am (Module):
* accerciser.desktop.in (Module):
* accerciser.png (Module):
* accerciser.svg (Module): Fixed desktop file and added
application icons.
* debian/menu (Module):
* debian/rules (Module): Fixed a few things related to scrollkeeper.
* help/Makefile.am (Module):
* help/accerciser.omf.in (Module):
* help/C/accerciser.xml (Module):
* help/C/figures/accerciser.png (Module):
* help/C/figures/api_browser.png (Module):
* help/C/figures/event_monitor.png (Module):
* help/C/figures/interface_viewer.png (Module): Fixed help
docs. They should work now.
* pkg/accerciser/accerciser.py (Module):
* src/accerciser (Module):
* src/accerciser.glade (Module):
* src/accerciser.in (Module): Changed help menu to start
Yelp. Fixed about dialog to show app icon.
2007-02-19 Peter Parente <parente@cs.unc.edu>
* src/accerciser.in (Module): Fixed some sys.path issues.
2007-02-19 Eitan Isaacson <eitan@ascender.com>
* src/accerciser.in (Module): Fixed some sys.path issues.
2007-02-19 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py (Module): Cleanup, reordering of
methods. New fancy IText controls.
2007-02-19 Eitan Isaacson <eitan@ascender.com>
* help/.cvsignore (Module): Added
* pkg/accerciser/tools.py (Module): Fixed crasher.
* po/.cvsignore (Module): Added
2007-02-19 Peter Parente <parente@cs.unc.edu>
* src/accerciser.in: fixed sys.prefix and paths for locating
accerciser packages and pyLinAcc
2007-02-16 Peter Parente <parente@cs.unc.edu>
* configure.in: fixed linguas
* COPYING: corrected license
* NOTICE: corrected info
* COPYING.lib: removed
2007-02-16 Eitan Isaacson <eitan@ascender.com>
* pkg/accerciser/tools.py (Message): Fixed isMyApp method.
2007-02-16 Eitan Isaacson <eitan@ascender.com>
* .cvsignore (Module):
* Makefile.am (Module):
* configure.in (Module):
* debian/accerciser.xpm (Module):
* debian/compat (Module):
* debian/control (Module):
* debian/install (Module):
* debian/menu (Module):
* debian/rules (Module):
* help/Makefile.am (Module):
* help/accerciser.omf.in (Module):
* help/C/Makefile.am (Module):
* help/C/accerciser.xml (Module):
* help/C/legal.xml (Module):
* help/C/figures/accerciser.png (Module):
* po/Makefile.in.in (Module):
* po/POTFILES.in (Module): Added help system.
2007-02-16 Eitan Isaacson <eitan@ascender.com>
* .cvsignore (Module):
* COPYING (Module):
* INSTALL (Module):
* Makefile.am (Module):
* NEWS (Module):
* accerciser.desktop.in (Module):
* accerciser.spec.in (Module):
* acinclude.m4 (Module):
* autogen.sh (Module):
* configure.in (Module):
* pyreqs.py (Module):
* icons/Makefile.am (Module):
* pkg/Makefile.am (Module):
* pkg/accerciser/.cvsignore (Module):
* pkg/accerciser/Makefile.am (Module):
* pkg/accerciser/accerciser.py (Module):
* plugins/Makefile.am (Module):
* plugins/event_monitor.glade (Module):
* src/.cvsignore (Module):
* src/Makefile.am (Module):
* src/accerciser (Module):
* src/accerciser.in (Module): Package now builds via automake.
2007-02-15 Eitan Isaacson <eitan@ascender.com>
* pkg/accerciser/accerciser.py (Module):
* pkg/accerciser/accessible_treeview.py (Module): Redid auto
update feature. Still not perfect.
* pkg/accerciser/tools.py (Module):
* plugins/event_monitor.py (Module): Decoupled logging and
textview printout.
* plugins/ipython_view.py (Module): Got rid of weird IPython
exception hook.
2007-02-14 Eitan Isaacson <eitan@ascender.com>
* pkg/accerciser/plugin_manager.py (Message): If the .accerciser
direcotry does not exist - create it.
2007-02-14 Eitan Isaacson <eitan@ascender.com>
* pkg/accerciser/plugin_manager.py (Message): Fixed use-case of no
layout file.
2007-02-13 Eitan Isaacson <eitan@ascender.com>
* examples/console_demo.py (Module):
* plugins/console_demo.py (Module): Moved console_demo.py to examples.
2007-02-13 Eitan Isaacson <eitan@ascender.com>
* plugins/interface_view.py (Message): Only populate interface
views when they are expanded.
2007-02-13 Eitan Isaacson <eitan@ascender.com>
* plugins/console.py (Message): Added pyLinAcc.__dict__ to shell's
namespace
* plugins/ipython_view.py (Message): Better auto-completion.
2007-02-13 Eitan Isaacson <eitan@ascender.com>
* pkg/accerciser/plugin_manager.py (Message): Keep plugin tab
order persistant.
2007-02-13 Eitan Isaacson <eitan@ascender.com>
* pkg/accerciser/tools.py (Module): Added Tools class. For now it
just has a method to test if in accessible is a child of the
current accerciser process.
* pkg/accerciser/accerciser.py (Module): Use Tools.isMyApp()
* pkg/accerciser/plugin.py (Module): Plugin base class inherits Tools.
* plugins/event_monitor.py (Module): Use Tools.isMyApp()
* pkg/accerciser/accessible_treeview.py (Module): Expanding does
not automatically select an accessible. Made self insensitive.
2007-02-12 Eitan Isaacson <eitan@ascender.com>
* pkg/accerciser/accessible_treeview.py (Module): Handle exception
if path to an accessible does not exist.
* plugins/interface_view.glade (Module):
* plugins/interface_view.py (Module): Added relations view.
(Module):
2007-02-12 Eitan Isaacson <eitan@ascender.com>
* pkg/accerciser/plugin.py (Module):
* pkg/accerciser/plugin_manager.py (Module): Handle current
accessible in plugin load time.
* plugins/event_monitor.py (Module):
* plugins/interface_view.glade (Module):
* plugins/interface_view.py (Module): Better expander
behavior. Only the expander's children become insensitive.
(Module):
2007-02-12 Eitan Isaacson <eitan@ascender.com>
* pkg/accerciser/accerciser.py (Module): Check if pane exists
befaure resizing
* pkg/accerciser/plugin_manager.py (Module): Add plugin file's
direcotory to sys.path.
* plugins/event_monitor.glade (Module):
* plugins/event_monitor.py (Module): Redid some UI
elements, collabsable event chooser, got rid of top menu bar.
2007-02-12 Eitan Isaacson <eitan@ascender.com>
* plugins/console.py (Module): New interactive console plugin.
* plugins/ipython_view.py (Module): Generic module that provides
an IPython console in a textview.
(Module):
2007-02-06 Eitan Isaacson <eitan@ascender.com>
* debian/accerciser.xpm (Module):
* debian/changelog (Module):
* debian/compat (Module):
* debian/control (Module):
* debian/copyright (Module):
* debian/install (Module):
* debian/menu (Module):
* debian/pycompat (Module):
* debian/pyversions (Module):
* debian/rules (Module): Added debian packaging.
* setup.py (Module): glob *.* in plugins instead of just *.py
* pkg/accerciser/plugin_manager.py (Module): Position new window
at mouse center.
(Module):
* plugins/interface_view.glade (Module):
* plugins/interface_view.py (Module): Some cleanup.
(Module):
|