Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/util.py')
-rw-r--r--sugar/util.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/sugar/util.py b/sugar/util.py
index 497eb53..814a728 100644
--- a/sugar/util.py
+++ b/sugar/util.py
@@ -128,25 +128,3 @@ def set_proc_title(title):
except:
return False
-def choose_most_significant_mime_type(mime_types):
- logging.debug('Choosing between %r.' % mime_types)
- if not mime_types:
- return ''
-
- if 'text/uri-list' in mime_types:
- return 'text/uri-list'
-
- for mime_category in ['image/', 'text/', 'application/']:
- for mime_type in mime_types:
- if mime_type.startswith(mime_category) and \
- not mime_type.split('/')[1].startswith('_'):
- mime_type = mime_type.split(';')[0]
- logging.debug('Choosed %r!' % mime_type)
- return mime_type
-
- if 'STRING' in mime_types:
- return 'text/plain'
-
- logging.debug('Returning first: %r.' % mime_types[0])
- return mime_types[0]
-