~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/conf/mimetypes.py

  • Committer: William Grant
  • Date: 2009-04-28 05:44:03 UTC
  • Revision ID: grantw@unimelb.edu.au-20090428054403-6cmaloy14nh6f033
Remove ivle.conf.mimetypes.additional_mime_types.

One of its members was never used, and the other two are redundant with the
defaults.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# type.
14
14
default_mimetype = "text/plain"
15
15
 
16
 
# Mapping file extensions to mime types
17
 
# Note that IVLE uses Python's mimetype library which looks in a bunch of
18
 
# files such as /etc/mime.types. This section allows you to add new mime types
19
 
# solely for use in IVLE.
20
 
# File extensions should include the leading '.'.
21
 
 
22
 
additional_mime_types = {
23
 
    ".py" : "text/x-python",    # Redundant, but just in case
24
 
    ".psp" : "text/x-python-server-page",
25
 
    ".js" : "application/javascript",   # Override bad default
26
 
}
27
 
 
28
16
# Mapping mime types to friendly names
29
17
 
30
18
nice_mimetypes = {