Changeset 2514

Show
Ignore:
Timestamp:
11/19/08 00:30:26 (7 weeks ago)
Author:
bzr
Message:

pythonConsole: Include log, queueHandler, speech and braille in the console namespace.

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk

    • Property bzr:revision-info
      •  

        old new  
        1 timestamp: 2008-11-18 22:32:51.839999914 +0100 
        2 committer: Peter Vágner <peter.v@datagate.sk> 
         1timestamp: 2008-11-19 10:29:03.690000057 +1000 
         2committer: James Teh <jamie@jantrid.net> 
        33properties:  
        44        branch-nick: main 
    • Property bzr:revision-id:v3-list-QlpoOTFBWSZTWbrL2vUAAB1VgAAQABCAQDrrnqAgAFCgaaGRkxBoTIJ6mmaNRwhndFAoNhZjh_YY4a01fOg1ulgNNC2UrzPdXXEnDpX8XckU4UJC6y9r1A..
      •  

        old new  
        2832832311 mick@kulgan.net-20081118094843-3zrx7gckwlcw01w3 
        2842842312 peter.v@datagate.sk-20081118213251-tb3mozki0dlndqdd 
         2852313 jamie@jantrid.net-20081119002903-qad2w6vrs43u1x09 
    • Property bzr:file-ids
      •  

        old new  
        1 source/locale/cs/LC_MESSAGES/nvda.po    792@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2Flocale%2Fcs%2FLC_MESSAGES%2Fnvda.po 
        2 source/locale/fi/LC_MESSAGES/nvda.po    600@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2Flocale%2Ffi%2FLC_MESSAGES%2Fnvda.po 
         1source/pythonConsole.py pythonconsole.py-20080403145126-btxkiuauiefll29c-1 
  • trunk/source/pythonConsole.py

    r2331 r2514  
    1212import api 
    1313import gui 
     14from logHandler import log 
     15import braille 
    1416 
    1517#: The singleton Python console UI instance. 
     
    164166                        "nav": api.getNavigatorObject(), 
    165167                        "mouse": api.getMouseObject(), 
     168                        "log": log, 
     169                        "queueHandler": queueHandler, 
     170                        "speech": speech, 
     171                        "braille": braille, 
    166172                }) 
    167173