About Social Code
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@gmail.com>2023-02-02 11:25:38 -0500
committerLucas Fryzek <lucas.fryzek@gmail.com>2023-02-02 11:25:38 -0500
commite6a77645890d37ef8906374a96d49914f773ead4 (patch)
tree47325fb2457000e2e48f6993fc0521dea551a87b /tools
parentea2ee06c101e424cb6435b204f5d3097931e9b98 (diff)
Add igalia specific feed
Diffstat (limited to 'tools')
-rwxr-xr-xtools/rss_gen.py19
1 files changed, 18 insertions, 1 deletions
diff --git a/tools/rss_gen.py b/tools/rss_gen.py
index 729cae1..630e154 100755
--- a/tools/rss_gen.py
+++ b/tools/rss_gen.py
@@ -5,6 +5,7 @@ import datetime
import time
import email.utils
import os
+import sys
today = email.utils.formatdate()
url = "https://fryzekconcepts.com"
@@ -39,7 +40,23 @@ for file in os.listdir(build_dir):
notes.sort(key=lambda note: datetime.datetime.strptime(note["date"], "%Y-%m-%d"))
+limit_cat = False
+categories = []
+if len(sys.argv) >= 3:
+ limit_cat = True
+ categories = sys.argv[2:]
+
for note in notes:
+ if limit_cat:
+ if not "categories" in note: continue
+ note_categories = note["categories"].split(",")
+ found = False
+ for cat in note_categories:
+ if cat in categories:
+ found = True
+ break
+
+ if not found: continue
post_time = datetime.datetime.strptime(note["date"], "%Y-%m-%d")
post_rfc_time = email.utils.formatdate(timeval=time.mktime(post_time.timetuple()))
post_url = "{}/notes/{}.html".format(url, note["name"])
@@ -54,4 +71,4 @@ for note in notes:
ET.SubElement(item, "guid").text = post_url
tree = ET.ElementTree(rss)
-tree.write("html/feed.xml", encoding='utf-8', xml_declaration=True)
+tree.write(sys.argv[1], encoding='utf-8', xml_declaration=True)