dtinit / portmap

A structured search frontend for portability articles to help people find solutions and help us learn about needs
https://portmap.dtinit.org
Other
2 stars 0 forks source link

Google "not found" page means it's still being reference somewhere? #121

Open lisad opened 2 months ago

lisad commented 2 months ago

Google's Search console says it can't find the page https://portmap.dtinit.org/articles_feed. I wondered if there was still a link to it in our code from before we changed that URL to /rss.

This line in views.py:

    link = "https://portmap.dtinit.org/articles_feed"

means that our RSS feed still references this link in line 4:

<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>RSS Feed</title>
<link>https://portmap.dtinit.org/articles_feed</link>
<description>Articles from Portability Articles repo</description>

So I guess this should have changed when we changed the URL to /rss

aaronjae22 commented 4 days ago

I'll be adding a couple of issues in here that are done alongside with this ticket.

I improved as long as I could the RSS Feed (the Django Syndication Feed Framework doesn't seem very editable) and did some testing to check if it's readable in a RSS Reader such as Feedly.

PR: #126