mirror of
				https://github.com/django/django.git
				synced 2025-11-04 05:35:37 +00:00 
			
		
		
		
	Thanks Antti Häyrynen and Tim Graham for the report, and Aymeric Augustin for the review.
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			784 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			784 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import unicode_literals
 | 
						|
 | 
						|
from django.core.exceptions import SuspiciousOperation
 | 
						|
from django.db import connection, transaction
 | 
						|
from django.http import HttpResponse, StreamingHttpResponse
 | 
						|
from django.views.decorators.csrf import csrf_exempt
 | 
						|
 | 
						|
 | 
						|
def regular(request):
 | 
						|
    return HttpResponse(b"regular content")
 | 
						|
 | 
						|
 | 
						|
def streaming(request):
 | 
						|
    return StreamingHttpResponse([b"streaming", b" ", b"content"])
 | 
						|
 | 
						|
 | 
						|
def in_transaction(request):
 | 
						|
    return HttpResponse(str(connection.in_atomic_block))
 | 
						|
 | 
						|
 | 
						|
@transaction.non_atomic_requests
 | 
						|
def not_in_transaction(request):
 | 
						|
    return HttpResponse(str(connection.in_atomic_block))
 | 
						|
 | 
						|
 | 
						|
def suspicious(request):
 | 
						|
    raise SuspiciousOperation('dubious')
 | 
						|
 | 
						|
 | 
						|
@csrf_exempt
 | 
						|
def malformed_post(request):
 | 
						|
    request.POST
 | 
						|
    return HttpResponse()
 |