Merge lp://staging/~mandel/ubuntuone-client/notification-center-support into lp://staging/ubuntuone-client
Proposed by
Manuel de la Peña
Status: | Rejected |
---|---|
Rejected by: | dobey |
Proposed branch: | lp://staging/~mandel/ubuntuone-client/notification-center-support |
Merge into: | lp://staging/ubuntuone-client |
Diff against target: |
351 lines (+309/-0) 6 files modified
tests/platform/notification/test_darwin.py (+150/-0) ubuntuone/platform/filesystem_notifications/monitor/darwin/fsevents_client.py (+1/-0) ubuntuone/platform/notification/__init__.py (+3/-0) ubuntuone/platform/notification/darwin/__init__.py (+53/-0) ubuntuone/platform/notification/darwin/growl.py (+53/-0) ubuntuone/platform/notification/darwin/notification_center.py (+49/-0) |
To merge this branch: | bzr merge lp://staging/~mandel/ubuntuone-client/notification-center-support |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Mike McCracken (community) | Needs Fixing | ||
dobey (community) | Needs Fixing | ||
Review via email:
|
Commit message
- Added support for the notification center and growl (LP: #1044315).
Description of the change
- Added support for the notification center and growl (LP: #1044315).
The following dependencies have been added which are probably no in your system:
http://
https:/
You can test it IRL by starting sd and adding a big file to the Ubuntu One folder, you should see a notificaiton.
To post a comment you must log in.
Unmerged revisions
- 1310. By Manuel de la Peña
-
Do not duplicate strings.
- 1309. By Manuel de la Peña
-
Do not use growl all the time.
- 1308. By Manuel de la Peña
-
Compare ints no strings.
- 1307. By Manuel de la Peña
-
Added support for growl in older versions. Added tests.
- 1306. By Manuel de la Peña
-
Do call notify.
- 1305. By Manuel de la Peña
-
Added support for the os x 10.8 notification center.
+APPLICATION_NAME = 'Ubuntu One Client'
We shouldn't duplicate this string in multiple places. Also, I think this should probably just be 'Ubuntu One'.
Also, what do these 2 notifications actually look like? Can you provide screen shots of them?