gitextract_niutvr_w/ ├── .gitignore ├── Artwork/ │ ├── icon.psd │ └── statusitem.psd ├── Journey/ │ ├── Controllers/ │ │ ├── PFMMainWindowController.h │ │ ├── PFMMainWindowController.m │ │ ├── PFMMomentListViewController.h │ │ ├── PFMMomentListViewController.m │ │ ├── PFMSignInWindowController.h │ │ ├── PFMSignInWindowController.m │ │ ├── PFMToolbarViewController.h │ │ ├── PFMToolbarViewController.m │ │ ├── PathAppDelegate.h │ │ └── PathAppDelegate.m │ ├── Helpers/ │ │ ├── PFMHelper.h │ │ ├── PFMHelper.m │ │ └── PFMUtility.m │ ├── Lib/ │ │ ├── NSDate+SCAdditions.h │ │ ├── NSDate+SCAdditions.m │ │ ├── NSDictionary+PFMAdditions.h │ │ ├── NSDictionary+PFMAdditions.m │ │ ├── NSMutableDictionary+PFMAdditions.h │ │ ├── NSMutableDictionary+PFMAdditions.m │ │ ├── NSWindow+PFMAdditions.h │ │ └── NSWindow+PFMAdditions.m │ ├── Models/ │ │ ├── NSApplication+SharedObjects.h │ │ ├── NSApplication+SharedObjects.m │ │ ├── PFMComment.h │ │ ├── PFMComment.m │ │ ├── PFMLocation.h │ │ ├── PFMLocation.m │ │ ├── PFMModel.h │ │ ├── PFMModel.m │ │ ├── PFMMoment.h │ │ ├── PFMMoment.m │ │ ├── PFMPhoto.h │ │ ├── PFMPhoto.m │ │ ├── PFMPlace.h │ │ ├── PFMPlace.m │ │ ├── PFMUser.h │ │ └── PFMUser.m │ ├── Resources/ │ │ ├── Credits.rtf │ │ ├── Icon.icns │ │ ├── WebView/ │ │ │ ├── css/ │ │ │ │ └── app.css │ │ │ ├── example.json │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ └── app.js │ │ │ └── vendor/ │ │ │ ├── jquery-1.7.1.js │ │ │ ├── jquery.cycle.js │ │ │ ├── jquery.timeago.js │ │ │ ├── underscore.js │ │ │ └── zepto.js │ │ └── en.lproj/ │ │ └── InfoPlist.strings │ ├── Support/ │ │ ├── Application.h │ │ ├── Journey-Info.plist │ │ ├── Journey-Prefix.pch │ │ └── main.m │ └── Views/ │ ├── MainMenu.xib │ ├── MainWindow.xib │ ├── MomentListView.xib │ ├── PFMRedLinenView.h │ ├── PFMRedLinenView.m │ ├── PFMThemedWindow.h │ ├── PFMThemedWindow.m │ ├── PFMUnclickableImageView.h │ ├── PFMUnclickableImageView.m │ ├── PFMView.h │ ├── PFMView.m │ ├── SignInWindow.xib │ └── ToolbarView.xib ├── Journey.xcodeproj/ │ └── project.pbxproj ├── JourneyTests/ │ ├── Controllers/ │ │ ├── PFMMainWindowControllerSpec.m │ │ ├── PFMMomentListViewControllerSpec.m │ │ ├── PFMSignInWindowControllerSpec.m │ │ ├── PFMToolbarViewControllerSpec.m │ │ └── PathAppDelegateSpec.m │ ├── Fixtures/ │ │ ├── moments_feed.json │ │ ├── moments_feed_newer_than.json │ │ ├── moments_feed_older_than.json │ │ └── settings.json │ ├── Models/ │ │ ├── PFMCommentSpec.m │ │ ├── PFMLocationSpec.m │ │ ├── PFMModelSpec.m │ │ ├── PFMPhotoSpec.m │ │ ├── PFMPlaceSpec.m │ │ └── PFMUserSpec.m │ └── Support/ │ ├── ASIHTTPRequest+Spec.h │ ├── ASIHTTPRequest+Spec.m │ ├── EXPMatchers+toMatch.h │ ├── EXPMatchers+toMatch.m │ ├── JourneyTests-Info.plist │ ├── TestHelper.h │ ├── TestHelper.m │ ├── WebView+Spec.h │ └── WebView+Spec.m ├── LICENSE.md ├── Podfile └── README.md