NetNewsWire/Frameworks/RSWeb
Brent Simmons 1968986d64 Make User-Agent of the form: Evergreen/1.0d28 (Macintosh; RSS Reader; ranchero.com/evergreen/)
The idea is that anyone looking at their stats can quickly find out what it is. It’s a Mac RSS reader. They can open that URL for even more info. (Before 1.0 ships, at that link will be a link to an article for publishers about RSS readers and lowering bandwidth use. Will talk about conditional GET, etc.)
2017-12-30 12:51:37 -08:00
..
RSWeb Make User-Agent of the form: Evergreen/1.0d28 (Macintosh; RSS Reader; ranchero.com/evergreen/) 2017-12-30 12:51:37 -08:00
RSWeb.xcodeproj Make APICall delegate based rather than defining a bunch of protocols. 2017-12-10 13:57:38 -08:00
RSWebiOS Add RSWeb framework. 2017-05-22 13:17:28 -07:00
RSWebTests Replace Ranchero Software with Ranchero Software, LLC. 2017-05-29 13:17:58 -07:00
.gitignore Add RSWeb framework. 2017-05-22 13:17:28 -07:00
LICENSE Add RSWeb framework. 2017-05-22 13:17:28 -07:00
README.md Add RSWeb framework. 2017-05-22 13:17:28 -07:00

RSWeb

RSWeb is utility code — all Swift — for downloading things from the web. It builds a Mac framework and an iOS framework.

Easy way

See OneShotDownload for a top-level download function that takes a URL and a callback. The callback takes Data, URLResponse, and Error parameters. Its easy.

Slightly less easy way

See DownloadSession and DownloadSessionDelegate for when youre doing a bunch of downloads and you need to track progress.

Extras

HTTPConditionalGetInfo helps with supporting conditional GET, for when youre downloading things that may not have changed. See HTTP Conditional Get for RSS Hackers for more about conditional GET. This is especially critical when polling for changes, such as with an RSS reader.

MimeType could use expansion, but is useful for some cases right now.

MacWebBrowser makes it easy to open a URL in the default browser. You can specify whether or not to open in background.