Bugs 5972 and 6132: needed to remove python-gnome2 to run, GUI Crash (metaclass conflict) when some package (e.g. python-gnome2) installed, 6132: metaclass conflict in flatbasemodel.py

svn: r21015
This commit is contained in:
Doug Blank 2013-01-06 21:43:28 +00:00
parent d5b71cc6b7
commit b1da20254a
2 changed files with 2 additions and 76 deletions

View File

@ -22,12 +22,9 @@
#
try:
from ._gnomemime import get_description, get_type, mime_type_is_defined
from ._winmime import get_description, get_type, mime_type_is_defined
except:
try:
from ._winmime import get_description, get_type, mime_type_is_defined
except:
from ._pythonmime import get_description, get_type, mime_type_is_defined
from ._pythonmime import get_description, get_type, mime_type_is_defined
def base_type(val):
return val.split('/')[0]

View File

@ -1,71 +0,0 @@
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2000-2006 Donald N. Allingham
#
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
from gi.repository import Gtk
try:
from gnomevfs import mime_get_short_list_applications, \
mime_get_description, get_mime_type, mime_get_default_application
except:
from gnome.vfs import mime_get_short_list_applications, \
mime_get_description, get_mime_type, mime_get_default_application
from ..ggettext import gettext as _
def get_description(type):
"""Return the description of the specified mime type."""
try:
return mime_get_description(type)
except:
return _("unknown")
def get_type(file):
"""Return the mime type of the specified file."""
try:
return get_mime_type(file)
except:
return _('unknown')
def mime_type_is_defined(type):
"""
Return True if a description for a mime type exists.
"""
try:
mime_get_description(type)
return True
except:
return False
#-------------------------------------------------------------------------
#
# private functions
#
#-------------------------------------------------------------------------
def _is_good_command(cmd):
"""
We don't know what to do with certain substitution values.
If we find one, skip the command.
"""
for sub in [ "%m", "%i", "%c" ]:
if cmd.find(sub) != -1:
return False
return True