A tiny, self-contained web app that fetches the NZ Parliament submissions RSS feed and lists deadlines in a calendar-style view. You can mark items as Followed and Completed, which are saved in your browser (localStorage).
Feed: https://www.parliament.nz/en/submissionslisting/rss/4456
- Reads the RSS feed from a local file
- Extract deadlines from entry content like: "The closing date for submissions is 11.59pm on Thursday, 02 October 2025"
- Group items by date and sort
- Follow/Unfollow and Mark Completed toggles, persisted locally
- Filters: Followed only, Hide completed, and a search box
Open index.html in your browser. Fetch the RSS feed and save as rss.xml in the same directory. Run a simple local server:
PowerShell (Windows):
# Python 3
python -m http.server 5500
# Then open http://localhost:5500/index.htmlOr using Node.js:
npx serve -l 5500- Date parsing defaults to 5:00pm local time if no time is found. The provided feed content usually includes a time (e.g., 11:59pm).