X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ea9d7d13a44a6ad6357b1af8c977c27753268521..ca8f4e8fef80cb603117ed579da8554f503698e5:/src/catalogue/urls.py?ds=sidebyside diff --git a/src/catalogue/urls.py b/src/catalogue/urls.py index 840d2bfae..91c66a2fe 100644 --- a/src/catalogue/urls.py +++ b/src/catalogue/urls.py @@ -1,5 +1,5 @@ -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # from django.urls import path, re_path from django.db.models import Max @@ -7,17 +7,10 @@ from django.views.generic import ListView, RedirectView from catalogue.feeds import AudiobookFeed from catalogue.models import Book from catalogue import views -import picture.views import search.views urlpatterns = [ - path('obraz/strona/', picture.views.picture_page, name='picture_page'), - # pictures - currently pictures are coupled with catalogue, hence the url is here - path('obraz/', picture.views.picture_list_thumb, name='picture_list_thumb'), - path('obraz/.html', picture.views.picture_viewer, name='picture_viewer'), - path('obraz//', picture.views.picture_detail, name='picture_detail'), - # old search page - redirected path('szukaj/', RedirectView.as_view( url='/szukaj/', query_string=True, permanent=True)), @@ -30,7 +23,6 @@ urlpatterns = [ path('rodzaj/', views.tag_catalogue, {'category': 'kind'}, name='kind_catalogue'), path('motyw/', views.tag_catalogue, {'category': 'theme'}, name='theme_catalogue'), - path('galeria/', views.GalleryView.as_view(), name='gallery'), path('kolekcje/', views.collections, name='catalogue_collections'), path('lektury/', views.LiteratureView.as_view(), name='book_list'), @@ -63,7 +55,6 @@ urlpatterns = [ # Public interface. Do not change this URLs. path('lektura/.html', views.book_text, name='book_text'), - path('lektura//audiobook/', views.player, name='book_player'), path('lektura//', views.book_detail, name='book_detail'), path('lektura//motyw//', views.book_fragments, name='book_fragments'), @@ -72,11 +63,9 @@ urlpatterns = [ path('isbn///', views.get_isbn), # This should be the last pattern. - re_path(r'^galeria/(?P[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'gallery'}, - name='tagged_object_list_gallery'), re_path(r'^audiobooki/(?P[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'audiobooks'}, name='tagged_object_list_audiobooks'), - re_path(r'^(?P[a-zA-Z0-9-/]*)/$', views.TaggedObjectList.as_view(), + re_path(r'^(?P[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'books'}, name='tagged_object_list'), ]