stevenpi / Link.Python.Django.DiyBlog

This blog is based on the assessment found [here](https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/django_assessment_blog).
MIT License
0 stars 0 forks source link

Implemented RSS Feed #11

Closed stevenpi closed 6 years ago

stevenpi commented 6 years ago

Since it was requested in the Issue. The feed can be reached under the following URI: /blog/latest/feed

Resolves #5

stevenpi commented 6 years ago

I installed fullurl and implemented the special tag as requested (the tag can be found in base_generic.html) However, how can I now test this? What does it exactly do? I amended the changes on the last commit

mbaechtold commented 6 years ago

If I remember correctly, this meta tag will be read by a RSS reader software when you subscribe to the feed of a website. You should be able to test this with a RSS reader software, e.g. http://www.rssowl.org/, which is a bit old, but should still be working. Plus it's free.

mbaechtold commented 6 years ago

Oh, RSSOwl requires Java 6. There's another free RSS reader which does not require Java: https://github.com/ViennaRSS/vienna-rss/releases/download/v%2F3.3.0/Vienna3.3.0.tgz

stevenpi commented 6 years ago

I changed the feed as requested. The feed now returns a correct Atom xml

stevenpi commented 6 years ago

Rebased branch and resolved merge conflict