-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
2,710 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## Notes | ||
|
||
This project uses a portion of the source code from [DjangoBlog](https://github.com/liangliangyy/DjangoBlog) for testing purposes. (Djangoblog is released under the MIT License) |
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
from django.urls import path | ||
from django.views.decorators.cache import cache_page | ||
|
||
from . import views | ||
|
||
app_name = "blog" | ||
urlpatterns = [ | ||
path( | ||
r'', | ||
views.IndexView.as_view(), | ||
name='index'), | ||
path( | ||
r'page/<int:page>/', | ||
views.IndexView.as_view(), | ||
name='index_page'), | ||
path( | ||
r'article/<int:year>/<int:month>/<int:day>/<int:article_id>.html', | ||
views.ArticleDetailView.as_view(), | ||
name='detailbyid'), | ||
path( | ||
r'category/<slug:category_name>.html', | ||
views.CategoryDetailView.as_view(), | ||
name='category_detail'), | ||
path( | ||
r'category/<slug:category_name>/<int:page>.html', | ||
views.CategoryDetailView.as_view(), | ||
name='category_detail_page'), | ||
path( | ||
r'author/<author_name>.html', | ||
views.AuthorDetailView.as_view(), | ||
name='author_detail'), | ||
path( | ||
r'author/<author_name>/<int:page>.html', | ||
views.AuthorDetailView.as_view(), | ||
name='author_detail_page'), | ||
path( | ||
r'tag/<slug:tag_name>.html', | ||
views.TagDetailView.as_view(), | ||
name='tag_detail'), | ||
path( | ||
r'tag/<slug:tag_name>/<int:page>.html', | ||
views.TagDetailView.as_view(), | ||
name='tag_detail_page'), | ||
path( | ||
'archives.html', | ||
cache_page( | ||
60 * 60)( | ||
views.ArchivesView.as_view()), | ||
name='archives'), | ||
path( | ||
'links.html', | ||
views.LinkListView.as_view(), | ||
name='links'), | ||
path( | ||
r'upload', | ||
views.fileupload, | ||
name='upload'), | ||
path( | ||
r'not_found', | ||
views.page_not_found_view, | ||
name='page_not_found_view'), | ||
path( | ||
r'test', | ||
views.test, | ||
name='test'), | ||
path( | ||
r'delete_test', | ||
views.delete_test, | ||
name='delete_test'), | ||
] |
Oops, something went wrong.