mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
Moved template variables into a context processor. Fixed content type handling with Django 1.10.
This commit is contained in:
parent
722971e854
commit
6505f07a2a
3 changed files with 15 additions and 33 deletions
8
dpaste/context_processors.py
Normal file
8
dpaste/context_processors.py
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
from django.conf import settings
|
||||||
|
|
||||||
|
def dpaste_globals(request):
|
||||||
|
return {
|
||||||
|
'site_name': getattr(settings, 'DPASTE_SITE_NAME', 'dpaste.de'),
|
||||||
|
'jquery_url': getattr(settings, 'DPASTE_JQUERY_URL',
|
||||||
|
'https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js'),
|
||||||
|
}
|
|
@ -105,6 +105,7 @@ TEMPLATES = [
|
||||||
'django.template.context_processors.debug',
|
'django.template.context_processors.debug',
|
||||||
'django.template.context_processors.request',
|
'django.template.context_processors.request',
|
||||||
'django.template.context_processors.i18n',
|
'django.template.context_processors.i18n',
|
||||||
|
'dpaste.context_processors.dpaste_globals',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -9,7 +9,7 @@ from django.core.urlresolvers import reverse
|
||||||
from django.db.models import Count
|
from django.db.models import Count
|
||||||
from django.http import (Http404, HttpResponse, HttpResponseBadRequest,
|
from django.http import (Http404, HttpResponse, HttpResponseBadRequest,
|
||||||
HttpResponseRedirect)
|
HttpResponseRedirect)
|
||||||
from django.shortcuts import get_object_or_404, render_to_response
|
from django.shortcuts import get_object_or_404, render
|
||||||
from django.template.context import RequestContext
|
from django.template.context import RequestContext
|
||||||
from django.utils.translation import ugettext_lazy as _
|
from django.utils.translation import ugettext_lazy as _
|
||||||
from django.views.decorators.csrf import csrf_exempt
|
from django.views.decorators.csrf import csrf_exempt
|
||||||
|
@ -23,12 +23,6 @@ from .highlight import (LEXER_DEFAULT, LEXER_KEYS, LEXER_LIST,
|
||||||
LEXER_WORDWRAP, PLAIN_CODE)
|
LEXER_WORDWRAP, PLAIN_CODE)
|
||||||
from .models import ONETIME_LIMIT, Snippet
|
from .models import ONETIME_LIMIT, Snippet
|
||||||
|
|
||||||
template_globals = {
|
|
||||||
'site_name': getattr(settings, 'DPASTE_SITE_NAME', 'dpaste.de'),
|
|
||||||
'jquery_url': getattr(settings, 'DPASTE_JQUERY_URL',
|
|
||||||
'https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js'),
|
|
||||||
}
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Snippet Handling
|
# Snippet Handling
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
|
@ -51,12 +45,7 @@ def snippet_new(request, template_name='dpaste/snippet_new.html'):
|
||||||
'lexer_list': LEXER_LIST,
|
'lexer_list': LEXER_LIST,
|
||||||
'is_new': True,
|
'is_new': True,
|
||||||
}
|
}
|
||||||
|
return render(request, template_name, template_context)
|
||||||
return render_to_response(
|
|
||||||
template_name,
|
|
||||||
template_context,
|
|
||||||
RequestContext(request, template_globals)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def snippet_details(request, snippet_id, template_name='dpaste/snippet_details.html', is_raw=False):
|
def snippet_details(request, snippet_id, template_name='dpaste/snippet_details.html', is_raw=False):
|
||||||
|
@ -108,11 +97,7 @@ def snippet_details(request, snippet_id, template_name='dpaste/snippet_details.h
|
||||||
'gist': getattr(settings, 'DPASTE_ENABLE_GIST', True),
|
'gist': getattr(settings, 'DPASTE_ENABLE_GIST', True),
|
||||||
}
|
}
|
||||||
|
|
||||||
response = render_to_response(
|
response = render(request, template_name, template_context)
|
||||||
template_name,
|
|
||||||
template_context,
|
|
||||||
RequestContext(request, template_globals)
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_raw:
|
if is_raw:
|
||||||
response['Content-Type'] = 'text/plain;charset=UTF-8'
|
response['Content-Type'] = 'text/plain;charset=UTF-8'
|
||||||
|
@ -158,11 +143,7 @@ def snippet_history(request, template_name='dpaste/snippet_list.html'):
|
||||||
'snippet_list': snippet_list,
|
'snippet_list': snippet_list,
|
||||||
}
|
}
|
||||||
|
|
||||||
return render_to_response(
|
return render(request, template_name, template_context)
|
||||||
template_name,
|
|
||||||
template_context,
|
|
||||||
RequestContext(request, template_globals)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def snippet_diff(request, template_name='dpaste/snippet_diff.html'):
|
def snippet_diff(request, template_name='dpaste/snippet_diff.html'):
|
||||||
|
@ -205,11 +186,7 @@ def snippet_diff(request, template_name='dpaste/snippet_diff.html'):
|
||||||
'fileB': fileB,
|
'fileB': fileB,
|
||||||
}
|
}
|
||||||
|
|
||||||
return render_to_response(
|
return render(request, template_name, template_context)
|
||||||
template_name,
|
|
||||||
template_context,
|
|
||||||
RequestContext(request, template_globals)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def snippet_gist(request, snippet_id): # pragma: no cover
|
def snippet_gist(request, snippet_id): # pragma: no cover
|
||||||
|
@ -258,11 +235,7 @@ def about(request, template_name='dpaste/about.html'):
|
||||||
count=Count('lexer')).order_by('-count')[:5],
|
count=Count('lexer')).order_by('-count')[:5],
|
||||||
}
|
}
|
||||||
|
|
||||||
return render_to_response(
|
return render(request, template_name, template_context)
|
||||||
template_name,
|
|
||||||
template_context,
|
|
||||||
RequestContext(request, template_globals)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue