예제 #1
0
파일: views.py 프로젝트: 91ranjan/gstudio
def html(request, name):
    t = models.fetchText(name)
    response = HttpResponse(t.html(), content_type='text/html')
    return response
예제 #2
0
def html(request, name):
    t = models.fetchText(name)
    response = HttpResponse(t.html(), content_type='text/html')
    return response
예제 #3
0
파일: views.py 프로젝트: 91ranjan/gstudio
def raw(request, name):
    t = models.fetchText(name)
    response = HttpResponse(t.text, content_type='text/plain')
    return response
예제 #4
0
def raw(request, name):
    t = models.fetchText(name)
    response = HttpResponse(t.text, content_type='text/plain')
    return response