Disable rawrecipes URL

It's not really completely functional and puts quite a bit of load on
the server when used, so just disable it for now.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2013-07-28 23:56:47 +01:00
parent bea2db8464
commit 91a0bbea06

View File

@ -75,12 +75,12 @@ urlpatterns = patterns('',
name="bulk_change_delete"),
url(r'^branch/(?P<branch>[-\w]+)/',
include('layerindex.urls_branch')),
url(r'^raw/recipes.txt$',
PlainTextListView.as_view(
queryset=Recipe.objects.order_by('pn', 'layerbranch__layer'),
context_object_name='recipe_list',
template_name='layerindex/rawrecipes.txt'),
name='recipe_list_raw'),
#url(r'^raw/recipes.txt$',
# PlainTextListView.as_view(
# queryset=Recipe.objects.order_by('pn', 'layerbranch__layer'),
# context_object_name='recipe_list',
# template_name='layerindex/rawrecipes.txt'),
# name='recipe_list_raw'),
url(r'^history/$',
HistoryListView.as_view(
template_name='layerindex/history.html'),