├── .gitattributes ├── .gitignore ├── .travis.yml ├── Example ├── HppleDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── HppleDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── HppleDemoTests │ ├── Info.plist │ ├── TFHppleHTMLTest.m │ ├── TFHppleStringTest.m │ ├── TFHppleXMLTest.m │ └── TestData │ ├── feed.rss │ └── index.html ├── Hpple.podspec ├── LICENSE.txt ├── Pod └── Classes │ ├── TFHpple.h │ ├── TFHpple.m │ ├── TFHppleElement.h │ ├── TFHppleElement.m │ ├── XPathQuery.h │ └── XPathQuery.m └── README.markdown /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -crlf -diff -merge 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c -------------------------------------------------------------------------------- /Example/HppleDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/HppleDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HppleDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemo/AppDelegate.h -------------------------------------------------------------------------------- /Example/HppleDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemo/AppDelegate.m -------------------------------------------------------------------------------- /Example/HppleDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/HppleDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/HppleDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/HppleDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemo/Info.plist -------------------------------------------------------------------------------- /Example/HppleDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemo/ViewController.h -------------------------------------------------------------------------------- /Example/HppleDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemo/ViewController.m -------------------------------------------------------------------------------- /Example/HppleDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemo/main.m -------------------------------------------------------------------------------- /Example/HppleDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemoTests/Info.plist -------------------------------------------------------------------------------- /Example/HppleDemoTests/TFHppleHTMLTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemoTests/TFHppleHTMLTest.m -------------------------------------------------------------------------------- /Example/HppleDemoTests/TFHppleStringTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemoTests/TFHppleStringTest.m -------------------------------------------------------------------------------- /Example/HppleDemoTests/TFHppleXMLTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemoTests/TFHppleXMLTest.m -------------------------------------------------------------------------------- /Example/HppleDemoTests/TestData/feed.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemoTests/TestData/feed.rss -------------------------------------------------------------------------------- /Example/HppleDemoTests/TestData/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Example/HppleDemoTests/TestData/index.html -------------------------------------------------------------------------------- /Hpple.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Hpple.podspec -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Pod/Classes/TFHpple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Pod/Classes/TFHpple.h -------------------------------------------------------------------------------- /Pod/Classes/TFHpple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Pod/Classes/TFHpple.m -------------------------------------------------------------------------------- /Pod/Classes/TFHppleElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Pod/Classes/TFHppleElement.h -------------------------------------------------------------------------------- /Pod/Classes/TFHppleElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Pod/Classes/TFHppleElement.m -------------------------------------------------------------------------------- /Pod/Classes/XPathQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Pod/Classes/XPathQuery.h -------------------------------------------------------------------------------- /Pod/Classes/XPathQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/Pod/Classes/XPathQuery.m -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/hpple/HEAD/README.markdown --------------------------------------------------------------------------------