File: urls.py

package info (click to toggle)
python-applicationinsights 0.11.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 876 kB
  • sloc: python: 5,948; makefile: 151; sh: 77
file content (15 lines) | stat: -rw-r--r-- 566 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from django.conf.urls import include, url
from django.contrib import admin

from . import views

urlpatterns = [
    url(r'^$', views.home, name='home'),
    url(r'^logger$', views.logger, name='logger'),
    url(r'^thrower$', views.thrower, name='thrower'),
    url(r'^errorer$', views.errorer, name='errorer'),
    url(r'^getid/([0-9]+)$', views.getid, name='getid'),
    url(r'^returncode/([0-9]+)$', views.returncode, name='returncode'),
    url(r'^templater/([^/]*)$', views.templater, name='templater'),
    url(r'^class$', views.classview(), name='class'),
]