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

« back to all changes in this revision

Viewing changes to www/conf/mimetypes.py

  • Committer: mattgiuca
  • Date: 2008-01-09 23:35:09 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:147
conf: Moved "default_mimetype" configuration constant from conf/app/server.py
        to conf/mimetypes.py. (Used by fileservice now too, so general).
fileservice: Now guesses mimetype of files being served instead of serving
    them all with the same mimetype.
    The Content-Type returned will be used by file browser for viewing certain
    types of files.
server: Fixed directory problem (previously served with just a "0"). Now
    directories return a 403 Forbidden error. (Not allowed to browse
    directories since this is viewable by the public).

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
# These should not need to be modified by admins unless there are problems
5
5
# with file type identification.
6
6
 
 
7
# These settings, in conjunction with Python's mimetypes library,
 
8
# are used in various apps, including server and fileservice
 
9
# (and by extension, browser and editor), to determine the mime type of
 
10
# a given file.
 
11
 
 
12
# All files served whose mime type cannot be guessed will be served as this
 
13
# type.
 
14
default_mimetype = "text/plain"
 
15
 
7
16
# Mapping file extensions to mime types
8
17
# Note that IVLE uses Python's mimetype library which looks in a bunch of
9
18
# files such as /etc/mime.types. This section allows you to add new mime types