~didrocks/ubuntuone-client/use_result_var

« back to all changes in this revision

Viewing changes to ubuntuone/platform/linux/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Rodney Dawes
  • Date: 2011-02-11 16:18:11 UTC
  • mfrom: (1.1.44 upstream)
  • Revision ID: james.westby@ubuntu.com-20110211161811-lbelxu332e8r2dov
Tags: 1.5.4-0ubuntu1
* New upstream release.
  - Files still get downloaded from unsubscribed folder (LP: #682878)
  - Add subscription capabilities to shares (LP: #708335)
  - Nautilus offers Publish option within other's shares (LP: #712674)
  - Shares dir name may not be unique (LP: #715776)
  - Send a notification when new Volume is available (LP: #702055)
  - Add messaging menu entry for new Volumes (LP: #702075)
  - Aggregate notifications for completed operations (LP: #702128)
  - Send a notification for new Share offers (LP: #702138)
  - Add messaging menu entry for new Share offers (LP: #702144)
* Remove ubuntuone-client-tools as u1sync has been moved out.
* Simplify python package as we don't have multiple python packages now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    remove_dir,
36
36
    remove_file,
37
37
    rename,
 
38
    make_link,
38
39
    set_dir_readonly,
39
40
    set_dir_readwrite,
 
41
    set_no_rights,
40
42
    set_file_readonly,
41
43
    set_file_readwrite,
42
44
    stat_path,
43
45
)
44
 
from ubuntuone.platform.linux.vm_helper import (create_shares_link,
45
 
    get_udf_path_name, get_udf_path, get_share_path, VMMetadataUpgraderMixIn)
46
 
from ubuntuone.platform.linux import tools, event_logging
47
 
from filesystem_notifications import FilesystemMonitor
48
 
 
 
46
from ubuntuone.platform.linux.vm_helper import (
 
47
    create_shares_link,
 
48
    get_share_path,
 
49
    get_udf_path_name, 
 
50
    get_udf_path,
 
51
    VMMetadataUpgraderMixIn
 
52
)
 
53
from ubuntuone.platform.linux.credentials import CredentialsManagement
 
54
from ubuntuone.platform.linux.logger import setup_filesystem_logging, get_filesystem_logger
 
55
from ubuntuone.platform.linux.api.restclient import RestClient
 
56
from ubuntuone.platform.linux.filesystem_notifications import FilesystemMonitor
 
57
from ubuntuone.platform.linux.notification import Notification
49
58
 
50
59
class ExternalInterface(object):
51
60
    """An ExternalInterface implemented with a DBus interface."""