~ubuntu-branches/ubuntu/hardy/gnome-orca/hardy

« back to all changes in this revision

Viewing changes to src/orca/scripts/self_voicing.py

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-04-26 11:06:56 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20070426110656-uwpmlvdkave5jwrg
Tags: 2.19.1-0ubuntu1
* Synchronized with Debian, remaining Ubuntu changes:
  - debian/control:
    - newer Depends/Build-Depends, add Packages python-orca-brlapi and
      python-orca-brlapi-dbg.
  - debian/patches/01_add_ubiquity-script.dpatch,
    debian/patches/01_libbrlapi_fix.dpatch,
    debian/patches/01_link_libbrlapi.dpatch,
    debian/patches/01_no_default_desktop_item.dpatch,
    debian/patches/02_libbrlapi_fix.dpatch: added patches.
  - debian/rules, debian/control:
    - use pycentral, build python packages.
  - debian/copyright, debian/README.Debian: give credit to Luke Yelavich.
  - debian/install: python2.4 -> python*, install *.so files to different
    package.
  - debian/watch: added.
* New upstream release.
* debian/control:
  - added python-gconf as Build-Depends and Depends.
  - set Maintainer: Ubuntu Accessibility Developers
    <ubuntu-accessibility-devel@lists.ubuntu.com>
* debian/patches/01_add_ubiquity-script.dpatch:
  - updated.
* debian/patches/01_no_default_desktop_item.dpatch:
  - removed .rej file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
"""A script to do nothing.  This is for self-voicing apps."""
21
21
 
22
 
__id__        = "$Id: self_voicing.py 1036 2006-06-10 00:54:48Z wwalker $"
23
 
__version__   = "$Revision: 1036 $"
24
 
__date__      = "$Date: 2006-06-09 20:54:48 -0400 (Fri, 09 Jun 2006) $"
 
22
__id__        = "$Id: self_voicing.py 2171 2007-03-13 16:14:46Z richb $"
 
23
__version__   = "$Revision: 2171 $"
 
24
__date__      = "$Date: 2007-03-13 12:14:46 -0400 (Tue, 13 Mar 2007) $"
25
25
__copyright__ = "Copyright (c) 2005-2006 Sun Microsystems Inc."
26
26
__license__   = "LGPL"
27
27
 
28
 
import orca.script
 
28
import orca.default as default
29
29
 
30
 
class Script(orca.script.Script):
 
30
class Script(default.Script):
31
31
    """A script to do nothing.  This is for self-voicing apps."""
32
32
    
33
33
    def __init__(self, app):
39
39
        - app: the Python Accessible application to create a script for
40
40
        """
41
41
 
42
 
        orca.script.Script.__init__(self, app)
 
42
        default.Script.__init__(self, app)
43
43
 
44
44
    def getBrailleGenerator(self):
45
45
        """Returns the braille generator for this script.