Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/downloadmanager.py
diff options
context:
space:
mode:
authorSascha Silbe <silbe@activitycentral.com>2011-06-07 16:08:28 (GMT)
committer Sascha Silbe <silbe@activitycentral.com>2011-06-12 15:56:22 (GMT)
commit6c790f7bd5f2b8df3af6fe2e94f9e42128ed708f (patch)
tree089a9661579b63fe2810949a02099ea9f195e185 /downloadmanager.py
parentb12f6accbe6d2d637389a79356d777a7b784a7d3 (diff)
Clarify warning on Stop with pending downloads (SL#1508)
The warning previously used the word "cancel" to describe two antagonistic operations: Not continuing the download (including erasing it from the Journal) and not stopping Browse. The new wording was agreed upon [1] by the Design Team. [1] http://meeting.sugarlabs.org/sugar-meeting/meetings/2011-05-29T16:09:15.html Closes: SL#1508 Signed-off-by: Sascha Silbe <silbe@activitycentral.com>
Diffstat (limited to 'downloadmanager.py')
-rw-r--r--downloadmanager.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/downloadmanager.py b/downloadmanager.py
index a88389f..4eab726 100644
--- a/downloadmanager.py
+++ b/downloadmanager.py
@@ -64,6 +64,10 @@ def can_quit():
return len(_active_downloads) == 0
+def num_downloads():
+ return len(_active_downloads)
+
+
def remove_all_downloads():
for download in _active_downloads:
download.cancelable.cancel(NS_ERROR_FAILURE)