~knitzsche/ubuntuone-client/ubuntuone-client-copyright-formatted

« back to all changes in this revision

Viewing changes to ubuntuone/syncdaemon/event_queue.py

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya
  • Date: 2010-07-14 16:47:12 UTC
  • mfrom: (1.1.25 upstream)
  • Revision ID: james.westby@ubuntu.com-20100714164712-j0mbmrqzwombva9i
Tags: 1.3.4-0ubuntu1
* New upstream release:
  - Do all Syncdaemon access via DBus from libsyncdaemon, no more direct DBus
    calls in the Nautilus plugin (Rodrigo Moya)
  - Support for Generations in AQ (Facundo Batista)
  - Add introspection support for automatic generation of bindings
    (Rodrigo Moya)
  - Use a sexier search entry for the contacts picker (Rodrigo Moya)
  - Add contacts list view and add a build time option to enable the grid
    view (Rodrigo Moya)
  - Add progress bar to show progress when enabling/disabling UDFs
    (Rodrigo Moya)
  - Initial implementation (not yet used by states) of new "server/volumes
    rescan" and minor cleanup of root node_id handling to get it from the
    volumes query result instead from the SYS_ROOT_RECEIVED event
    (Guillermo Gonzalez)
  - Add VolumeManager.update_generation(volume_id, generation) method
    (Guillermo Gonzalez)
  - Support new generation in successful client requests (Facundo Batista)
  - Add information about what u1-disabled means and change wording
    (Rodrigo Moya)
  - Show back the recently used contacts at the beginning of the contacts list
    (Rodrigo Moya)
  - Simplify share dialog by removing the share name entry (Rodrigo Moya)
* debian/control:
* debian/gir1.0-syncdaemon-1.0.install:
  - Add introspection package for libsyncdaemon

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    'FS_DIR_MOVE': ('path_from', 'path_to',),
44
44
    'FS_INVALID_NAME': ('dirname', 'filename',),
45
45
 
46
 
    'AQ_FILE_NEW_OK': ('marker', 'new_id'),
 
46
    'AQ_FILE_NEW_OK': ('marker', 'new_id', 'new_generation'),
47
47
    'AQ_FILE_NEW_ERROR': ('marker', 'error'),
48
 
    'AQ_DIR_NEW_OK': ('marker', 'new_id'),
 
48
    'AQ_DIR_NEW_OK': ('marker', 'new_id', 'new_generation'),
49
49
    'AQ_DIR_NEW_ERROR': ('marker', 'error'),
50
 
    'AQ_MOVE_OK': ('share_id', 'node_id'),
 
50
    'AQ_MOVE_OK': ('share_id', 'node_id', 'new_generation'),
51
51
    'AQ_MOVE_ERROR': ('share_id', 'node_id',
52
52
                      'old_parent_id', 'new_parent_id', 'new_name', 'error'),
53
 
    'AQ_UNLINK_OK': ('share_id', 'parent_id', 'node_id'),
 
53
    'AQ_UNLINK_OK': ('share_id', 'parent_id', 'node_id', 'new_generation'),
54
54
    'AQ_UNLINK_ERROR': ('share_id', 'parent_id', 'node_id', 'error'),
55
55
    'AQ_DOWNLOAD_STARTED': ('share_id', 'node_id', 'server_hash'),
56
56
    'AQ_DOWNLOAD_FILE_PROGRESS': ('share_id', 'node_id',
63
63
    'AQ_UPLOAD_STARTED' : ('share_id', 'node_id', 'hash'),
64
64
    'AQ_UPLOAD_FILE_PROGRESS': ('share_id', 'node_id',
65
65
                                'n_bytes_written', 'deflated_size'),
66
 
    'AQ_UPLOAD_FINISHED': ('share_id', 'node_id', 'hash'),
 
66
    'AQ_UPLOAD_FINISHED': ('share_id', 'node_id', 'hash', 'new_generation'),
67
67
    'AQ_UPLOAD_ERROR': ('share_id', 'node_id', 'error', 'hash'),
68
68
    'AQ_SHARES_LIST': ('shares_list',),
69
69
    'AQ_LIST_SHARES_ERROR': ('error',),
85
85
    'AQ_CHANGE_PUBLIC_ACCESS_ERROR': ('share_id', 'node_id', 'error'),
86
86
    'AQ_PUBLIC_FILES_LIST_OK': ('public_files',),
87
87
    'AQ_PUBLIC_FILES_LIST_ERROR': ('error',),
 
88
    'AQ_DELTA_OK': ('delta_content', 'end_generation', 'full', 'free_bytes'),
 
89
    'AQ_DELTA_ERROR': ('volume_id', 'error'),
 
90
    'AQ_DELTA_NOT_POSSIBLE': ('volume_id',),
88
91
 
89
92
    'SV_SHARE_CHANGED': ('info',),
90
93
    'SV_SHARE_DELETED': ('share_id',),
99
102
    'SV_ACCOUNT_CHANGED': ('account_info',),
100
103
    'SV_VOLUME_CREATED': ('volume',),
101
104
    'SV_VOLUME_DELETED': ('volume_id',),
 
105
    'SV_VOLUME_NEW_GENERATION': ('volume_id', 'generation'),
102
106
 
103
107
    'HQ_HASH_NEW': ('path', 'hash', 'crc32', 'size', 'stat'),
104
108
    'HQ_HASH_ERROR': ('mdid',),
123
127
    'SYS_AUTH_ERROR': ('error',),
124
128
    'SYS_AUTH_OK': (),
125
129
    'SYS_SERVER_RESCAN_DONE': (),
 
130
    'SYS_SERVER_RESCAN_ERROR': ('error',),
126
131
    'SYS_META_QUEUE_WAITING': (),
127
132
    'SYS_META_QUEUE_BLOCKED': (),
128
133
    'SYS_META_QUEUE_DONE': (),