File: urls.py

package info (click to toggle)
python-django 3%3A5.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 61,236 kB
  • sloc: python: 361,585; javascript: 19,250; xml: 211; makefile: 182; sh: 28
file content (21 lines) | stat: -rw-r--r-- 1,003 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from django.urls import path, re_path

from . import views

urlpatterns = [
    path("upload/", views.file_upload_view),
    path("upload_traversal/", views.file_upload_traversal_view),
    path("verify/", views.file_upload_view_verify),
    path("unicode_name/", views.file_upload_unicode_name),
    path("echo/", views.file_upload_echo),
    path("echo_content_type_extra/", views.file_upload_content_type_extra),
    path("echo_content/", views.file_upload_echo_content),
    path("quota/", views.file_upload_quota),
    path("quota/broken/", views.file_upload_quota_broken),
    path("getlist_count/", views.file_upload_getlist_count),
    path("upload_errors/", views.file_upload_errors),
    path("temp_file/stop_upload/", views.file_stop_upload_temporary_file),
    path("temp_file/upload_interrupted/", views.file_upload_interrupted_temporary_file),
    path("filename_case/", views.file_upload_filename_case_view),
    re_path(r"^fd_closing/(?P<access>t|f)/$", views.file_upload_fd_closing),
]