commit 2092f2d4a0a513ba82069527f05c8e9907644edc
parent 86beb3defce8569f43265b1b10f79f413edf9dca
Author: St John Karp <contact@stjo.hn>
Date: Sun, 17 May 2020 14:02:26 -0500
Namespace some predicates in rss.pl
Diffstat:
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/rss.pl b/rss.pl
@@ -39,17 +39,17 @@ channel_meta(BuildDate) -->
newline, tab, tab,
last_build_date(BuildDate).
-title(Title) -->
+item_title(Title) -->
"<title>",
Title,
"</title>".
-description(Description) -->
+item_description(Description) -->
"<description>",
Description,
"</description>".
-link(Link) -->
+item_link(Link) -->
"<link>",
Link,
"</link>".
@@ -82,15 +82,15 @@ item(article(Date, Title, Link, Description)) -->
newline, tab, tab,
item_open,
newline, tab, tab, tab,
- title(Title),
+ item_title(Title),
newline, tab, tab, tab,
- link(Link),
+ item_link(Link),
newline, tab, tab, tab,
- description(Description),
+ item_description(Description),
newline, tab, tab, tab,
author,
newline, tab, tab, tab,
- pubdate(Date),
+ item_pubdate(Date),
newline, tab, tab,
item_close.
@@ -101,7 +101,7 @@ author -->
user_name,
"</author>".
-pubdate(Date) -->
+item_pubdate(Date) -->
"<pubDate>",
anything(Date),
"</pubDate>".