Switch to unified view

a b/OSSEval/IMDBMovieApp/urls.py
1
# This Source Code Form of OSSEval is subject to the terms of the GNU AFFERO
2
# GENERAL PUBLIC LICENSE, v. 3.0. If a copy of the AGPL was not
3
# distributed with this file, You can obtain one at http://www.gnu.org/licenses/agpl.txt
4
#
5
# OSSeval is powered by the SOS Open Source AGPL edition.
6
#  The AGPL requires that you do not remove the SOS Open Source attribution and copyright 
7
#  notices from the user interface (see section 5.d below).
8
9
# OSSEval Copyright 2014 Bitergium SLL
10
# SOS Open Source Copyright 2012 Roberto Galoppini
11
# Author: Davide Galletti 
12
13
14
from django.conf.urls import patterns, url
15
16
from IMDBMovieApp import views
17
18
urlpatterns = patterns('',
19
    url(r'^instance_list_html/(?P<analysis_id>\d+)/$', views.instance_list_html, name='instance_list_html'),
20
    url(r'^search_html/$', views.search_html, name='imdb_movie_search_html'),
21
    url(r'^search_html_form/$', views.search_html_form, name='search_html_form'),
22
    url(r'^IMDBMovie_delete/(?P<imdb_movie_id>\d+)/(?P<analysis_id>\d+)/$', views.IMDBMovie_delete, name='IMDBMovie_delete'),
23
    url(r'^IMDBMovie_add$', views.IMDBMovie_add, name='IMDBMovie_add'),
24
#     url(r'^OSProjectForge_detail/(?P<osprojectforge_id>\d+)/$', views.OSProjectForge_detail, name='OSProjectForge_detail'),
25
#     url(r'^OSProjectForgeFromResultList_detail/$', views.OSProjectForgeFromResultList_detail, name='OSProjectForgeFromResultList_detail'),
26
    url(r'^IMDBMovie_detail/(?P<imdb_id>\d+)/$', views.IMDBMovie_detail, name='IMDBMovie_detail'),
27
    
28
)