~ubuntu-branches/ubuntu/natty/miro/natty

« back to all changes in this revision

Viewing changes to platform/windows-xul/plat/frontends/widgets/flash.py

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2011-01-22 02:46:33 UTC
  • mfrom: (1.4.10 upstream) (1.7.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20110122024633-kjme8u93y2il5nmf
Tags: 3.5.1-1ubuntu1
* Merge from debian.  Remaining ubuntu changes:
  - Use python 2.7 instead of python 2.6
  - Relax dependency on python-dbus to >= 0.83.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Miro - an RSS based video player application
2
 
# Copyright (C) 2008-2010 Participatory Culture Foundation
3
 
#
4
 
# This program is free software; you can redistribute it and/or modify
5
 
# it under the terms of the GNU General Public License as published by
6
 
# the Free Software Foundation; either version 2 of the License, or
7
 
# (at your option) any later version.
8
 
#
9
 
# This program is distributed in the hope that it will be useful,
10
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
# GNU General Public License for more details.
13
 
#
14
 
# You should have received a copy of the GNU General Public License
15
 
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17
 
#
18
 
# In addition, as a special exception, the copyright holders give
19
 
# permission to link the code of portions of this program with the OpenSSL
20
 
# library.
21
 
#
22
 
# You must obey the GNU General Public License in all respects for all of
23
 
# the code used other than OpenSSL. If you modify file(s) with this
24
 
# exception, you may extend this exception to your version of the file(s),
25
 
# but you are not obligated to do so. If you do not wish to do so, delete
26
 
# this exception statement from your version. If you delete this exception
27
 
# statement from all source files in the program, then also delete it here.
28
 
 
29
 
import os
30
 
import logging
31
 
 
32
 
from miro import app
33
 
from miro import config
34
 
from miro import prefs
35
 
from miro.gtcache import gettext as _
36
 
from miro.plat import specialfolders
37
 
from miro.frontends.widgets import dialogs
38
 
 
39
 
FLASH_URL = "http://get.adobe.com/flashplayer/"
40
 
 
41
 
def _is_flash_installed():
42
 
    logging.info("checking %s", os.path.join(
43
 
            specialfolders.get_special_folder('System'),
44
 
            'Macromed', 'Flash', 'flashplayer.xpt'))
45
 
    return os.path.exists(os.path.join(
46
 
            specialfolders.get_special_folder('System'),
47
 
            'Macromed', 'Flash', 'flashplayer.xpt'))
48
 
 
49
 
def check_flash_install():
50
 
    request_count = config.get(prefs.FLASH_REQUEST_COUNT)
51
 
    if _is_flash_installed() or request_count > 0:
52
 
        return
53
 
 
54
 
    title = _("Install Adobe Flash?")
55
 
    description = _(
56
 
        "For the best %(appname)s experience, we suggest you install Adobe Flash.  Would you "
57
 
        "like to do this now?",
58
 
        {"appname": config.get(prefs.SHORT_APP_NAME)}
59
 
    )
60
 
 
61
 
    ret = dialogs.show_choice_dialog(title, description,
62
 
            [dialogs.BUTTON_YES, dialogs.BUTTON_NOT_NOW, dialogs.BUTTON_NO])
63
 
 
64
 
    if ret is None or ret == dialogs.BUTTON_NOT_NOW:
65
 
        return
66
 
 
67
 
    elif ret == dialogs.BUTTON_YES:
68
 
        app.widgetapp.open_url(FLASH_URL)
69
 
        title = _("Install Adobe Flash")
70
 
        description = _(
71
 
            "Your browser will load the web-site where you can download and install "
72
 
            "Adobe Flash.\n"
73
 
            "\n"
74
 
            "You should quit %(appname)s now and start it up again after Adobe Flash has "
75
 
            "been installed.",
76
 
            {"appname": config.get(prefs.SHORT_APP_NAME)}
77
 
        )
78
 
        dialogs.show_message(title, description)
79
 
 
80
 
    else:
81
 
        config.set(prefs.FLASH_REQUEST_COUNT, 1)