From f02423e129970b1857c5a54e79c7046061ddd069 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sat, 13 Feb 2021 19:07:30 -0500 Subject: src: dusted off RSS feed by popular demand --- app/builder/views.py | 3 +++ app/posts/views/src_views.py | 2 +- design/templates/admin/buttons.html | 1 + design/templates/admin/index.html | 5 +++++ 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/app/builder/views.py b/app/builder/views.py index 27385aa..e3c795e 100644 --- a/app/builder/views.py +++ b/app/builder/views.py @@ -62,6 +62,9 @@ def do_build(request): elif section == 'discursivepages': context = {'message': 'Writing Discursive Meditation Pages to Disk'} BuildPages("pages", "page", 'discursivemeditation.com').build() + elif section == 'srcrss': + context = {'message': 'Writing SrcRSS to Disk'} + BuildSrc("posts", "post").build_feed("src:feed") return render(request, 'admin/message.html', context) diff --git a/app/posts/views/src_views.py b/app/posts/views/src_views.py index c56b723..59c371c 100644 --- a/app/posts/views/src_views.py +++ b/app/posts/views/src_views.py @@ -65,7 +65,7 @@ class SrcRSSFeedView(Feed): description_template = 'feeds/blog_description.html' def items(self): - return SrcPost.objects.filter(status__exact=1).order_by('-pub_date')[:10] + return Post.objects.filter(status__exact=1).filter(post_type=PostType.SRC).order_by('-pub_date')[:10] """ diff --git a/design/templates/admin/buttons.html b/design/templates/admin/buttons.html index 4b169ea..647f946 100644 --- a/design/templates/admin/buttons.html +++ b/design/templates/admin/buttons.html @@ -55,6 +55,7 @@
  • Build Publications
  • Build Resume
  • Build src
  • +
  • Build src RSS
  • diff --git a/design/templates/admin/index.html b/design/templates/admin/index.html index d2aae7c..b9ac578 100644 --- a/design/templates/admin/index.html +++ b/design/templates/admin/index.html @@ -122,6 +122,11 @@ td, th { Add Build FieldNotes + + + + Build src RSS + {% for app in app_list %} -- cgit v1.2.3