Files
T
Jeremy Carbaugh f4a0a16652 initial commit
2009-01-25 15:28:04 -05:00

12 lines
357 B
Python

from django.conf import settings
from django.http import HttpResponse
from django.shortcuts import render_to_response
MIMETYPES = {
'css': 'text/css',
'js': 'text/javascript',
}
def static(request, filename, extension):
path = "%s.%s" % (filename, extension)
return render_to_response(path, mimetype=MIMETYPES.get(extension, 'text/plain'))