rss¶
vb rss [OPTIONS]
Description¶
The CLI variant of the /timeline.rss page, this produces an RSS feed of the timeline to stdout.
Options¶
- -type, y FLAG¶
May be: all (default), ci (show check-ins only), t (show tickets only), w (show wiki only)
- -limit, n LIMIT¶
The maximum number of items to show
- -tkt HASH¶
Filter for only those events for the specified ticket
- -tag TAG¶
Filter for a tag
- -wiki NAME¶
Filter on a specific wiki page
Special options¶
Only one of -tkt, -tag, or -wiki may be used.
- -name FILENAME¶
Filter for a specific file. This may be combined with one of the other filters (useful for looking at a specific branch).
- -url STRING¶
Set the RSS feed’s root URL to the given string. The default is
URL-PLACEHOLDER(without quotes).
Examples¶
Generate an RSS feed for recent activity
$ vb rss -limit 5
<?xml version="1.0"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel>
<title>VisionByte source repository for: URL-PLACEHOLDER</title>
<link>URL-PLACEHOLDER</link>
<description>VisionByte source repository for: URL-PLACEHOLDER</description>
<pubDate>Thu, 26 Mar 2026 08:37:56 +0000</pubDate>
<generator>VisionByte version [c01b54e64f] 2026-03-26 08:25:33</generator>
<item><title>initial empty check-in (tags: trunk)</title>
<link>URL-PLACEHOLDER/info/dfb4736dfeecb9945d6a97a3952b4b97187c35c9d7a10885d199b81dfbb1c798</link>
<description>initial empty check-in (tags: trunk)</description>
<pubDate>Thu, 26 Mar 2026 08:37:56 +0000</pubDate>
<dc:creator>ubuntu</dc:creator>
<guid>/info/dfb4736dfeecb9945d6a97a3952b4b97187c35c9d7a10885d199b81dfbb1c798</guid>
</item>
</channel>
</rss>
Add a check-in so the feed has content
$ vb ci -m "add note"
Committed version: fb63f20f3e5b0a2d62445c25b22b7492be97a3c23a22c72fd80ecbc75e5297fc
$ vb rss
<?xml version="1.0"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel>
<title>VisionByte source repository for: URL-PLACEHOLDER</title>
<link>URL-PLACEHOLDER</link>
<description>VisionByte source repository for: URL-PLACEHOLDER</description>
<pubDate>Thu, 26 Mar 2026 08:37:56 +0000</pubDate>
<generator>VisionByte version [c01b54e64f] 2026-03-26 08:25:33</generator>
<item><title>add note (tags: trunk)</title>
<link>URL-PLACEHOLDER/info/fb63f20f3e5b0a2d62445c25b22b7492be97a3c23a22c72fd80ecbc75e5297fc</link>
<description>add note (tags: trunk)</description>
<pubDate>Thu, 26 Mar 2026 08:37:56 +0000</pubDate>
<dc:creator>ubuntu</dc:creator>
<guid>/info/fb63f20f3e5b0a2d62445c25b22b7492be97a3c23a22c72fd80ecbc75e5297fc</guid>
</item>
<item><title>initial empty check-in (tags: trunk)</title>
<link>URL-PLACEHOLDER/info/dfb4736dfeecb9945d6a97a3952b4b97187c35c9d7a10885d199b81dfbb1c798</link>
<description>initial empty check-in (tags: trunk)</description>
<pubDate>Thu, 26 Mar 2026 08:37:56 +0000</pubDate>
<dc:creator>ubuntu</dc:creator>
<guid>/info/dfb4736dfeecb9945d6a97a3952b4b97187c35c9d7a10885d199b81dfbb1c798</guid>
</item>
</channel>
</rss>