Add link to release in RSS.
continuous-integration/drone/push Build is passing Details

Previously releases had no own page. Now they have.
This commit is contained in:
tastytea 2020-10-27 12:16:29 +01:00
parent 0bcad56590
commit 089534e07d
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
:doctype: manpage
:Author: tastytea
:Email: tastytea@tastytea.de
:Date: 2020-10-24
:Date: 2020-10-27
:Revision: 0.0.0
:man source: gitea2rss
:man version: {revision}
@ -33,9 +33,7 @@ _https://rss.example.com/?repo=alice/cooltool&type=tags_.
The generated RSS feed contains the *channel* elements _title_, _link_,
_description_, _generator_ and _lastBuildDate_ and the *item* elements _title_,
_link_, _guid_, _pubDate_ and _description_. Since Gitea has no individual pages
for each release, _link_ elements in *item* are set to the overview page for
releases.
_link_, _guid_, _pubDate_ and _description_.
== GITEA INTEGRATION

View File

@ -58,7 +58,9 @@ uint8_t write_releases(const string &url)
cout << " <item>\n";
write_line(6, "title",
get_project(url) + ": " + release["name"].asString());
write_line(6, "link", (baseurl + "/" += repo) += "/releases");
write_line(6, "link",
((baseurl + "/" += repo) += "/releases/tag/") +=
release["tag_name"].asString());
write_line(6, "guid isPermaLink=\"false\"",
get_domain(url) + " release " + release["id"].asString());
write_line(6, "pubDate", strtime(release["published_at"].asString()));