Parent: [c9d94b] (diff)

Child: [831432] (diff)

Download this file

urls.py    32 lines (25 with data), 1.7 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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).
# Commercial licenses are available and do not require any SOS Open Source attributions
# or visible copyright notices but they are not permitted under this license.
# OSSEval Copyright 2014 Bitergium SLL
# SOS Open Source Copyright 2012 Roberto Galoppini
# Author: Davide Galletti
from django.conf.urls import patterns, url
from OpenSourceProject 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='search_html'),
url(r'^search_html_form/$', views.search_html_form, name='search_html_form'),
url(r'^OpenSProjectForge_delete/(?P<osprojectforge_id>\d+)/(?P<analysis_id>\d+)/$', views.OSProjectForge_delete, name='OSProjectForge_delete'),
url(r'^OSProjectForge_add$', views.OSProjectForge_add, name='OSProjectForge_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'^OSProject_detail/(?P<osproject_id>\d+)/$', views.OSProject_detail, name='OSProject_detail'),
url(r'^test$', views.test),
)