307 lines
9.7 KiB
Python
307 lines
9.7 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from django.conf.urls import patterns, url
|
|
|
|
from .api_views import (
|
|
APITrashedDocumentListView, APITrashedDocumentRestoreView,
|
|
APITrashedDocumentView, APIDocumentDownloadView, APIDocumentView,
|
|
APIDocumentListView, APIDocumentVersionDownloadView,
|
|
APIDocumentPageImageView, APIDocumentPageView,
|
|
APIDocumentTypeDocumentListView, APIDocumentTypeListView,
|
|
APIDocumentTypeView, APIDocumentVersionsListView,
|
|
APIDocumentVersionRevertView, APIDocumentVersionView,
|
|
APIRecentDocumentListView
|
|
)
|
|
from .settings import setting_print_size, setting_display_size
|
|
from .views import (
|
|
ClearImageCacheView, DocumentEditView, DocumentListView, DocumentPageView,
|
|
DocumentPageListView, DocumentPageViewResetView, DocumentPreviewView,
|
|
DocumentRestoreView, DocumentRestoreManyView, DocumentTrashView,
|
|
DocumentTrashManyView, DocumentTypeCreateView, DocumentTypeDeleteView,
|
|
DocumentTypeDocumentListView, DocumentTypeFilenameCreateView,
|
|
DocumentTypeFilenameDeleteView, DocumentTypeFilenameEditView,
|
|
DocumentTypeFilenameListView, DocumentTypeListView, DocumentTypeEditView,
|
|
DocumentVersionListView, DocumentVersionRevertView, DocumentView,
|
|
EmptyTrashCanView, RecentDocumentListView, TrashedDocumentDeleteView,
|
|
TrashedDocumentDeleteManyView, TrashedDocumentListView
|
|
)
|
|
|
|
urlpatterns = patterns(
|
|
'documents.views',
|
|
url(r'^list/$', DocumentListView.as_view(), name='document_list'),
|
|
url(
|
|
r'^list/recent/$', RecentDocumentListView.as_view(),
|
|
name='document_list_recent'
|
|
),
|
|
url(
|
|
r'^list/deleted/$', TrashedDocumentListView.as_view(),
|
|
name='document_list_trashed'
|
|
),
|
|
|
|
url(
|
|
r'^(?P<pk>\d+)/preview/$', DocumentPreviewView.as_view(),
|
|
name='document_preview'
|
|
),
|
|
url(
|
|
r'^(?P<pk>\d+)/properties/$', DocumentView.as_view(),
|
|
name='document_properties'
|
|
),
|
|
url(
|
|
r'^(?P<pk>\d+)/restore/$', DocumentRestoreView.as_view(),
|
|
name='document_restore'
|
|
),
|
|
url(
|
|
r'^multiple/restore/$', DocumentRestoreManyView.as_view(),
|
|
name='document_multiple_restore'
|
|
),
|
|
url(
|
|
r'^(?P<pk>\d+)/delete/$', TrashedDocumentDeleteView.as_view(),
|
|
name='document_delete'
|
|
),
|
|
url(
|
|
r'^multiple/delete/$', TrashedDocumentDeleteManyView.as_view(),
|
|
name='document_multiple_delete'
|
|
),
|
|
url(
|
|
r'^(?P<document_id>\d+)/type/$', 'document_document_type_edit',
|
|
name='document_document_type_edit'
|
|
),
|
|
url(
|
|
r'^multiple/type/$', 'document_multiple_document_type_edit',
|
|
name='document_multiple_document_type_edit'
|
|
),
|
|
url(
|
|
r'^(?P<pk>\d+)/trash/$', DocumentTrashView.as_view(),
|
|
name='document_trash'
|
|
),
|
|
url(
|
|
r'^multiple/trash/$', DocumentTrashManyView.as_view(),
|
|
name='document_multiple_trash'
|
|
),
|
|
url(
|
|
r'^(?P<pk>\d+)/edit/$', DocumentEditView.as_view(),
|
|
name='document_edit'
|
|
),
|
|
url(
|
|
r'^(?P<document_id>\d+)/print/$', 'document_print',
|
|
name='document_print'
|
|
),
|
|
url(
|
|
r'^(?P<document_id>\d+)/reset_page_count/$',
|
|
'document_update_page_count', name='document_update_page_count'
|
|
),
|
|
url(
|
|
r'^multiple/reset_page_count/$',
|
|
'document_multiple_update_page_count',
|
|
name='document_multiple_update_page_count'
|
|
),
|
|
|
|
url(
|
|
r'^(?P<document_id>\d+)/display/$', 'get_document_image', {
|
|
'size': setting_display_size.value
|
|
}, 'document_display'
|
|
),
|
|
url(
|
|
r'^(?P<document_id>\d+)/display/print/$', 'get_document_image', {
|
|
'size': setting_print_size.value
|
|
}, 'document_display_print'
|
|
),
|
|
|
|
url(
|
|
r'^(?P<document_id>\d+)/download/$', 'document_download',
|
|
name='document_download'
|
|
),
|
|
url(
|
|
r'^multiple/download/$', 'document_multiple_download',
|
|
name='document_multiple_download'
|
|
),
|
|
url(
|
|
r'^(?P<document_id>\d+)/clear_transformations/$',
|
|
'document_clear_transformations',
|
|
name='document_clear_transformations'
|
|
),
|
|
|
|
url(
|
|
r'^(?P<pk>\d+)/version/all/$', DocumentVersionListView.as_view(),
|
|
name='document_version_list'
|
|
),
|
|
url(
|
|
r'^document/version/(?P<document_version_pk>\d+)/download/$',
|
|
'document_download', name='document_version_download'
|
|
),
|
|
url(
|
|
r'^document/version/(?P<pk>\d+)/revert/$',
|
|
DocumentVersionRevertView.as_view(), name='document_version_revert'
|
|
),
|
|
|
|
url(
|
|
r'^(?P<pk>\d+)/pages/all/$', DocumentPageListView.as_view(),
|
|
name='document_pages'
|
|
),
|
|
|
|
url(
|
|
r'^multiple/clear_transformations/$',
|
|
'document_multiple_clear_transformations',
|
|
name='document_multiple_clear_transformations'
|
|
),
|
|
url(
|
|
r'^cache/clear/$', ClearImageCacheView.as_view(),
|
|
name='document_clear_image_cache'
|
|
),
|
|
url(
|
|
r'^trash_can/empty/$', EmptyTrashCanView.as_view(),
|
|
name='trash_can_empty'
|
|
),
|
|
|
|
url(
|
|
r'^page/(?P<pk>\d+)/$', DocumentPageView.as_view(),
|
|
name='document_page_view'
|
|
),
|
|
url(
|
|
r'^page/(?P<document_page_id>\d+)/navigation/next/$',
|
|
'document_page_navigation_next', name='document_page_navigation_next'
|
|
),
|
|
url(
|
|
r'^page/(?P<document_page_id>\d+)/navigation/previous/$',
|
|
'document_page_navigation_previous',
|
|
name='document_page_navigation_previous'
|
|
),
|
|
url(
|
|
r'^page/(?P<document_page_id>\d+)/navigation/first/$',
|
|
'document_page_navigation_first', name='document_page_navigation_first'
|
|
),
|
|
url(
|
|
r'^page/(?P<document_page_id>\d+)/navigation/last/$',
|
|
'document_page_navigation_last', name='document_page_navigation_last'
|
|
),
|
|
url(
|
|
r'^page/(?P<document_page_id>\d+)/zoom/in/$',
|
|
'document_page_zoom_in', name='document_page_zoom_in'
|
|
),
|
|
url(
|
|
r'^page/(?P<document_page_id>\d+)/zoom/out/$',
|
|
'document_page_zoom_out', name='document_page_zoom_out'
|
|
),
|
|
url(
|
|
r'^page/(?P<document_page_id>\d+)/rotate/right/$',
|
|
'document_page_rotate_right', name='document_page_rotate_right'
|
|
),
|
|
url(
|
|
r'^page/(?P<document_page_id>\d+)/rotate/left/$',
|
|
'document_page_rotate_left', name='document_page_rotate_left'
|
|
),
|
|
url(
|
|
r'^page/(?P<pk>\d+)/reset/$', DocumentPageViewResetView.as_view(),
|
|
name='document_page_view_reset'
|
|
),
|
|
|
|
# Admin views
|
|
url(
|
|
r'^type/list/$', DocumentTypeListView.as_view(),
|
|
name='document_type_list'
|
|
),
|
|
url(
|
|
r'^type/create/$', DocumentTypeCreateView.as_view(),
|
|
name='document_type_create'
|
|
),
|
|
url(
|
|
r'^type/(?P<pk>\d+)/edit/$', DocumentTypeEditView.as_view(),
|
|
name='document_type_edit'
|
|
),
|
|
url(
|
|
r'^type/(?P<pk>\d+)/delete/$', DocumentTypeDeleteView.as_view(),
|
|
name='document_type_delete'
|
|
),
|
|
url(
|
|
r'^type/(?P<pk>\d+)/documents/$',
|
|
DocumentTypeDocumentListView.as_view(),
|
|
name='document_type_document_list'
|
|
),
|
|
url(
|
|
r'^type/(?P<pk>\d+)/filename/list/$',
|
|
DocumentTypeFilenameListView.as_view(),
|
|
name='document_type_filename_list'
|
|
),
|
|
url(
|
|
r'^type/filename/(?P<pk>\d+)/edit/$',
|
|
DocumentTypeFilenameEditView.as_view(),
|
|
name='document_type_filename_edit'
|
|
),
|
|
url(
|
|
r'^type/filename/(?P<pk>\d+)/delete/$',
|
|
DocumentTypeFilenameDeleteView.as_view(),
|
|
name='document_type_filename_delete'
|
|
),
|
|
url(
|
|
r'^type/(?P<pk>\d+)/filename/create/$',
|
|
DocumentTypeFilenameCreateView.as_view(),
|
|
name='document_type_filename_create'
|
|
),
|
|
)
|
|
|
|
api_urls = patterns(
|
|
'',
|
|
url(r'^documents/$', APIDocumentListView.as_view(), name='document-list'),
|
|
url(
|
|
r'^documents/recent/$', APIRecentDocumentListView.as_view(),
|
|
name='document-recent-list'
|
|
),
|
|
url(
|
|
r'^documents/(?P<pk>[0-9]+)/$', APIDocumentView.as_view(),
|
|
name='document-detail'
|
|
),
|
|
url(
|
|
r'^documents/(?P<pk>[0-9]+)/versions/$',
|
|
APIDocumentVersionsListView.as_view(), name='document-version-list'
|
|
),
|
|
url(
|
|
r'^documents/(?P<pk>[0-9]+)/download/$',
|
|
APIDocumentDownloadView.as_view(), name='document-download'
|
|
),
|
|
url(
|
|
r'^document_version/(?P<pk>[0-9]+)/$',
|
|
APIDocumentVersionView.as_view(), name='documentversion-detail'
|
|
),
|
|
url(
|
|
r'^document_version/(?P<pk>[0-9]+)/revert/$',
|
|
APIDocumentVersionRevertView.as_view(), name='documentversion-revert'
|
|
),
|
|
url(
|
|
r'^document_version/(?P<pk>[0-9]+)/download/$',
|
|
APIDocumentVersionDownloadView.as_view(), name='documentversion-download'
|
|
),
|
|
url(
|
|
r'^document_page/(?P<pk>[0-9]+)/$', APIDocumentPageView.as_view(),
|
|
name='documentpage-detail'
|
|
),
|
|
url(
|
|
r'^document_page/(?P<pk>[0-9]+)/image/$',
|
|
APIDocumentPageImageView.as_view(), name='documentpage-image'
|
|
),
|
|
url(
|
|
r'^document_types/(?P<pk>[0-9]+)/documents/$',
|
|
APIDocumentTypeDocumentListView.as_view(),
|
|
name='documenttype-document-list'
|
|
),
|
|
url(
|
|
r'^document_types/(?P<pk>[0-9]+)/$', APIDocumentTypeView.as_view(),
|
|
name='documenttype-detail'
|
|
),
|
|
url(
|
|
r'^document_types/$', APIDocumentTypeListView.as_view(),
|
|
name='documenttype-list'
|
|
),
|
|
url(
|
|
r'^trashed_documents/$', APITrashedDocumentListView.as_view(),
|
|
name='trasheddocument-list'
|
|
),
|
|
url(
|
|
r'^trashed_documents/(?P<pk>[0-9]+)/$',
|
|
APITrashedDocumentView.as_view(), name='trasheddocument-detail'
|
|
),
|
|
url(
|
|
r'^trashed_documents/(?P<pk>[0-9]+)/restore/$',
|
|
APITrashedDocumentRestoreView.as_view(), name='trasheddocument-restore'
|
|
),
|
|
)
|