summaryrefslogtreecommitdiff
path: root/src/gmrequest.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-11-26 14:07:30 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-11-26 14:07:30 +0200
commit0a9d9d751ac824750df91c9299e92b6a56cba38d (patch)
treea9414be6aac27f26c8d5c752a930a774a0db6516 /src/gmrequest.c
parentc69280c86ad2602171daa4b4bf820c7b59bc9324 (diff)
Feeds: Added "about:feeds"
Show all entries in a CAPCOM-like chronological list.
Diffstat (limited to 'src/gmrequest.c')
-rw-r--r--src/gmrequest.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gmrequest.c b/src/gmrequest.c
index 7443c68c..2ac580b6 100644
--- a/src/gmrequest.c
+++ b/src/gmrequest.c
@@ -25,8 +25,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
25#include "gmcerts.h" 25#include "gmcerts.h"
26#include "gopher.h" 26#include "gopher.h"
27#include "app.h" /* dataDir_App() */ 27#include "app.h" /* dataDir_App() */
28#include "embedded.h" 28#include "feeds.h"
29#include "ui/text.h" 29#include "ui/text.h"
30#include "embedded.h"
30#include "defs.h" 31#include "defs.h"
31 32
32#include <the_Foundation/file.h> 33#include <the_Foundation/file.h>
@@ -259,6 +260,9 @@ static const iBlock *aboutPageSource_(iRangecc path) {
259 if (equalCase_Rangecc(path, "debug")) { 260 if (equalCase_Rangecc(path, "debug")) {
260 return utf8_String(debugInfo_App()); 261 return utf8_String(debugInfo_App());
261 } 262 }
263 if (equalCase_Rangecc(path, "feeds")) {
264 return utf8_String(entryListPage_Feeds());
265 }
262 return src; 266 return src;
263} 267}
264 268