1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
# Miro - an RSS based video player application
# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
# Participatory Culture Foundation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# In addition, as a special exception, the copyright holders give
# permission to link the code of portions of this program with the OpenSSL
# library.
#
# You must obey the GNU General Public License in all respects for all of
# the code used other than OpenSSL. If you modify file(s) with this
# exception, you may extend this exception to your version of the file(s),
# but you are not obligated to do so. If you do not wish to do so, delete
# this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here.
"""
Holds functions that return import directories and other platform-oriented
functions.
.. Note::
Some of these functions are probably not absolutely correct in the
face of funny characters in the input paths. In particular,
:fun:`url` doesn't DTRT when the path contains spaces. But they
should be sufficient for resolving resources, since we have control
over the filenames.
"""
import os
import urllib
import platform
RESOURCE_ROOT = os.path.abspath(
os.environ.get('MIRO_RESOURCE_ROOT', '/usr/share/miro/resources/'))
SHARE_ROOT = os.path.abspath(
os.environ.get('MIRO_SHARE_ROOT', '/usr/share/'))
def root():
return RESOURCE_ROOT
def extension_core_roots():
return [os.path.join(root(), 'extensions')]
def extension_user_roots():
return ["%(supportdir)s/extensions"]
def path(relative_path):
"""Find the full path to a resource data file. 'relative_path' is
expected to be supplied in Unix format, with forward-slashes as
separators.
"""
return os.path.join(RESOURCE_ROOT, relative_path)
def share_path(relative_path):
return os.path.join(SHARE_ROOT, relative_path)
def url(relative_path):
"""As path(), but return a file: URL instead.
"""
return u'file://%s' % urllib.quote(path(relative_path))
def theme_path(theme, relative_path):
return os.path.join('/usr/share/miro/themes', theme, relative_path)
def check_kde():
return os.environ.get("KDE_FULL_SESSION", None) != None
def open_url(url):
# We could use Python's webbrowser.open() here, but unfortunately,
# it doesn't have the same semantics under UNIX as under other
# OSes. Sometimes it blocks, sometimes it doesn't.
if check_kde():
os.spawnlp(os.P_NOWAIT, "kfmclient", "kfmclient", "exec", url)
else:
os.spawnlp(os.P_NOWAIT, "gnome-open", "gnome-open", url)
def open_file(filename):
if check_kde():
os.spawnlp(os.P_NOWAIT, "kfmclient", "kfmclient",
"exec", "file://" + filename)
else:
os.spawnlp(os.P_NOWAIT, "gnome-open", "gnome-open", filename)
def get_autostart_dir():
if check_kde():
if os.environ.get("KDE_SESSION_VERSION") == "4":
autostart_dir = "~/.kde/share/autostart"
else:
autostart_dir = "~/.kde/Autostart"
else:
config_home = os.environ.get('XDG_CONFIG_HOME', '~/.config')
autostart_dir = os.path.join(config_home, "autostart")
autostart_dir = os.path.expanduser(autostart_dir)
return autostart_dir
def _clean_piece(piece):
return piece.replace(";", " ")
def get_osname():
"""Composes and returns the osname section of the user agent.
The osname currently looks something like this::
Linux i686; Ubuntu 9.04
1 2 3
**1** - comes from ``platform.uname()[0]``
**2** - comes from ``platform.machine()``
**3** - comes from the first two parts of ``platform.dist``
This function also removes any stray ``;``.
"""
osname = ["%s %s" % (platform.uname()[0], platform.machine())]
dist = platform.dist("Unknown", "Unknown", "Unknown")[0:2]
osname.append(" ".join(dist))
osname = "; ".join([_clean_piece(s) for s in osname])
return osname
def get_default_search_dir():
return os.path.expanduser("~/")
|