A program that downloads ICS from upstream calendars, indexes them, and publishes the index as HTML and ICS
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-08-14 01:05:04 -05:00
sample-data initial commit after removing private test data 2025-08-11 06:13:38 +00:00
src continue the main loop even if we hit a download error 2026-08-14 01:04:08 -05:00
.gitignore run fully automated 2025-08-12 04:30:53 +00:00
Cargo.lock this is a breaking change, fwiw 2026-08-14 01:05:04 -05:00
Cargo.toml this is a breaking change, fwiw 2026-08-14 01:05:04 -05:00
notes.md 🐛 tweak the downloading and main loop to handle 429 errors 2025-10-09 22:20:43 +00:00
README.md fix up README, simplify Cross.toml, add debug command, routine cleanup 2026-08-10 14:55:48 -05:00
rust-toolchain.toml bump rust toolchain 2026-08-10 14:19:43 -05:00

Wide-Angle Calendar

Wide-Angle Calendar is a Rust program that scrapes web calendars (mostly iCalendar format) and writes an agenda-style calendar to static HTML files.

Use

# Run production mode (parse config file, read upstream calendars, write HTML, then sleep in the loop)
./wide-angle-calendar auto --config config.toml

# Build production binary with `cross` to support older libc distros
cross build --release

# Create an iCalendar event manually (use `--help` to see arguments)
cargo run -- create-event

# Run RSS debug tool
cargo run -- debug-rss untracked/*.rss

# Debug the HTML output
# (You may need to run 'auto' mode first to download the ICS files)
cargo run -- debug-output --config config.toml