Mirror of
forum.nim-lang.org
index
9176 :: Is it possible to have a nim forum rss feed publicly?
[2022-05-27T09:53:04+02:00]
View Orginal
DeletedUser
(orginal)
[2022-05-27T09:53:04+02:00]
view original
context
Is it possible to have a nim forum rss feed publicly?
I would like to follow the forum via the rss feed - without having to log in every time
sauerbread
(orginal)
[2022-05-27T11:03:04+02:00]
view original
Well after some digging I can recommend you the following. This will either work as a pull request for
nimforum
or as a seperate toy project.
Pull the threads from
https://forum.nim-lang.org/threads.json(?start=30)
Read the rss spec at
https://www.rssboard.org/rss-specification
Use
std/xmltree
to generate a feed.
RSS Feed.
dom96
(orginal)
[2022-05-27T11:59:05+02:00]
view original
The forum already offers an Atom feed:
http://forum.nim-lang.org/threadActivity.xml
http://forum.nim-lang.org/postActivity.xml
Code pointer for reference:
https://github.com/nim-lang/nimforum/blob/6f366608/src/forum.nim#L1600
ingo
(orginal)
[2022-05-27T13:04:27+02:00]
view original
They do not seem to be discoverable. There's no
<link rel="alternate" type="application/rss+xml"......>
in the forum pages?
dom96
(orginal)
[2022-05-27T13:17:08+02:00]
view original
True, we should add that.
DeletedUser
(orginal)
[2022-05-28T08:42:43+02:00]
view original
I wish this were possible