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

« back to all changes in this revision

Viewing changes to platform/windows-xul/plat/migrateappname.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) 2005-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
 
from miro import util
30
 
import os
31
 
import os.path
32
 
from miro import app
33
 
from miro import config
34
 
from miro import prefs
35
 
from miro.plat import resources
36
 
from miro.plat.specialfolders import baseMoviesDirectory, appDataDirectory
37
 
import _winreg
38
 
 
39
 
def migrateSupport(oldAppName, newAppName):
40
 
    global migratedSupport
41
 
    migratedSupport = False
42
 
    # This gets called before config is set up, so we have to cheat
43
 
    oldSupportDir = os.path.join(appDataDirectory, app.configfile['publisher'], oldAppName, 'Support')
44
 
    newSupportDir = os.path.join(appDataDirectory, app.configfile['publisher'], newAppName, 'Support')
45
 
 
46
 
    # Migrate support
47
 
    if os.path.exists(oldSupportDir):
48
 
        if not os.path.exists(os.path.join(newSupportDir,"preferences.bin")):
49
 
            try:
50
 
                for name in os.listdir(oldSupportDir):
51
 
                    os.rename(os.path.join(oldSupportDir,name),
52
 
                              os.path.join(newSupportDir,name))
53
 
                migratedSupport = True
54
 
            except:
55
 
                pass
56
 
 
57
 
    if migratedSupport:
58
 
        runSubkey = "Software\\Microsoft\\Windows\\CurrentVersion\\Run"
59
 
        try:
60
 
            folder = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER, runSubkey)
61
 
        except WindowsError, e:
62
 
            if e.errno == 2: # registry key doesn't exist
63
 
                folder = _winreg.CreateKey(_winreg.HKEY_CURRENT_USER, runSubkey)
64
 
            else:
65
 
                raise
66
 
 
67
 
        count = 0
68
 
        while True:
69
 
            try:
70
 
                (name, val, type) = _winreg.EnumValue(folder,count)
71
 
            except:
72
 
                return True
73
 
            count += 1
74
 
            if (name == oldAppName):
75
 
                filename = os.path.join(resources.root(),"..",("%s.exe" % templateVars['shortAppName']))
76
 
                filename = os.path.normpath(filename)
77
 
                writable_folder = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER,
78
 
                                           runSubkey, 0,_winreg.KEY_SET_VALUE)
79
 
                _winreg.SetValueEx(writable_folder, newAppName, 0,_winreg.REG_SZ, filename)
80
 
                _winreg.DeleteValue(writable_folder, oldAppName)
81
 
                return True
82
 
        return True
83
 
    else:
84
 
        return False
85
 
    
86
 
def migrateVideos(oldAppName, newAppName):
87
 
    global migratedSupport
88
 
    if migratedSupport:
89
 
        oldDefault = os.path.join(baseMoviesDirectory, oldAppName)
90
 
        newDefault = os.path.join(baseMoviesDirectory, newAppName)
91
 
        videoDir = config.get(prefs.MOVIES_DIRECTORY)
92
 
        if videoDir == newDefault:
93
 
            app.controller.changeMoviesDirectory(newDefault, True)