This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# management command | |
from django.contrib.staticfiles.management.commands.runserver import Command as StaticFilesCommand | |
from django.contrib.staticfiles.handlers import StaticFilesHandler | |
from nimda.globals import _local_manager | |
class Command(StaticFilesCommand): | |
def get_handler(self, *args, **options): | |
handler = super(Command, self).get_handler(*args, **options) | |
handler = _local_manager.make_middleware(handler) | |
return handler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# management command | |
from django.contrib.staticfiles.management.commands.runserver import Command as StaticFilesCommand | |
from django.contrib.staticfiles.handlers import StaticFilesHandler | |
from nimda.globals import _local_manager | |
class Command(StaticFilesCommand): | |
def get_handler(self, *args, **options): | |
handler = super(Command, self).get_handler(*args, **options) | |
handler = _local_manager.make_middleware(handler) | |
return handler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
coding=utf-8 | |
from django import http | |
from django.db.models import Q | |
from django.contrib import messages | |
from django.utils.translation import ugettext as _ | |
from cbv import TemplateView | |
from faq.models import FAQ, FAQGroup | |
from itertools import groupby | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#coding=utf-8 | |
from django.contrib.auth.decorators import login_required | |
from django.contrib import messages | |
from django.db.models import Q | |
from django.http import HttpResponseRedirect, HttpResponse | |
from django.shortcuts import get_object_or_404 | |
from django.utils.translation import ugettext as _ | |
from faq.models import FAQ, FAQGroup | |
from itertools import groupby | |
from utkik import View |
NewerOlder