aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex/urls.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-07-28 23:56:47 +0100
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-09-05 00:31:23 +0100
commit91a0bbea06114265c99b31eb2d486f294581ec14 (patch)
treedc0833c594ce5f91a88ad0dbce3f981eabdd5f71 /layerindex/urls.py
parentbea2db8464cacb42bfe168c8f0918f8de30fd2db (diff)
downloadopenembedded-core-contrib-91a0bbea06114265c99b31eb2d486f294581ec14.tar.gz
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>
Diffstat (limited to 'layerindex/urls.py')
-rw-r--r--layerindex/urls.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/layerindex/urls.py b/layerindex/urls.py
index a5171bee83..70060253f1 100644
--- a/layerindex/urls.py
+++ b/layerindex/urls.py
@@ -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'),