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

« back to all changes in this revision

Viewing changes to .pc/10_movies_dir.patch/platform/gtk-x11/plat/upgrade.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
 
import os
30
 
import shutil
31
 
from miro.plat import resources
32
 
import gconf
33
 
 
34
 
def upgrade():
35
 
    # dot directory
36
 
    src = os.path.expanduser('~/.democracy')
37
 
    dst = os.path.expanduser('~/.miro')
38
 
    if os.path.isdir(src) and not os.path.exists(dst):
39
 
        shutil.move(src, dst)
40
 
        shutil.rmtree(os.path.join(dst, "icon-cache"), True)
41
 
 
42
 
    # autostart file
43
 
    if "KDE_FULL_SESSION" in os.environ:
44
 
        if os.environ.get("KDE_SESSION_VERSION") == "4":
45
 
            autostart_dir = "~/.kde/share/autostart"
46
 
        else:
47
 
            autostart_dir = "~/.kde/Autostart"
48
 
    else:
49
 
        config_home = os.environ.get('XDG_CONFIG_HOME', '~/.config')
50
 
        autostart_dir = os.path.join(config_home, "autostart")
51
 
 
52
 
    autostart_dir = os.path.expanduser(autostart_dir)
53
 
 
54
 
    old_file = os.path.join(autostart_dir, "democracyplayer.desktop")
55
 
    destination = os.path.join(autostart_dir, "miro.desktop")
56
 
    if os.path.exists(old_file):
57
 
        if not os.path.exists(destination):
58
 
            try:
59
 
                if not os.path.exists(autostart_dir):
60
 
                    os.makedirs(autostart_dir)
61
 
                shutil.copy(resources.share_path('applications/miro.desktop'), destination)
62
 
                os.remove(old_file)
63
 
            except OSError:
64
 
                pass
65
 
 
66
 
    # gconf settings
67
 
    client = gconf.client_get_default()
68
 
 
69
 
    def _copy_gconf(src, dst):
70
 
        for entry in client.all_entries(src):
71
 
            entry_dst = dst + '/' + entry.key.split('/')[-1]
72
 
            client.set(entry_dst, entry.value)
73
 
        for subdir in client.all_dirs(src):
74
 
            subdir_dst = dst + '/' + subdir.split('/')[-1]
75
 
            _copy_gconf(subdir, subdir_dst)
76
 
 
77
 
    if client.dir_exists("/apps/democracy/player") and not client.dir_exists("/apps/miro"):
78
 
        _copy_gconf("/apps/democracy/player", "/apps/miro")
79
 
        client.recursive_unset("/apps/democracy", 1)
80
 
        if client.get("/apps/miro/MoviesDirectory") is None:
81
 
            value = os.path.expanduser('~/Movies/Democracy')
82
 
            client.set_string("/apps/miro/MoviesDirectory", value)
83
 
 
84
 
            if not os.path.exists(value):
85
 
                os.makedirs(value)