summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/app.d10
-rw-r--r--source/rssmeta.d13
2 files changed, 16 insertions, 7 deletions
diff --git a/source/app.d b/source/app.d
index cb57d19..15ebee2 100644
--- a/source/app.d
+++ b/source/app.d
@@ -89,16 +89,16 @@ void usage()
// TODO: RssInfo. We need the struct, with the relevant information, and where
// do we get it from?
-void create_rss(Entry[] entries, RssInfo info)
+void create_rss(Entry[] entries, RssMeta info)
{
string ret;
ret =
"<rss version="2.0">\n" ~
"\t\t<channel>\n" ~
- "\t\t<title>" ~ info.title ~ "</title>\n" ~
- "\t\t<description>" ~ info.description ~ "</description>\n" ~
- "\t\t<language>" ~ info.language ~ "</language>\n" ~
- "\t\t<link href=\"" ~ info.link ~ "\" rel=\"self\" type=\"application/rss+xml\"/>";
+ "\t\t<title>" ~ info.title_of_feed ~ "</title>\n" ~
+ "\t\t<description>" ~ info.desc_of_feed ~ "</description>\n" ~
+ "\t\t<language>" ~ info.language_of_feed ~ "</language>\n" ~
+ "\t\t<link href=\"" ~ info.link_of_feed ~ "\" rel=\"self\" type=\"application/rss+xml\"/>";
for (int i = 0; i < entries.length; ++i)
{
diff --git a/source/rssmeta.d b/source/rssmeta.d
index 864503c..d190c69 100644
--- a/source/rssmeta.d
+++ b/source/rssmeta.d
@@ -17,8 +17,11 @@ struct RssMeta
{
this.metafile = metafile;
- if (metafile[-4:] == ".json") {}
- else if (metafile[-4:] == ".xml") {}
+ if (metafile[-4:] == ".json")
+ {
+ // NOTE: implement XML first, then JSON after.
+ }
+ else if (metafile[-4:] == ".xml") { /* TODO: implement parsing RssMeta */ }
else
{
writeln("Cannot deduce whether metafile is json or xml. Please" ~
@@ -36,4 +39,10 @@ struct RssMeta
string link_of(string filename) const { return ""; }
string pubdate_of(string filename) const { return ""; }
string guid_of(string filename) const { return ""; }
+
+ // TODO: implement all these.
+ string title_of_feed() const { return ""; }
+ string desc_of_feed() const { return ""; }
+ string language_of_feed() const { return ""; }
+ string link_of_feed() const { return ""; }
}