~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-13 23:38:58 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:213
Fileservice / Files (Python and JS files):
    Added code to handle "nice filetypes" and "nice svn status".
    New JSON value for dir listings, "type_nice" which contains the nice
    filetype calculated by the server.
    The client calculates the nice svn status.
    Added new icons for svn status for added, deleted, missing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    ".js" : "application/javascript",   # Override bad default
26
26
}
27
27
 
 
28
# Mapping mime types to friendly names
 
29
 
 
30
nice_mimetypes = {
 
31
    "text/x-python" : "Python source code",
 
32
    "text/plain" : "Text file",
 
33
    "text/html" : "HTML file",
 
34
    "image/png" : "PNG image",
 
35
}
 
36