├── .gitignore ├── LICENSE ├── README.md ├── RSXML.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcbaselines │ └── 84F22C161B52DDEA000060CE.xcbaseline │ ├── 8756A8AF-348E-4D58-81F2-569F71868FB1.plist │ ├── B9957C87-0F96-4C9B-864E-DF5BD201D1DC.plist │ └── Info.plist ├── RSXML ├── FeedParser.h ├── Info.plist ├── NSString+RSXML.h ├── NSString+RSXML.m ├── RSAtomParser.h ├── RSAtomParser.m ├── RSDateParser.h ├── RSDateParser.m ├── RSFeedParser.h ├── RSFeedParser.m ├── RSHTMLLinkParser.h ├── RSHTMLLinkParser.m ├── RSHTMLMetadata.h ├── RSHTMLMetadata.m ├── RSHTMLMetadataParser.h ├── RSHTMLMetadataParser.m ├── RSOPMLAttributes.h ├── RSOPMLAttributes.m ├── RSOPMLDocument.h ├── RSOPMLDocument.m ├── RSOPMLFeedSpecifier.h ├── RSOPMLFeedSpecifier.m ├── RSOPMLItem.h ├── RSOPMLItem.m ├── RSOPMLParser.h ├── RSOPMLParser.m ├── RSParsedArticle.h ├── RSParsedArticle.m ├── RSParsedFeed.h ├── RSParsedFeed.m ├── RSRSSParser.h ├── RSRSSParser.m ├── RSSAXHTMLParser.h ├── RSSAXHTMLParser.m ├── RSSAXParser.h ├── RSSAXParser.m ├── RSXML.h ├── RSXMLData.h ├── RSXMLData.m ├── RSXMLError.h ├── RSXMLError.m ├── RSXMLInternal.h └── RSXMLInternal.m ├── RSXMLTests ├── Info.plist ├── RSDateParserTests.m ├── RSEntityTests.m ├── RSHTMLTests.m ├── RSOPMLTests.m ├── RSXMLTests.m └── Resources │ ├── DaringFireball.html │ ├── DaringFireball.rss │ ├── EMarley.rss │ ├── KatieFloyd.rss │ ├── OneFootTsunami.atom │ ├── Subs.opml │ ├── TimerSearch.txt │ ├── furbo.html │ ├── inessential.html │ ├── manton.rss │ ├── scriptingNews.rss │ └── sixcolors.html └── RSXMLiOS └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/README.md -------------------------------------------------------------------------------- /RSXML.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RSXML.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RSXML.xcodeproj/xcshareddata/xcbaselines/84F22C161B52DDEA000060CE.xcbaseline/8756A8AF-348E-4D58-81F2-569F71868FB1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML.xcodeproj/xcshareddata/xcbaselines/84F22C161B52DDEA000060CE.xcbaseline/8756A8AF-348E-4D58-81F2-569F71868FB1.plist -------------------------------------------------------------------------------- /RSXML.xcodeproj/xcshareddata/xcbaselines/84F22C161B52DDEA000060CE.xcbaseline/B9957C87-0F96-4C9B-864E-DF5BD201D1DC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML.xcodeproj/xcshareddata/xcbaselines/84F22C161B52DDEA000060CE.xcbaseline/B9957C87-0F96-4C9B-864E-DF5BD201D1DC.plist -------------------------------------------------------------------------------- /RSXML.xcodeproj/xcshareddata/xcbaselines/84F22C161B52DDEA000060CE.xcbaseline/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML.xcodeproj/xcshareddata/xcbaselines/84F22C161B52DDEA000060CE.xcbaseline/Info.plist -------------------------------------------------------------------------------- /RSXML/FeedParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/FeedParser.h -------------------------------------------------------------------------------- /RSXML/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/Info.plist -------------------------------------------------------------------------------- /RSXML/NSString+RSXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/NSString+RSXML.h -------------------------------------------------------------------------------- /RSXML/NSString+RSXML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/NSString+RSXML.m -------------------------------------------------------------------------------- /RSXML/RSAtomParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSAtomParser.h -------------------------------------------------------------------------------- /RSXML/RSAtomParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSAtomParser.m -------------------------------------------------------------------------------- /RSXML/RSDateParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSDateParser.h -------------------------------------------------------------------------------- /RSXML/RSDateParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSDateParser.m -------------------------------------------------------------------------------- /RSXML/RSFeedParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSFeedParser.h -------------------------------------------------------------------------------- /RSXML/RSFeedParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSFeedParser.m -------------------------------------------------------------------------------- /RSXML/RSHTMLLinkParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSHTMLLinkParser.h -------------------------------------------------------------------------------- /RSXML/RSHTMLLinkParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSHTMLLinkParser.m -------------------------------------------------------------------------------- /RSXML/RSHTMLMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSHTMLMetadata.h -------------------------------------------------------------------------------- /RSXML/RSHTMLMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSHTMLMetadata.m -------------------------------------------------------------------------------- /RSXML/RSHTMLMetadataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSHTMLMetadataParser.h -------------------------------------------------------------------------------- /RSXML/RSHTMLMetadataParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSHTMLMetadataParser.m -------------------------------------------------------------------------------- /RSXML/RSOPMLAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSOPMLAttributes.h -------------------------------------------------------------------------------- /RSXML/RSOPMLAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSOPMLAttributes.m -------------------------------------------------------------------------------- /RSXML/RSOPMLDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSOPMLDocument.h -------------------------------------------------------------------------------- /RSXML/RSOPMLDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSOPMLDocument.m -------------------------------------------------------------------------------- /RSXML/RSOPMLFeedSpecifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSOPMLFeedSpecifier.h -------------------------------------------------------------------------------- /RSXML/RSOPMLFeedSpecifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSOPMLFeedSpecifier.m -------------------------------------------------------------------------------- /RSXML/RSOPMLItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSOPMLItem.h -------------------------------------------------------------------------------- /RSXML/RSOPMLItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSOPMLItem.m -------------------------------------------------------------------------------- /RSXML/RSOPMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSOPMLParser.h -------------------------------------------------------------------------------- /RSXML/RSOPMLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSOPMLParser.m -------------------------------------------------------------------------------- /RSXML/RSParsedArticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSParsedArticle.h -------------------------------------------------------------------------------- /RSXML/RSParsedArticle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSParsedArticle.m -------------------------------------------------------------------------------- /RSXML/RSParsedFeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSParsedFeed.h -------------------------------------------------------------------------------- /RSXML/RSParsedFeed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSParsedFeed.m -------------------------------------------------------------------------------- /RSXML/RSRSSParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSRSSParser.h -------------------------------------------------------------------------------- /RSXML/RSRSSParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSRSSParser.m -------------------------------------------------------------------------------- /RSXML/RSSAXHTMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSSAXHTMLParser.h -------------------------------------------------------------------------------- /RSXML/RSSAXHTMLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSSAXHTMLParser.m -------------------------------------------------------------------------------- /RSXML/RSSAXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSSAXParser.h -------------------------------------------------------------------------------- /RSXML/RSSAXParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSSAXParser.m -------------------------------------------------------------------------------- /RSXML/RSXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSXML.h -------------------------------------------------------------------------------- /RSXML/RSXMLData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSXMLData.h -------------------------------------------------------------------------------- /RSXML/RSXMLData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSXMLData.m -------------------------------------------------------------------------------- /RSXML/RSXMLError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSXMLError.h -------------------------------------------------------------------------------- /RSXML/RSXMLError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSXMLError.m -------------------------------------------------------------------------------- /RSXML/RSXMLInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSXMLInternal.h -------------------------------------------------------------------------------- /RSXML/RSXMLInternal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXML/RSXMLInternal.m -------------------------------------------------------------------------------- /RSXMLTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Info.plist -------------------------------------------------------------------------------- /RSXMLTests/RSDateParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/RSDateParserTests.m -------------------------------------------------------------------------------- /RSXMLTests/RSEntityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/RSEntityTests.m -------------------------------------------------------------------------------- /RSXMLTests/RSHTMLTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/RSHTMLTests.m -------------------------------------------------------------------------------- /RSXMLTests/RSOPMLTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/RSOPMLTests.m -------------------------------------------------------------------------------- /RSXMLTests/RSXMLTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/RSXMLTests.m -------------------------------------------------------------------------------- /RSXMLTests/Resources/DaringFireball.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/DaringFireball.html -------------------------------------------------------------------------------- /RSXMLTests/Resources/DaringFireball.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/DaringFireball.rss -------------------------------------------------------------------------------- /RSXMLTests/Resources/EMarley.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/EMarley.rss -------------------------------------------------------------------------------- /RSXMLTests/Resources/KatieFloyd.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/KatieFloyd.rss -------------------------------------------------------------------------------- /RSXMLTests/Resources/OneFootTsunami.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/OneFootTsunami.atom -------------------------------------------------------------------------------- /RSXMLTests/Resources/Subs.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/Subs.opml -------------------------------------------------------------------------------- /RSXMLTests/Resources/TimerSearch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/TimerSearch.txt -------------------------------------------------------------------------------- /RSXMLTests/Resources/furbo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/furbo.html -------------------------------------------------------------------------------- /RSXMLTests/Resources/inessential.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/inessential.html -------------------------------------------------------------------------------- /RSXMLTests/Resources/manton.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/manton.rss -------------------------------------------------------------------------------- /RSXMLTests/Resources/scriptingNews.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/scriptingNews.rss -------------------------------------------------------------------------------- /RSXMLTests/Resources/sixcolors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLTests/Resources/sixcolors.html -------------------------------------------------------------------------------- /RSXMLiOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/RSXML/HEAD/RSXMLiOS/Info.plist --------------------------------------------------------------------------------