aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'layerindex/views.py')
-rw-r--r--layerindex/views.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/layerindex/views.py b/layerindex/views.py
index cedc5b0009..0b3345a007 100644
--- a/layerindex/views.py
+++ b/layerindex/views.py
@@ -774,13 +774,6 @@ class ClassSearchView(ListView):
context['this_url_name'] = resolve(self.request.path_info).url_name
return context
-class PlainTextListView(ListView):
- def render_to_response(self, context):
- "Returns a plain text response rendering of the template"
- template = get_template(self.template_name)
- return HttpResponse(template.render(context),
- content_type='text/plain')
-
class HistoryListView(ListView):
context_object_name = "revisions"
paginate_by = 50