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