This repository has been archived by the owner on Oct 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganizing the website directories
- Loading branch information
Showing
94 changed files
with
515 additions
and
515 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
from django.conf.urls import include, url | ||
from django.contrib import admin | ||
from django.contrib.staticfiles.views import serve | ||
from django.views.decorators.cache import never_cache | ||
|
||
from oltpbench import settings | ||
from oltpbench import views as oltpbench_views | ||
|
||
admin.autodiscover() | ||
|
||
urlpatterns = [ | ||
url(r'^signup/', oltpbench_views.signup_view, name='signup'), | ||
url(r'^login/', oltpbench_views.login_view, name='login'), | ||
url(r'^logout/$', oltpbench_views.logout_view, name='logout'), | ||
|
||
url(r'^ajax_new/', oltpbench_views.ajax_new), | ||
# url(r'^status/', oltpbench_views.ml_info), | ||
|
||
url(r'^new_result/', oltpbench_views.new_result), | ||
# url(r'^result/', oltpbench_views.result), | ||
url(r'^get_result_data_file/', oltpbench_views.get_result_data_file), | ||
url(r'^update_similar/', oltpbench_views.update_similar), | ||
|
||
url(r'^$', oltpbench_views.redirect_home), | ||
url(r'^projects/$', oltpbench_views.home, name='home'), | ||
|
||
url(r'^projects/(?P<project_id>[0-9]+)/edit/$', oltpbench_views.update_project, name='edit_project'), | ||
url(r'^projects/new/$', oltpbench_views.update_project, name='new_project'), | ||
url(r'^projects/(?P<project_id>[0-9]+)/apps$', oltpbench_views.project, name='project'), | ||
url(r'^projects/delete/$', oltpbench_views.delete_project, name="delete_project"), | ||
|
||
# url(r'^edit_application/', oltpbench_views.update_application), | ||
# url(r'^edit_application/(?P<project_id>[0-9]+)/$', oltpbench_views.update_application, name='edit_application'), | ||
# url(r'^edit_application/(?P<app_id>[0-9]+)/$', oltpbench_views.update_application, name='edit_application'), | ||
# url(r'^edit_application/(?P<project_id>[0-9]+)/(?P<app_id>[0-9]+)/$', oltpbench_views.update_application, name='edit_application'), | ||
# url(r'^update_application/', oltpbench_views.update_application, name='update_application'), | ||
# url(r'^application/', oltpbench_views.application, 'application'), | ||
url(r'^projects/(?P<project_id>[0-9]+)/apps/(?P<app_id>[0-9]+)/$', oltpbench_views.application, name='application'), | ||
# url(r'^project_info/', oltpbench_views.project_info), | ||
url(r'^projects/(?P<project_id>[0-9]+)/apps/delete/$', oltpbench_views.delete_application, name='delete_application'), | ||
url(r'^projects/(?P<project_id>[0-9]+)/apps/new/$', oltpbench_views.update_application, name='new_application'), | ||
url(r'^projects/(?P<project_id>[0-9]+)/apps/(?P<app_id>[0-9]+)/edit/$', oltpbench_views.update_application, name='edit_application'), | ||
|
||
url(r'^projects/(?P<project_id>[0-9]+)/apps/(?P<app_id>[0-9]+)/results/(?P<result_id>[0-9]+)/$', oltpbench_views.result, name='result'), | ||
url(r'^projects/(?P<project_id>[0-9]+)/apps/(?P<app_id>[0-9]+)/bench_confs/(?P<bench_id>[0-9]+)/$', oltpbench_views.benchmark_configuration, name='bench_conf'), | ||
url(r'^projects/(?P<project_id>[0-9]+)/apps/(?P<app_id>[0-9]+)/bench_confs/(?P<bench_id>[0-9]+)/edit/$', oltpbench_views.edit_benchmark_conf, name='edit_bench_conf'), | ||
# url(r'^projects/(?P<project_id>[0-9]+)/apps/(?P<app_id>[0-9]+)/db_confs/(?P<dbconf_id>[0-9]+)/compare=(?P<compare>[0-9]+)/$', oltpbench_views.db_conf_view, name='db_confs_compare'), | ||
url(r'^projects/(?P<project_id>[0-9]+)/apps/(?P<app_id>[0-9]+)/db_confs/(?P<dbconf_id>[0-9]+)/$', oltpbench_views.db_conf_view, name='db_confs'), | ||
url(r'^projects/(?P<project_id>[0-9]+)/apps/(?P<app_id>[0-9]+)/db_metrics/(?P<dbmet_id>[0-9]+)/$', oltpbench_views.db_metrics_view, name='db_metrics'), | ||
# url(r'^projects/(?P<project_id>[0-9]+)/apps/(?P<app_id>[0-9]+)/db_metrics/(?P<dbmet_id>[0-9]+)/\?compare=(?P<compare>[0-9]+)/$', oltpbench_views.db_metrics_view, name='db_metrics'), | ||
url(r'^ref/(?P<dbms_name>.+)/(?P<version>.+)/params/(?P<param_name>.+)/$', oltpbench_views.db_conf_ref, name="dbconf_ref"), | ||
url(r'^ref/(?P<dbms_name>.+)/(?P<version>.+)/metrics/(?P<metric_name>.+)/$', oltpbench_views.db_metrics_ref, name="dbmetrics_ref"), | ||
url(r'^projects/(?P<project_id>[0-9]+)/apps/(?P<app_id>[0-9]+)/results/(?P<result_id>[0-9]+)/status$', oltpbench_views.ml_info, name="status"), | ||
|
||
# url(r'^project/', oltpbench_views.project), | ||
# url(r'^update_project/', oltpbench_views.update_project, name='update_project'), | ||
|
||
# url(r'^benchmark_conf/', oltpbench_views.benchmark_configuration), | ||
# url(r'^edit_benchmark_conf/', oltpbench_views.edit_benchmark_conf), | ||
url(r'^get_benchmark_data/', oltpbench_views.get_benchmark_data), | ||
url(r'^get_benchmark_conf_file/', oltpbench_views.get_benchmark_conf_file), | ||
# url(r'^update_benchmark/', oltpbench_views.update_benchmark_conf), | ||
|
||
# url(r'^db_conf/', oltpbench_views.db_conf_view), | ||
# url(r'^db_conf_ref/', oltpbench_views.db_conf_ref), | ||
# url(r'^dbms_metrics/', oltpbench_views.dbms_metrics_view), | ||
# url(r'^dbms_metrics_ref/', oltpbench_views.dbms_metrics_ref), | ||
url(r'^get_data/', oltpbench_views.get_timeline_data), | ||
|
||
# Uncomment the admin/doc line below to enable admin documentation: | ||
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')), | ||
|
||
# Uncomment the next line to enable the admin: | ||
url(r'^admin/', admin.site.urls), | ||
] | ||
|
||
if settings.DEBUG: | ||
import debug_toolbar | ||
|
||
urlpatterns = [ | ||
url(r'^__debug__/', include(debug_toolbar.urls)), | ||
] + urlpatterns + [url(r'^static/(?P<path>.*)$', never_cache(serve)), ] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.