##// END OF EJS Templates
Use proper settings for max landing threads. Show thread last update time instead of number of posts
Use proper settings for max landing threads. Show thread last update time instead of number of posts

File last commit:

r1998:8255ca3c default
r2001:6d66389f default
Show More
urls.py
91 lines | 3.9 KiB | text/x-python | PythonLexer
neko259
Updated urls list to be a plain list instead of 'patterns' method which is...
r1486 from django.conf.urls import url
neko259
Adapt to django-2.0
r1986 from django.urls import path
from django.views.i18n import JavaScriptCatalog
neko259
Refactored views
r1090
neko259
Initial commit. One test doesn't work, missing posting form.
r0 from boards import views
neko259
Implemented RSS support. This fixes #11
r89 from boards.rss import AllThreadsFeed, TagThreadsFeed, ThreadPostsFeed
neko259
Unify thread and post creation into one method inside post manager, that can be called from almost anywhere (one step closer to ajax thread creation)
r1997 from boards.views import api, tag_threads, all_threads, settings, feed, stickers, thread, banned
neko259
Added missing all_tags module. Moved authors view to class-based
r551 from boards.views.authors import AuthorsView
neko259
Removed tags view completely as there are no more links leading to it
r1945 from boards.views.landing import LandingView
neko259
User notifications (BB-59)
r990 from boards.views.notifications import NotificationView
neko259
Removed tags view completely as there are no more links leading to it
r1945 from boards.views.preview import PostPreviewView
from boards.views.random import RandomImageView
from boards.views.search import BoardSearchView
neko259
Moved static page view to the class-based. Removed old methods from the view...
r565 from boards.views.static import StaticPageView
neko259
Rename "pull" request to "list"
r1566 from boards.views.sync import get_post_sync_data, response_get, response_list
neko259
Added tag gallery
r1419 from boards.views.tag_gallery import TagGalleryView
neko259
Allow speed ban
r1899 from boards.views.utils import UtilsView
neko259
Initial commit. One test doesn't work, missing posting form.
r0
neko259
Added translation for javascript. This fixes #36
r122
neko259
Updated urls list to be a plain list instead of 'patterns' method which is...
r1486 urlpatterns = [
neko259
Initial commit. One test doesn't work, missing posting form.
r0 # /boards/
neko259
Use path resolver instead of url where possible
r1987 path('all/', all_threads.AllThreadsView.as_view(), name='index'),
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 # /boards/tag/tag_name/
neko259
Fix tag gallery to be used as separate url
r1992 url(r'^tag/(?P<tag_name>[\w\d\']+)/$', tag_threads.TagView.as_view(),
neko259
Rewriting views to class-based
r542 name='tag'),
neko259
Allow using apostrophe in tags
r1962 url(r'^tag/(?P<tag_name>[\w\d\']+)/gallery/$', TagGalleryView.as_view(), name='tag_gallery'),
neko259
Added subscription to tags.
r145
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 # /boards/thread/
neko259
Use path resolver instead of url where possible
r1987 path('thread/<int:post_id>/', views.thread.NormalThreadView.as_view(),
name='thread'),
path('thread/<int:post_id>/mode/gallery/', views.thread.GalleryThreadView.as_view(),
name='thread_gallery'),
path('thread/<int:post_id>/mode/tree/', views.thread.TreeThreadView.as_view(),
name='thread_tree'),
neko259
Added all posts feed
r1165 # /feed/
neko259
Use path resolver instead of url where possible
r1987 path('feed/', views.feed.FeedView.as_view(), name='feed'),
neko259
Moved all tags view to class-based view
r550
neko259
Use path resolver instead of url where possible
r1987 path('settings/', settings.SettingsView.as_view(), name='settings'),
path('stickers/', stickers.AliasesView.as_view(), name='stickers'),
path('stickers/<str:category>/', stickers.AliasesView.as_view(), name='stickers'),
path('authors/', AuthorsView.as_view(), name='authors'),
neko259
Added 'ban' button to the moderator panel.
r156
neko259
Use path resolver instead of url where possible
r1987 path('banned/', views.banned.BannedView.as_view(), name='banned'),
path('staticpage/<str:name>/', StaticPageView.as_view(), name='staticpage'),
neko259
Implemented RSS support. This fixes #11
r89
neko259
Use path resolver instead of url where possible
r1987 path('random/', RandomImageView.as_view(), name='random'),
path('search/', BoardSearchView.as_view(), name='search'),
path('', LandingView.as_view(), name='landing'),
path('utils', UtilsView.as_view(), name='utils'),
neko259
Add random images list view
r1246
neko259
Implemented RSS support. This fixes #11
r89 # RSS feeds
neko259
Use path resolver instead of url where possible
r1987 path('rss/', AllThreadsFeed()),
path('all/rss/', AllThreadsFeed()),
neko259
Implemented RSS support. This fixes #11
r89 url(r'^tag/(?P<tag_name>\w+)/rss/$', TagThreadsFeed()),
neko259
Use path resolver instead of url where possible
r1987 path('thread/<int:post_id>/rss/', ThreadPostsFeed()),
neko259
Added translation for javascript. This fixes #36
r122
neko259
Added an API method for retrieving post's JSON.
r221 # i18n
neko259
Adapt to django-2.0
r1986 path('jsi18n/', JavaScriptCatalog.as_view(packages=['boards']), name='js_info_dict'),
neko259
Added an API method for retrieving post's JSON.
r221
# API
neko259
Updated API to use a new timestamp format for getting updated posts and get...
r1086 url(r'^api/post/(?P<post_id>\d+)/$', api.get_post, name="get_post"),
neko259
Put thread id parameter into POST body instead of GET param when getting a...
r1191 url(r'^api/diff_thread/$', api.api_get_threaddiff, name="get_thread_diff"),
neko259
Added api for the tags list
r500 url(r'^api/threads/(?P<count>\w+)/$', api.api_get_threads,
name='get_threads'),
neko259
Rewriting views to class-based
r542 url(r'^api/tags/$', api.api_get_tags, name='get_tags'),
url(r'^api/thread/(?P<opening_post_id>\w+)/$', api.api_get_thread_posts,
neko259
Added api for getting thread posts
r502 name='get_thread'),
neko259
Added post admin page with tags edit capability
r566 url(r'^api/add_post/(?P<opening_post_id>\w+)/$', api.api_add_post,
neko259
AJAX-based thread creation
r1998 name='add_post'),
url(r'^api/add_post/$', api.api_add_post, name='add_post'),
neko259
Added notification API
r994 url(r'^api/notifications/(?P<username>\w+)/$', api.api_get_notifications,
name='api_notifications'),
neko259
Added AJAX text preview to the form.
r1217 url(r'^api/preview/$', api.api_get_preview, name='preview'),
neko259
Added favorite thread popup
r1340 url(r'^api/new_posts/$', api.api_get_new_posts, name='new_posts'),
neko259
Image alias autocomplete
r1702 url(r'^api/stickers/$', api.api_get_stickers, name='get_stickers'),
neko259
Added api for the tags list
r500
neko259
Some progress in the sync
r1144 # Sync protocol API
neko259
Rename "pull" request to "list"
r1566 url(r'^api/sync/list/$', response_list, name='api_sync_list'),
url(r'^api/sync/get/$', response_get, name='api_sync_get'),
neko259
Some progress in the sync
r1144
neko259
User notifications (BB-59)
r990 # Notifications
neko259
Use path resolver instead of url where possible
r1987 path('notifications/<str:username>/', NotificationView.as_view(), name='notifications'),
path('notifications/', NotificationView.as_view(), name='notifications'),
neko259
User notifications (BB-59)
r990
neko259
Added post preview page
r825 # Post preview
neko259
Use path resolver instead of url where possible
r1987 path('preview/', PostPreviewView.as_view(), name='preview'),
path('post_xml/<int:post_id>', get_post_sync_data,
name='post_sync_data'),
neko259
Updated urls list to be a plain list instead of 'patterns' method which is...
r1486 ]
neko259
Add search view only if haystack enabled
r1479