~ubuntu-branches/ubuntu/raring/epoptes/raring

« back to all changes in this revision

Viewing changes to epoptes/daemon/exchange.py

  • Committer: Package Import Robot
  • Author(s): Alkis Georgopoulos
  • Date: 2012-02-06 23:23:38 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120206232338-vapepfwyo7tmpe36
Tags: 0.4.2-1
* If epoptes is ran from a thin client, don't display that client.
* Background epoptes-client when running from if-up.
* Log less, and let twistd handle the rotation.
* Translation updates.
* Don't fail when the last thumbnail byte is a space.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
 
34
34
def clientConnected(handle, client):
35
 
    print "Client connected: %s" % handle.encode("utf-8")
 
35
#    print "Client connected: %s" % handle.encode("utf-8")
36
36
    knownClients[handle] = client
37
37
    for gui in knownGUIs:
38
38
        gui.clientConnected(handle)
43
43
        print "Disconnect from unknown client: %s" % handle.encode("utf-8")
44
44
        return
45
45
 
46
 
    print "Client disconnected: %s" % handle.encode("utf-8")
 
46
#    print "Client disconnected: %s" % handle.encode("utf-8")
47
47
    del knownClients[handle]
48
48
    for gui in knownGUIs:
49
49
        gui.clientDisconnected(handle)