~ubuntu-branches/ubuntu/maverick/coherence/maverick

« back to all changes in this revision

Viewing changes to coherence/extern/louie/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Charlie Smotherman
  • Date: 2010-01-02 10:57:15 UTC
  • mfrom: (1.1.7 upstream) (3.2.8 sid)
  • Revision ID: james.westby@ubuntu.com-20100102105715-sghzl2nw4lr5b1ob
Tags: 0.6.6.2-1
*  New  upstream release, summary of changes:
    - adding all necessary files to MANIFEST.in, to compensate for the
      gone 'auto-include-all-files-under-version-control' setuptools
      feature.
    - rearranging genre and genres attribute in DIDLLite - thx Caleb  
    - fix face_path typo, fixes #275.   

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
__all__ = [
2
 
    'dispatcher',
3
 
    'error',
4
 
    'plugin',
5
 
    'robustapply',
6
 
    'saferef',
7
 
    'sender',
8
 
    'signal',
9
 
    'version',
10
 
 
11
 
    'connect',
12
 
    'disconnect',
13
 
    'get_all_receivers',
14
 
    'reset',
15
 
    'send',
16
 
    'send_exact',
17
 
    'send_minimal',
18
 
    'send_robust',
19
 
 
20
 
    'install_plugin',
21
 
    'remove_plugin',
22
 
    'Plugin',
23
 
    'QtWidgetPlugin',
24
 
    'TwistedDispatchPlugin',
25
 
 
26
 
    'Anonymous',
27
 
    'Any',
28
 
 
29
 
    'All',
30
 
    'Signal',
31
 
    ]
32
 
 
33
 
import dispatcher, error, plugin, robustapply, \
34
 
       saferef, sender, signal, version
35
 
 
36
 
from dispatcher import \
37
 
     connect, disconnect, get_all_receivers, reset, \
38
 
     send, send_exact, send_minimal, send_robust
39
 
 
40
 
from plugin import \
41
 
     install_plugin, remove_plugin, Plugin, \
42
 
     QtWidgetPlugin, TwistedDispatchPlugin
43
 
 
44
 
from sender import Anonymous, Any
45
 
 
46
 
from signal import All, Signal