aboutsummaryrefslogtreecommitdiff
path: root/cmds/rss_test.go
Commit message (Collapse)AuthorAge
* serve: POST /api/poll manual trigger; rename feed to FluxrecsHEADmainSam Scholten22 hours
| | | | | | | | | /api/poll runs an out-of-schedule poll through the same serialized path as the scheduler (TryLock, so curls and refreshes can't race the cursor), is POST-only, and 429s inside a 1-minute cooldown after any run. Response is JSON: polled/new_run plus the fresh row's stats when entries arrived. Also rename the RSS channel to Fluxrecs (Miniflux adopts upstream title changes as the feed name). just poll-now wraps the curl.
* rss: render score head as HTML paragraphSam Scholten22 hours
| | | | | | | Descriptions render as sanitized HTML in readers, where bare newlines collapse and the feed/score line ran into the article text. Wrap the headline in <p><em> so it breaks cleanly and reads as metadata, escaped on the wire by encoding/xml as description-carried HTML should be.
* rss: provenance + score calibration in itemsSam Scholten22 hours
| | | | | | | | | Item titles gain a rune-capped source-feed suffix so list views (which only ever show the channel title) display provenance inline. Item bodies open with feed, model score, and the batch-wide score median; the median is computed over every scored entry at poll time and stored on the run row as a nil-safe pointer, so old rows render without it. /api/status exposes the median too.
* fluxrec: personal Miniflux article recommenderSam Scholten30 hours