You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
507 B
17 lines
507 B
from django.conf import urls
|
|
import common
|
|
from autotest_lib.frontend import settings, urls_common
|
|
|
|
urlpatterns, debug_patterns = (
|
|
urls_common.generate_patterns('frontend.tko', 'TkoClient'))
|
|
|
|
urlpatterns += urls.patterns(
|
|
'',
|
|
(r'^(?:|noauth/)jsonp_rpc/', 'frontend.tko.views.handle_jsonp_rpc'),
|
|
(r'^(?:|noauth/)csv/', 'frontend.tko.views.handle_csv'),
|
|
(r'^(?:|noauth/)plot/', 'frontend.tko.views.handle_plot'))
|
|
|
|
|
|
if settings.DEBUG:
|
|
urlpatterns += debug_patterns
|