├── .gitignore ├── Code ├── Abstract │ ├── NoteManagedTableViewController.h │ └── NoteManagedTableViewController.m ├── AppDelegate │ ├── AppDelegate.h │ └── AppDelegate.m ├── Categories │ ├── NSDate+RailsDateFormat.h │ ├── NSDate+RailsDateFormat.m │ ├── NSManagedObject+Sortable.h │ ├── NSManagedObject+Sortable.m │ ├── UINavigationController+BarButtonItem.h │ ├── UINavigationController+BarButtonItem.m │ ├── UITableView+IndexPathFromView.h │ ├── UITableView+IndexPathFromView.m │ ├── UIViewController+FKFormModel.h │ └── UIViewController+FKFormModel.m ├── Cells │ ├── EditableCellView.h │ └── EditableCellView.m ├── Controllers │ ├── ListsNotesSplitViewController.h │ ├── ListsNotesSplitViewController.m │ ├── ListsTableViewController.h │ ├── ListsTableViewController.m │ ├── LoginViewController.h │ ├── LoginViewController.m │ ├── NoteViewController.h │ ├── NoteViewController.m │ ├── NotesTableViewController.h │ ├── NotesTableViewController.m │ ├── SettingsViewController.h │ ├── SettingsViewController.m │ ├── SplashViewController.h │ ├── SplashViewController.m │ └── SplashViewController.xib ├── Helpers │ ├── AttributeStringTextViewManipulation.h │ ├── AttributeStringTextViewManipulation.m │ ├── ExecuteEveryTime.h │ ├── ExecuteEveryTime.m │ ├── HttpClient.h │ ├── HttpClient.m │ ├── MarkdownTextViewManipulation.h │ ├── MarkdownTextViewManipulation.m │ ├── OAuth2Client.h │ ├── OAuth2Client.m │ ├── TextViewManipulation.h │ └── TextViewManipulation.m ├── Models │ ├── List.h │ ├── List.m │ ├── Note.h │ ├── Note.m │ ├── NoteModel.h │ ├── NoteModel.m │ ├── Settings.h │ ├── Settings.m │ ├── User.h │ └── User.m ├── Others │ └── Defines.h └── Views │ ├── CreateInPlaceView.h │ ├── CreateInPlaceView.m │ ├── ToolbarInputAccessoryView.h │ ├── ToolbarInputAccessoryView.m │ ├── UndoRedoView.h │ └── UndoRedoView.m ├── KiwiUnitTest ├── KiwiUnitTest-Info.plist ├── KiwiUnitTest-Prefix.pch ├── KiwiUnitTest.h ├── KiwiUnitTest.m └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Notepad.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── cesar4.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── cesar4.xcuserdatad │ └── xcschemes │ ├── KiwiUnitTest.xcscheme │ ├── Notepad.xcscheme │ └── xcschememanagement.plist ├── Notepad.xcworkspace └── contents.xcworkspacedata ├── Notepad ├── Notepad-Info.plist ├── Notepad-Prefix.pch ├── Notepad.xcdatamodeld │ ├── .xccurrentversion │ └── Notepad.xcdatamodel │ │ └── contents ├── en.lproj │ └── InfoPlist.strings └── main.m ├── NotepadTests ├── MarkdownTextViewManipulationSpecs.m ├── NotepadTests-Info.plist ├── TextViewManipulationSpecs.m └── en.lproj │ └── InfoPlist.strings ├── Podfile ├── Podfile.lock ├── Pods ├── A2DynamicDelegate │ ├── A2BlockClosure.h │ ├── A2BlockClosure.m │ ├── A2BlockDelegate.h │ ├── A2BlockDelegate.m │ ├── A2DynamicDelegate.h │ ├── A2DynamicDelegate.m │ ├── A2DynamicDelegate.podspec │ └── README.md ├── AFNetworking │ ├── AFNetworking.podspec │ ├── AFNetworking │ │ ├── AFHTTPClient.h │ │ ├── AFHTTPClient.m │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFImageRequestOperation.h │ │ ├── AFImageRequestOperation.m │ │ ├── AFJSONRequestOperation.h │ │ ├── AFJSONRequestOperation.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── AFNetworking.h │ │ ├── AFPropertyListRequestOperation.h │ │ ├── AFPropertyListRequestOperation.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFXMLRequestOperation.h │ │ ├── AFXMLRequestOperation.m │ │ ├── UIImageView+AFNetworking.h │ │ └── UIImageView+AFNetworking.m │ ├── LICENSE │ └── README.md ├── ActionSheetPicker2 │ ├── ActionSheetPicker.h │ ├── LICENSE │ ├── Pickers │ │ ├── AbstractActionSheetPicker.h │ │ ├── AbstractActionSheetPicker.m │ │ ├── ActionSheetDatePicker.h │ │ ├── ActionSheetDatePicker.m │ │ ├── ActionSheetDistancePicker.h │ │ ├── ActionSheetDistancePicker.m │ │ ├── ActionSheetStringPicker.h │ │ ├── ActionSheetStringPicker.m │ │ ├── DistancePickerView.h │ │ └── DistancePickerView.m │ └── README.md ├── BWLongTextViewController │ ├── BWLongTextViewController │ │ ├── BWLongTextViewController.h │ │ └── BWLongTextViewController.m │ └── LICENSE ├── BlocksKit │ ├── BlocksKit.podspec │ ├── BlocksKit │ │ ├── A2BlockDelegate+BlocksKit.h │ │ ├── A2BlockDelegate+BlocksKit.m │ │ ├── BKGlobals.h │ │ ├── BKMacros.h │ │ ├── BlocksKit.h │ │ ├── MessageUI │ │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ │ ├── MFMailComposeViewController+BlocksKit.m │ │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ │ └── MFMessageComposeViewController+BlocksKit.m │ │ ├── NSArray+BlocksKit.h │ │ ├── NSArray+BlocksKit.m │ │ ├── NSCache+BlocksKit.h │ │ ├── NSCache+BlocksKit.m │ │ ├── NSDictionary+BlocksKit.h │ │ ├── NSDictionary+BlocksKit.m │ │ ├── NSIndexSet+BlocksKit.h │ │ ├── NSIndexSet+BlocksKit.m │ │ ├── NSInvocation+BlocksKit.h │ │ ├── NSInvocation+BlocksKit.m │ │ ├── NSMutableArray+BlocksKit.h │ │ ├── NSMutableArray+BlocksKit.m │ │ ├── NSMutableDictionary+BlocksKit.h │ │ ├── NSMutableDictionary+BlocksKit.m │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ ├── NSMutableIndexSet+BlocksKit.m │ │ ├── NSMutableSet+BlocksKit.h │ │ ├── NSMutableSet+BlocksKit.m │ │ ├── NSObject+AssociatedObjects.h │ │ ├── NSObject+AssociatedObjects.m │ │ ├── NSObject+BlockObservation.h │ │ ├── NSObject+BlockObservation.m │ │ ├── NSObject+BlocksKit.h │ │ ├── NSObject+BlocksKit.m │ │ ├── NSSet+BlocksKit.h │ │ ├── NSSet+BlocksKit.m │ │ ├── NSTimer+BlocksKit.h │ │ ├── NSTimer+BlocksKit.m │ │ ├── NSURLConnection+BlocksKit.h │ │ ├── NSURLConnection+BlocksKit.m │ │ └── UIKit │ │ │ ├── UIActionSheet+BlocksKit.h │ │ │ ├── UIActionSheet+BlocksKit.m │ │ │ ├── UIAlertView+BlocksKit.h │ │ │ ├── UIAlertView+BlocksKit.m │ │ │ ├── UIBarButtonItem+BlocksKit.h │ │ │ ├── UIBarButtonItem+BlocksKit.m │ │ │ ├── UIControl+BlocksKit.h │ │ │ ├── UIControl+BlocksKit.m │ │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ │ ├── UIGestureRecognizer+BlocksKit.m │ │ │ ├── UIPopoverController+BlocksKit.h │ │ │ ├── UIPopoverController+BlocksKit.m │ │ │ ├── UIView+BlocksKit.h │ │ │ ├── UIView+BlocksKit.m │ │ │ ├── UIWebView+BlocksKit.h │ │ │ └── UIWebView+BlocksKit.m │ ├── LICENSE │ └── README.md ├── BuildHeaders │ ├── A2DynamicDelegate │ │ ├── A2BlockClosure.h │ │ ├── A2BlockDelegate.h │ │ └── A2DynamicDelegate.h │ ├── AFNetworking │ │ ├── AFHTTPClient.h │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFImageRequestOperation.h │ │ ├── AFJSONRequestOperation.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworking.h │ │ ├── AFPropertyListRequestOperation.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFXMLRequestOperation.h │ │ └── UIImageView+AFNetworking.h │ ├── ActionSheetPicker2 │ │ ├── AbstractActionSheetPicker.h │ │ ├── ActionSheetDatePicker.h │ │ ├── ActionSheetDistancePicker.h │ │ ├── ActionSheetPicker.h │ │ ├── ActionSheetStringPicker.h │ │ └── DistancePickerView.h │ ├── BWLongTextViewController │ │ └── BWLongTextViewController.h │ ├── BlocksKit │ │ ├── A2BlockDelegate+BlocksKit.h │ │ ├── BKGlobals.h │ │ ├── BKMacros.h │ │ ├── BlocksKit.h │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ ├── NSArray+BlocksKit.h │ │ ├── NSCache+BlocksKit.h │ │ ├── NSDictionary+BlocksKit.h │ │ ├── NSIndexSet+BlocksKit.h │ │ ├── NSInvocation+BlocksKit.h │ │ ├── NSMutableArray+BlocksKit.h │ │ ├── NSMutableDictionary+BlocksKit.h │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ ├── NSMutableSet+BlocksKit.h │ │ ├── NSObject+AssociatedObjects.h │ │ ├── NSObject+BlockObservation.h │ │ ├── NSObject+BlocksKit.h │ │ ├── NSSet+BlocksKit.h │ │ ├── NSTimer+BlocksKit.h │ │ ├── NSURLConnection+BlocksKit.h │ │ ├── UIActionSheet+BlocksKit.h │ │ ├── UIAlertView+BlocksKit.h │ │ ├── UIBarButtonItem+BlocksKit.h │ │ ├── UIControl+BlocksKit.h │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ ├── UIPopoverController+BlocksKit.h │ │ ├── UIView+BlocksKit.h │ │ └── UIWebView+BlocksKit.h │ ├── CoreParse │ │ ├── CPEOFToken.h │ │ ├── CPErrorToken.h │ │ ├── CPGrammar.h │ │ ├── CPGrammarInternal.h │ │ ├── CPGrammarPrivate.h │ │ ├── CPGrammarSymbol.h │ │ ├── CPIdentifierRecogniser.h │ │ ├── CPIdentifierToken.h │ │ ├── CPItem.h │ │ ├── CPJSONParser.h │ │ ├── CPKeywordRecogniser.h │ │ ├── CPKeywordToken.h │ │ ├── CPLALR1Parser.h │ │ ├── CPLR1Item.h │ │ ├── CPLR1Parser.h │ │ ├── CPNumberRecogniser.h │ │ ├── CPNumberToken.h │ │ ├── CPParser.h │ │ ├── CPQuotedRecogniser.h │ │ ├── CPQuotedToken.h │ │ ├── CPRHSItem.h │ │ ├── CPRHSItemResult.h │ │ ├── CPRecoveryAction.h │ │ ├── CPRule.h │ │ ├── CPSLRParser.h │ │ ├── CPShiftReduceAction.h │ │ ├── CPShiftReduceActionTable.h │ │ ├── CPShiftReduceGotoTable.h │ │ ├── CPShiftReduceParser.h │ │ ├── CPShiftReduceParserProtectedMethods.h │ │ ├── CPShiftReduceState.h │ │ ├── CPSyntaxTree.h │ │ ├── CPToken.h │ │ ├── CPTokenRecogniser.h │ │ ├── CPTokenStream.h │ │ ├── CPTokeniser.h │ │ ├── CPWhiteSpaceRecogniser.h │ │ ├── CPWhiteSpaceToken.h │ │ ├── CoreParse.h │ │ └── NSSetFunctional.h │ ├── JSONKit │ │ └── JSONKit.h │ ├── KSReachability │ │ ├── ARCSafe_MemMgmt.h │ │ └── KSReachability.h │ ├── MagicalRecord │ │ ├── CoreData+MagicalRecord.h │ │ ├── MagicalImportFunctions.h │ │ ├── MagicalRecord+Actions.h │ │ ├── MagicalRecord+ErrorHandling.h │ │ ├── MagicalRecord+Options.h │ │ ├── MagicalRecord+Setup.h │ │ ├── MagicalRecord+ShorthandSupport.h │ │ ├── MagicalRecord+iCloud.h │ │ ├── MagicalRecord.h │ │ ├── MagicalRecordShorthand.h │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ ├── NSManagedObject+MagicalAggregation.h │ │ ├── NSManagedObject+MagicalDataImport.h │ │ ├── NSManagedObject+MagicalFinders.h │ │ ├── NSManagedObject+MagicalRecord.h │ │ ├── NSManagedObject+MagicalRequests.h │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ ├── NSNumber+MagicalDataImport.h │ │ ├── NSObject+MagicalDataImport.h │ │ ├── NSPersistentStore+MagicalRecord.h │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ └── NSString+MagicalDataImport.h │ ├── SOCKit │ │ └── SOCKit.h │ ├── SSKeychain │ │ └── SSKeychain.h │ ├── SSToolkit │ │ ├── NSArray+SSToolkitAdditions.h │ │ ├── NSBundle+SSToolkitAdditions.h │ │ ├── NSData+SSToolkitAdditions.h │ │ ├── NSDate+SSToolkitAdditions.h │ │ ├── NSDictionary+SSToolkitAdditions.h │ │ ├── NSNumber+SSToolkitAdditions.h │ │ ├── NSString+SSToolkitAdditions.h │ │ ├── NSURL+SSToolkitAdditions.h │ │ ├── SSAddressBarTextField.h │ │ ├── SSAddressBarTextFieldBackgroundView.h │ │ ├── SSAddressBarTextFieldBackgroundViewInnerView.h │ │ ├── SSAnimatedImageView.h │ │ ├── SSBadgeTableViewCell.h │ │ ├── SSBadgeView.h │ │ ├── SSBorderedView.h │ │ ├── SSButton.h │ │ ├── SSCategories.h │ │ ├── SSCollectionView.h │ │ ├── SSCollectionViewController.h │ │ ├── SSCollectionViewExtremityTableViewCell.h │ │ ├── SSCollectionViewInternal.h │ │ ├── SSCollectionViewItem.h │ │ ├── SSCollectionViewItemInternal.h │ │ ├── SSCollectionViewItemTableViewCell.h │ │ ├── SSCollectionViewTableView.h │ │ ├── SSConcurrentOperation.h │ │ ├── SSDrawingUtilities.h │ │ ├── SSGradientView.h │ │ ├── SSHUDView.h │ │ ├── SSHUDWindow.h │ │ ├── SSLabel.h │ │ ├── SSLineView.h │ │ ├── SSLoadingView.h │ │ ├── SSPickerViewController.h │ │ ├── SSPieProgressView.h │ │ ├── SSRateLimit.h │ │ ├── SSRatingPicker.h │ │ ├── SSRatingPickerScrollView.h │ │ ├── SSRatingPickerViewController.h │ │ ├── SSTextField.h │ │ ├── SSTextView.h │ │ ├── SSToolkit.h │ │ ├── SSToolkitDefines.h │ │ ├── SSWebView.h │ │ ├── UIApplication+SSToolkitAdditions.h │ │ ├── UIColor+SSToolkitAdditions.h │ │ ├── UIControl+SSToolkitAdditions.h │ │ ├── UIDevice+SSToolkitAdditions.h │ │ ├── UIImage+SSToolkitAdditions.h │ │ ├── UIScreen+SSToolkitAdditions.h │ │ ├── UIScrollView+SSToolkitAdditions.h │ │ ├── UIView+SSToolkitAdditions.h │ │ └── UIViewController+SSToolkitAdditions.h │ ├── Underscore.m │ │ ├── USArrayWrapper.h │ │ ├── USConstants.h │ │ ├── USDictionaryWrapper.h │ │ └── Underscore.h │ └── libffi │ │ ├── ffi.h │ │ ├── ffi_armv7.h │ │ ├── ffi_common.h │ │ ├── ffi_i386.h │ │ ├── fficonfig.h │ │ ├── fficonfig_armv7.h │ │ ├── fficonfig_i386.h │ │ ├── ffitarget.h │ │ ├── ffitarget_armv7.h │ │ └── ffitarget_i386.h ├── CoreParse │ ├── CoreParse │ │ ├── Built In Parsers │ │ │ ├── CPJSONParser.h │ │ │ └── CPJSONParser.m │ │ ├── CoreParse.h │ │ ├── Grammar │ │ │ ├── CPGrammar.h │ │ │ ├── CPGrammar.m │ │ │ ├── CPGrammarInternal.h │ │ │ ├── CPGrammarInternal.m │ │ │ ├── CPGrammarPrivate.h │ │ │ ├── CPGrammarPrivate.m │ │ │ ├── CPGrammarSymbol.h │ │ │ ├── CPGrammarSymbol.m │ │ │ ├── CPRHSItem.h │ │ │ ├── CPRHSItem.m │ │ │ ├── CPRHSItemResult.h │ │ │ ├── CPRHSItemResult.m │ │ │ ├── CPRule.h │ │ │ └── CPRule.m │ │ ├── NSSetFunctional.h │ │ ├── NSSetFunctional.m │ │ ├── Parsers │ │ │ ├── CPParser.h │ │ │ ├── CPParser.m │ │ │ ├── CPShiftReduceParser.h │ │ │ ├── CPShiftReduceParser.m │ │ │ ├── CPShiftReduceParsers │ │ │ │ ├── CPItem.h │ │ │ │ ├── CPItem.m │ │ │ │ ├── CPLALR1Parser.h │ │ │ │ ├── CPLALR1Parser.m │ │ │ │ ├── CPLR1Item.h │ │ │ │ ├── CPLR1Item.m │ │ │ │ ├── CPLR1Parser.h │ │ │ │ ├── CPLR1Parser.m │ │ │ │ ├── CPSLRParser.h │ │ │ │ ├── CPSLRParser.m │ │ │ │ ├── CPShiftReduceAction.h │ │ │ │ ├── CPShiftReduceAction.m │ │ │ │ ├── CPShiftReduceActionTable.h │ │ │ │ ├── CPShiftReduceActionTable.m │ │ │ │ ├── CPShiftReduceGotoTable.h │ │ │ │ ├── CPShiftReduceGotoTable.m │ │ │ │ ├── CPShiftReduceParserProtectedMethods.h │ │ │ │ ├── CPShiftReduceState.h │ │ │ │ └── CPShiftReduceState.m │ │ │ └── Error Recovery │ │ │ │ ├── CPRecoveryAction.h │ │ │ │ └── CPRecoveryAction.m │ │ ├── Syntax Tree │ │ │ ├── CPSyntaxTree.h │ │ │ └── CPSyntaxTree.m │ │ └── Tokenisation │ │ │ ├── CPTokenStream.h │ │ │ ├── CPTokenStream.m │ │ │ ├── CPTokeniser.h │ │ │ ├── CPTokeniser.m │ │ │ ├── Token Recognisers │ │ │ ├── CPIdentifierRecogniser.h │ │ │ ├── CPIdentifierRecogniser.m │ │ │ ├── CPKeywordRecogniser.h │ │ │ ├── CPKeywordRecogniser.m │ │ │ ├── CPNumberRecogniser.h │ │ │ ├── CPNumberRecogniser.m │ │ │ ├── CPQuotedRecogniser.h │ │ │ ├── CPQuotedRecogniser.m │ │ │ ├── CPTokenRecogniser.h │ │ │ ├── CPWhiteSpaceRecogniser.h │ │ │ └── CPWhiteSpaceRecogniser.m │ │ │ └── Token Types │ │ │ ├── CPEOFToken.h │ │ │ ├── CPEOFToken.m │ │ │ ├── CPErrorToken.h │ │ │ ├── CPErrorToken.m │ │ │ ├── CPIdentifierToken.h │ │ │ ├── CPIdentifierToken.m │ │ │ ├── CPKeywordToken.h │ │ │ ├── CPKeywordToken.m │ │ │ ├── CPNumberToken.h │ │ │ ├── CPNumberToken.m │ │ │ ├── CPQuotedToken.h │ │ │ ├── CPQuotedToken.m │ │ │ ├── CPToken.h │ │ │ ├── CPToken.m │ │ │ ├── CPWhiteSpaceToken.h │ │ │ └── CPWhiteSpaceToken.m │ ├── LICENSE │ └── README.md ├── Documentation │ ├── BlocksKit │ │ ├── docset-installed.txt │ │ ├── docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Categories │ │ │ │ │ ├── A2DynamicDelegate+A2BlockDelegate.html │ │ │ │ │ ├── MFMailComposeViewController+BlocksKit.html │ │ │ │ │ ├── MFMessageComposeViewController+BlocksKit.html │ │ │ │ │ ├── NSArray+BlocksKit.html │ │ │ │ │ ├── NSCache+BlocksKit.html │ │ │ │ │ ├── NSDictionary+BlocksKit.html │ │ │ │ │ ├── NSIndexSet+BlocksKit.html │ │ │ │ │ ├── NSInvocation+BlocksKit.html │ │ │ │ │ ├── NSMutableArray+BlocksKit.html │ │ │ │ │ ├── NSMutableDictionary+BlocksKit.html │ │ │ │ │ ├── NSMutableIndexSet+BlocksKit.html │ │ │ │ │ ├── NSMutableSet+BlocksKit.html │ │ │ │ │ ├── NSObject+A2BlockDelegateBlocksKit.html │ │ │ │ │ ├── NSObject+AssociatedObjects.html │ │ │ │ │ ├── NSObject+BlockObservation.html │ │ │ │ │ ├── NSObject+BlocksKit.html │ │ │ │ │ ├── NSSet+BlocksKit.html │ │ │ │ │ ├── NSTimer+BlocksKit.html │ │ │ │ │ ├── NSURLConnection+BlocksKit.html │ │ │ │ │ ├── UIActionSheet+BlocksKit.html │ │ │ │ │ ├── UIAlertView+BlocksKit.html │ │ │ │ │ ├── UIBarButtonItem+BlocksKit.html │ │ │ │ │ ├── UIControl+BlocksKit.html │ │ │ │ │ ├── UIGestureRecognizer+BlocksKit.html │ │ │ │ │ ├── UIPopoverController+BlocksKit.html │ │ │ │ │ ├── UIView+BlocksKit.html │ │ │ │ │ └── UIWebView+BlocksKit.html │ │ │ │ ├── Classes │ │ │ │ │ └── FORCELOAD_.html │ │ │ │ ├── css │ │ │ │ │ ├── styles.css │ │ │ │ │ └── stylesPrint.css │ │ │ │ ├── hierarchy.html │ │ │ │ ├── img │ │ │ │ │ ├── button_bar_background.png │ │ │ │ │ ├── disclosure.png │ │ │ │ │ ├── disclosure_open.png │ │ │ │ │ ├── library_background.png │ │ │ │ │ └── title_background.png │ │ │ │ └── index.html │ │ │ │ ├── Nodes.xml │ │ │ │ ├── Tokens1.xml │ │ │ │ ├── Tokens10.xml │ │ │ │ ├── Tokens11.xml │ │ │ │ ├── Tokens12.xml │ │ │ │ ├── Tokens13.xml │ │ │ │ ├── Tokens14.xml │ │ │ │ ├── Tokens15.xml │ │ │ │ ├── Tokens16.xml │ │ │ │ ├── Tokens17.xml │ │ │ │ ├── Tokens18.xml │ │ │ │ ├── Tokens19.xml │ │ │ │ ├── Tokens2.xml │ │ │ │ ├── Tokens20.xml │ │ │ │ ├── Tokens21.xml │ │ │ │ ├── Tokens22.xml │ │ │ │ ├── Tokens23.xml │ │ │ │ ├── Tokens24.xml │ │ │ │ ├── Tokens25.xml │ │ │ │ ├── Tokens26.xml │ │ │ │ ├── Tokens27.xml │ │ │ │ ├── Tokens28.xml │ │ │ │ ├── Tokens3.xml │ │ │ │ ├── Tokens4.xml │ │ │ │ ├── Tokens5.xml │ │ │ │ ├── Tokens6.xml │ │ │ │ ├── Tokens7.xml │ │ │ │ ├── Tokens8.xml │ │ │ │ ├── Tokens9.xml │ │ │ │ ├── docSet.dsidx │ │ │ │ ├── docSet.mom │ │ │ │ ├── docSet.skidx │ │ │ │ └── docSet.toc │ │ └── html │ │ │ ├── Categories │ │ │ ├── A2DynamicDelegate+A2BlockDelegate.html │ │ │ ├── MFMailComposeViewController+BlocksKit.html │ │ │ ├── MFMessageComposeViewController+BlocksKit.html │ │ │ ├── NSArray+BlocksKit.html │ │ │ ├── NSCache+BlocksKit.html │ │ │ ├── NSDictionary+BlocksKit.html │ │ │ ├── NSIndexSet+BlocksKit.html │ │ │ ├── NSInvocation+BlocksKit.html │ │ │ ├── NSMutableArray+BlocksKit.html │ │ │ ├── NSMutableDictionary+BlocksKit.html │ │ │ ├── NSMutableIndexSet+BlocksKit.html │ │ │ ├── NSMutableSet+BlocksKit.html │ │ │ ├── NSObject+A2BlockDelegateBlocksKit.html │ │ │ ├── NSObject+AssociatedObjects.html │ │ │ ├── NSObject+BlockObservation.html │ │ │ ├── NSObject+BlocksKit.html │ │ │ ├── NSSet+BlocksKit.html │ │ │ ├── NSTimer+BlocksKit.html │ │ │ ├── NSURLConnection+BlocksKit.html │ │ │ ├── UIActionSheet+BlocksKit.html │ │ │ ├── UIAlertView+BlocksKit.html │ │ │ ├── UIBarButtonItem+BlocksKit.html │ │ │ ├── UIControl+BlocksKit.html │ │ │ ├── UIGestureRecognizer+BlocksKit.html │ │ │ ├── UIPopoverController+BlocksKit.html │ │ │ ├── UIView+BlocksKit.html │ │ │ └── UIWebView+BlocksKit.html │ │ │ ├── Classes │ │ │ └── FORCELOAD_.html │ │ │ ├── css │ │ │ ├── styles.css │ │ │ └── stylesPrint.css │ │ │ ├── hierarchy.html │ │ │ ├── img │ │ │ ├── button_bar_background.png │ │ │ ├── disclosure.png │ │ │ ├── disclosure_open.png │ │ │ ├── library_background.png │ │ │ └── title_background.png │ │ │ └── index.html │ └── Kiwi │ │ ├── docset-installed.txt │ │ ├── docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Categories │ │ │ │ ├── NSArray+KiwiHamcrestAdditions.html │ │ │ │ ├── NSInvocation+KWExampleGroup.html │ │ │ │ ├── NSInvocation+KiwiAdditions.html │ │ │ │ ├── NSMethodSignature+KiwiAdditions.html │ │ │ │ ├── NSNumber+KiwiAdditions.html │ │ │ │ ├── NSObject+KWUserDefinedMatchersDefinitions.html │ │ │ │ ├── NSObject+KiwiHamcrestAdditions.html │ │ │ │ ├── NSObject+KiwiMockAdditions.html │ │ │ │ ├── NSObject+KiwiStubAdditions.html │ │ │ │ ├── NSObject+KiwiVerifierAdditions.html │ │ │ │ ├── NSOrderedSet+KiwiHamcrestAdditions.html │ │ │ │ ├── NSSet+KiwiHamcrestAdditions.html │ │ │ │ └── NSValue+KiwiAdditions.html │ │ │ ├── Classes │ │ │ │ ├── KWAfterAllNode.html │ │ │ │ ├── KWAfterEachNode.html │ │ │ │ ├── KWAny.html │ │ │ │ ├── KWAsyncMatcherProbe.html │ │ │ │ ├── KWAsyncVerifier.html │ │ │ │ ├── KWBeBetweenMatcher.html │ │ │ │ ├── KWBeEmptyMatcher.html │ │ │ │ ├── KWBeIdenticalToMatcher.html │ │ │ │ ├── KWBeKindOfClassMatcher.html │ │ │ │ ├── KWBeMemberOfClassMatcher.html │ │ │ │ ├── KWBeNilMatcher.html │ │ │ │ ├── KWBeNonNilMatcher.html │ │ │ │ ├── KWBeSubclassOfClassMatcher.html │ │ │ │ ├── KWBeTrueMatcher.html │ │ │ │ ├── KWBeWithinMatcher.html │ │ │ │ ├── KWBeZeroMatcher.html │ │ │ │ ├── KWBeforeAllNode.html │ │ │ │ ├── KWBeforeEachNode.html │ │ │ │ ├── KWBlock.html │ │ │ │ ├── KWBlockNode.html │ │ │ │ ├── KWBlockRaiseMatcher.html │ │ │ │ ├── KWCallSite.html │ │ │ │ ├── KWCaptureSpy.html │ │ │ │ ├── KWConformToProtocolMatcher.html │ │ │ │ ├── KWContainMatcher.html │ │ │ │ ├── KWContextNode.html │ │ │ │ ├── KWDeviceInfo.html │ │ │ │ ├── KWEqualMatcher.html │ │ │ │ ├── KWExample.html │ │ │ │ ├── KWExampleGroupBuilder.html │ │ │ │ ├── KWExampleSuite.html │ │ │ │ ├── KWExistVerifier.html │ │ │ │ ├── KWFailure.html │ │ │ │ ├── KWFormatter.html │ │ │ │ ├── KWFutureObject.html │ │ │ │ ├── KWHamcrestMatcher.html │ │ │ │ ├── KWHaveMatcher.html │ │ │ │ ├── KWHaveValueMatcher.html │ │ │ │ ├── KWInequalityMatcher.html │ │ │ │ ├── KWInvocationCapturer.html │ │ │ │ ├── KWItNode.html │ │ │ │ ├── KWMatchVerifier.html │ │ │ │ ├── KWMatcher.html │ │ │ │ ├── KWMatcherFactory.html │ │ │ │ ├── KWMatchers.html │ │ │ │ ├── KWMessagePattern.html │ │ │ │ ├── KWMessageTracker.html │ │ │ │ ├── KWMock.html │ │ │ │ ├── KWNull.html │ │ │ │ ├── KWPendingNode.html │ │ │ │ ├── KWProbePoller.html │ │ │ │ ├── KWRaiseMatcher.html │ │ │ │ ├── KWReceiveMatcher.html │ │ │ │ ├── KWRegisterMatchersNode.html │ │ │ │ ├── KWRespondToSelectorMatcher.html │ │ │ │ ├── KWSpec.html │ │ │ │ ├── KWStringContainsMatcher.html │ │ │ │ ├── KWStringPrefixMatcher.html │ │ │ │ ├── KWStub.html │ │ │ │ ├── KWTestCase.html │ │ │ │ ├── KWUserDefinedMatcher.html │ │ │ │ ├── KWUserDefinedMatcherBuilder.html │ │ │ │ ├── KWValue.html │ │ │ │ └── name.html │ │ │ ├── Protocols │ │ │ │ ├── HCMatcher.html │ │ │ │ ├── KWContainmentCountMatcherTerminals.html │ │ │ │ ├── KWExampleDelegate.html │ │ │ │ ├── KWExampleNode.html │ │ │ │ ├── KWExampleNodeVisitor.html │ │ │ │ ├── KWInvocationCapturerDelegate.html │ │ │ │ ├── KWMatching.html │ │ │ │ ├── KWMessageSpying.html │ │ │ │ ├── KWProbe.html │ │ │ │ ├── KWReporting.html │ │ │ │ └── KWVerifying.html │ │ │ ├── css │ │ │ │ ├── styles.css │ │ │ │ └── stylesPrint.css │ │ │ ├── hierarchy.html │ │ │ ├── img │ │ │ │ ├── button_bar_background.png │ │ │ │ ├── disclosure.png │ │ │ │ ├── disclosure_open.png │ │ │ │ ├── library_background.png │ │ │ │ └── title_background.png │ │ │ └── index.html │ │ │ ├── Nodes.xml │ │ │ ├── Tokens1.xml │ │ │ ├── Tokens10.xml │ │ │ ├── Tokens11.xml │ │ │ ├── Tokens12.xml │ │ │ ├── Tokens13.xml │ │ │ ├── Tokens14.xml │ │ │ ├── Tokens15.xml │ │ │ ├── Tokens16.xml │ │ │ ├── Tokens17.xml │ │ │ ├── Tokens18.xml │ │ │ ├── Tokens19.xml │ │ │ ├── Tokens2.xml │ │ │ ├── Tokens20.xml │ │ │ ├── Tokens21.xml │ │ │ ├── Tokens22.xml │ │ │ ├── Tokens23.xml │ │ │ ├── Tokens24.xml │ │ │ ├── Tokens25.xml │ │ │ ├── Tokens26.xml │ │ │ ├── Tokens27.xml │ │ │ ├── Tokens28.xml │ │ │ ├── Tokens29.xml │ │ │ ├── Tokens3.xml │ │ │ ├── Tokens30.xml │ │ │ ├── Tokens31.xml │ │ │ ├── Tokens32.xml │ │ │ ├── Tokens33.xml │ │ │ ├── Tokens34.xml │ │ │ ├── Tokens35.xml │ │ │ ├── Tokens36.xml │ │ │ ├── Tokens37.xml │ │ │ ├── Tokens38.xml │ │ │ ├── Tokens39.xml │ │ │ ├── Tokens4.xml │ │ │ ├── Tokens40.xml │ │ │ ├── Tokens41.xml │ │ │ ├── Tokens42.xml │ │ │ ├── Tokens43.xml │ │ │ ├── Tokens44.xml │ │ │ ├── Tokens45.xml │ │ │ ├── Tokens46.xml │ │ │ ├── Tokens47.xml │ │ │ ├── Tokens48.xml │ │ │ ├── Tokens49.xml │ │ │ ├── Tokens5.xml │ │ │ ├── Tokens50.xml │ │ │ ├── Tokens51.xml │ │ │ ├── Tokens52.xml │ │ │ ├── Tokens53.xml │ │ │ ├── Tokens54.xml │ │ │ ├── Tokens55.xml │ │ │ ├── Tokens56.xml │ │ │ ├── Tokens57.xml │ │ │ ├── Tokens58.xml │ │ │ ├── Tokens59.xml │ │ │ ├── Tokens6.xml │ │ │ ├── Tokens60.xml │ │ │ ├── Tokens61.xml │ │ │ ├── Tokens62.xml │ │ │ ├── Tokens63.xml │ │ │ ├── Tokens64.xml │ │ │ ├── Tokens65.xml │ │ │ ├── Tokens66.xml │ │ │ ├── Tokens67.xml │ │ │ ├── Tokens68.xml │ │ │ ├── Tokens69.xml │ │ │ ├── Tokens7.xml │ │ │ ├── Tokens70.xml │ │ │ ├── Tokens71.xml │ │ │ ├── Tokens72.xml │ │ │ ├── Tokens73.xml │ │ │ ├── Tokens74.xml │ │ │ ├── Tokens75.xml │ │ │ ├── Tokens76.xml │ │ │ ├── Tokens77.xml │ │ │ ├── Tokens78.xml │ │ │ ├── Tokens79.xml │ │ │ ├── Tokens8.xml │ │ │ ├── Tokens80.xml │ │ │ ├── Tokens81.xml │ │ │ ├── Tokens82.xml │ │ │ ├── Tokens83.xml │ │ │ ├── Tokens84.xml │ │ │ ├── Tokens85.xml │ │ │ ├── Tokens86.xml │ │ │ ├── Tokens87.xml │ │ │ ├── Tokens88.xml │ │ │ ├── Tokens9.xml │ │ │ ├── docSet.dsidx │ │ │ ├── docSet.mom │ │ │ ├── docSet.skidx │ │ │ └── docSet.toc │ │ └── html │ │ ├── Categories │ │ ├── NSArray+KiwiHamcrestAdditions.html │ │ ├── NSInvocation+KWExampleGroup.html │ │ ├── NSInvocation+KiwiAdditions.html │ │ ├── NSMethodSignature+KiwiAdditions.html │ │ ├── NSNumber+KiwiAdditions.html │ │ ├── NSObject+KWUserDefinedMatchersDefinitions.html │ │ ├── NSObject+KiwiHamcrestAdditions.html │ │ ├── NSObject+KiwiMockAdditions.html │ │ ├── NSObject+KiwiStubAdditions.html │ │ ├── NSObject+KiwiVerifierAdditions.html │ │ ├── NSOrderedSet+KiwiHamcrestAdditions.html │ │ ├── NSSet+KiwiHamcrestAdditions.html │ │ └── NSValue+KiwiAdditions.html │ │ ├── Classes │ │ ├── KWAfterAllNode.html │ │ ├── KWAfterEachNode.html │ │ ├── KWAny.html │ │ ├── KWAsyncMatcherProbe.html │ │ ├── KWAsyncVerifier.html │ │ ├── KWBeBetweenMatcher.html │ │ ├── KWBeEmptyMatcher.html │ │ ├── KWBeIdenticalToMatcher.html │ │ ├── KWBeKindOfClassMatcher.html │ │ ├── KWBeMemberOfClassMatcher.html │ │ ├── KWBeNilMatcher.html │ │ ├── KWBeNonNilMatcher.html │ │ ├── KWBeSubclassOfClassMatcher.html │ │ ├── KWBeTrueMatcher.html │ │ ├── KWBeWithinMatcher.html │ │ ├── KWBeZeroMatcher.html │ │ ├── KWBeforeAllNode.html │ │ ├── KWBeforeEachNode.html │ │ ├── KWBlock.html │ │ ├── KWBlockNode.html │ │ ├── KWBlockRaiseMatcher.html │ │ ├── KWCallSite.html │ │ ├── KWCaptureSpy.html │ │ ├── KWConformToProtocolMatcher.html │ │ ├── KWContainMatcher.html │ │ ├── KWContextNode.html │ │ ├── KWDeviceInfo.html │ │ ├── KWEqualMatcher.html │ │ ├── KWExample.html │ │ ├── KWExampleGroupBuilder.html │ │ ├── KWExampleSuite.html │ │ ├── KWExistVerifier.html │ │ ├── KWFailure.html │ │ ├── KWFormatter.html │ │ ├── KWFutureObject.html │ │ ├── KWHamcrestMatcher.html │ │ ├── KWHaveMatcher.html │ │ ├── KWHaveValueMatcher.html │ │ ├── KWInequalityMatcher.html │ │ ├── KWInvocationCapturer.html │ │ ├── KWItNode.html │ │ ├── KWMatchVerifier.html │ │ ├── KWMatcher.html │ │ ├── KWMatcherFactory.html │ │ ├── KWMatchers.html │ │ ├── KWMessagePattern.html │ │ ├── KWMessageTracker.html │ │ ├── KWMock.html │ │ ├── KWNull.html │ │ ├── KWPendingNode.html │ │ ├── KWProbePoller.html │ │ ├── KWRaiseMatcher.html │ │ ├── KWReceiveMatcher.html │ │ ├── KWRegisterMatchersNode.html │ │ ├── KWRespondToSelectorMatcher.html │ │ ├── KWSpec.html │ │ ├── KWStringContainsMatcher.html │ │ ├── KWStringPrefixMatcher.html │ │ ├── KWStub.html │ │ ├── KWTestCase.html │ │ ├── KWUserDefinedMatcher.html │ │ ├── KWUserDefinedMatcherBuilder.html │ │ ├── KWValue.html │ │ └── name.html │ │ ├── Protocols │ │ ├── HCMatcher.html │ │ ├── KWContainmentCountMatcherTerminals.html │ │ ├── KWExampleDelegate.html │ │ ├── KWExampleNode.html │ │ ├── KWExampleNodeVisitor.html │ │ ├── KWInvocationCapturerDelegate.html │ │ ├── KWMatching.html │ │ ├── KWMessageSpying.html │ │ ├── KWProbe.html │ │ ├── KWReporting.html │ │ └── KWVerifying.html │ │ ├── css │ │ ├── styles.css │ │ └── stylesPrint.css │ │ ├── hierarchy.html │ │ ├── img │ │ ├── button_bar_background.png │ │ ├── disclosure.png │ │ ├── disclosure_open.png │ │ ├── library_background.png │ │ └── title_background.png │ │ └── index.html ├── Headers │ ├── A2DynamicDelegate │ │ ├── A2BlockClosure.h │ │ ├── A2BlockDelegate.h │ │ └── A2DynamicDelegate.h │ ├── AFNetworking │ │ ├── AFHTTPClient.h │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFImageRequestOperation.h │ │ ├── AFJSONRequestOperation.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworking.h │ │ ├── AFPropertyListRequestOperation.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFXMLRequestOperation.h │ │ └── UIImageView+AFNetworking.h │ ├── ActionSheetPicker2 │ │ ├── AbstractActionSheetPicker.h │ │ ├── ActionSheetDatePicker.h │ │ ├── ActionSheetDistancePicker.h │ │ ├── ActionSheetPicker.h │ │ ├── ActionSheetStringPicker.h │ │ └── DistancePickerView.h │ ├── BWLongTextViewController │ │ └── BWLongTextViewController.h │ ├── BlocksKit │ │ ├── A2BlockDelegate+BlocksKit.h │ │ ├── BKGlobals.h │ │ ├── BKMacros.h │ │ ├── BlocksKit.h │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ ├── NSArray+BlocksKit.h │ │ ├── NSCache+BlocksKit.h │ │ ├── NSDictionary+BlocksKit.h │ │ ├── NSIndexSet+BlocksKit.h │ │ ├── NSInvocation+BlocksKit.h │ │ ├── NSMutableArray+BlocksKit.h │ │ ├── NSMutableDictionary+BlocksKit.h │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ ├── NSMutableSet+BlocksKit.h │ │ ├── NSObject+AssociatedObjects.h │ │ ├── NSObject+BlockObservation.h │ │ ├── NSObject+BlocksKit.h │ │ ├── NSSet+BlocksKit.h │ │ ├── NSTimer+BlocksKit.h │ │ ├── NSURLConnection+BlocksKit.h │ │ ├── UIActionSheet+BlocksKit.h │ │ ├── UIAlertView+BlocksKit.h │ │ ├── UIBarButtonItem+BlocksKit.h │ │ ├── UIControl+BlocksKit.h │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ ├── UIPopoverController+BlocksKit.h │ │ ├── UIView+BlocksKit.h │ │ └── UIWebView+BlocksKit.h │ ├── CoreParse │ │ ├── CPEOFToken.h │ │ ├── CPErrorToken.h │ │ ├── CPGrammar.h │ │ ├── CPGrammarInternal.h │ │ ├── CPGrammarPrivate.h │ │ ├── CPGrammarSymbol.h │ │ ├── CPIdentifierRecogniser.h │ │ ├── CPIdentifierToken.h │ │ ├── CPItem.h │ │ ├── CPJSONParser.h │ │ ├── CPKeywordRecogniser.h │ │ ├── CPKeywordToken.h │ │ ├── CPLALR1Parser.h │ │ ├── CPLR1Item.h │ │ ├── CPLR1Parser.h │ │ ├── CPNumberRecogniser.h │ │ ├── CPNumberToken.h │ │ ├── CPParser.h │ │ ├── CPQuotedRecogniser.h │ │ ├── CPQuotedToken.h │ │ ├── CPRHSItem.h │ │ ├── CPRHSItemResult.h │ │ ├── CPRecoveryAction.h │ │ ├── CPRule.h │ │ ├── CPSLRParser.h │ │ ├── CPShiftReduceAction.h │ │ ├── CPShiftReduceActionTable.h │ │ ├── CPShiftReduceGotoTable.h │ │ ├── CPShiftReduceParser.h │ │ ├── CPShiftReduceParserProtectedMethods.h │ │ ├── CPShiftReduceState.h │ │ ├── CPSyntaxTree.h │ │ ├── CPToken.h │ │ ├── CPTokenRecogniser.h │ │ ├── CPTokenStream.h │ │ ├── CPTokeniser.h │ │ ├── CPWhiteSpaceRecogniser.h │ │ ├── CPWhiteSpaceToken.h │ │ ├── CoreParse.h │ │ └── NSSetFunctional.h │ ├── JSONKit │ │ └── JSONKit.h │ ├── KSReachability │ │ ├── ARCSafe_MemMgmt.h │ │ └── KSReachability.h │ ├── MagicalRecord │ │ ├── CoreData+MagicalRecord.h │ │ ├── MagicalImportFunctions.h │ │ ├── MagicalRecord+Actions.h │ │ ├── MagicalRecord+ErrorHandling.h │ │ ├── MagicalRecord+Options.h │ │ ├── MagicalRecord+Setup.h │ │ ├── MagicalRecord+ShorthandSupport.h │ │ ├── MagicalRecord+iCloud.h │ │ ├── MagicalRecord.h │ │ ├── MagicalRecordShorthand.h │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ ├── NSManagedObject+MagicalAggregation.h │ │ ├── NSManagedObject+MagicalDataImport.h │ │ ├── NSManagedObject+MagicalFinders.h │ │ ├── NSManagedObject+MagicalRecord.h │ │ ├── NSManagedObject+MagicalRequests.h │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ ├── NSNumber+MagicalDataImport.h │ │ ├── NSObject+MagicalDataImport.h │ │ ├── NSPersistentStore+MagicalRecord.h │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ └── NSString+MagicalDataImport.h │ ├── SOCKit │ │ └── SOCKit.h │ ├── SSKeychain │ │ └── SSKeychain.h │ ├── SSToolkit │ │ ├── NSArray+SSToolkitAdditions.h │ │ ├── NSBundle+SSToolkitAdditions.h │ │ ├── NSData+SSToolkitAdditions.h │ │ ├── NSDate+SSToolkitAdditions.h │ │ ├── NSDictionary+SSToolkitAdditions.h │ │ ├── NSNumber+SSToolkitAdditions.h │ │ ├── NSString+SSToolkitAdditions.h │ │ ├── NSURL+SSToolkitAdditions.h │ │ ├── SSAddressBarTextField.h │ │ ├── SSAddressBarTextFieldBackgroundView.h │ │ ├── SSAddressBarTextFieldBackgroundViewInnerView.h │ │ ├── SSAnimatedImageView.h │ │ ├── SSBadgeTableViewCell.h │ │ ├── SSBadgeView.h │ │ ├── SSBorderedView.h │ │ ├── SSButton.h │ │ ├── SSCategories.h │ │ ├── SSCollectionView.h │ │ ├── SSCollectionViewController.h │ │ ├── SSCollectionViewExtremityTableViewCell.h │ │ ├── SSCollectionViewInternal.h │ │ ├── SSCollectionViewItem.h │ │ ├── SSCollectionViewItemInternal.h │ │ ├── SSCollectionViewItemTableViewCell.h │ │ ├── SSCollectionViewTableView.h │ │ ├── SSConcurrentOperation.h │ │ ├── SSDrawingUtilities.h │ │ ├── SSGradientView.h │ │ ├── SSHUDView.h │ │ ├── SSHUDWindow.h │ │ ├── SSLabel.h │ │ ├── SSLineView.h │ │ ├── SSLoadingView.h │ │ ├── SSPickerViewController.h │ │ ├── SSPieProgressView.h │ │ ├── SSRateLimit.h │ │ ├── SSRatingPicker.h │ │ ├── SSRatingPickerScrollView.h │ │ ├── SSRatingPickerViewController.h │ │ ├── SSTextField.h │ │ ├── SSTextView.h │ │ ├── SSToolkit.h │ │ ├── SSToolkitDefines.h │ │ ├── SSWebView.h │ │ ├── UIApplication+SSToolkitAdditions.h │ │ ├── UIColor+SSToolkitAdditions.h │ │ ├── UIControl+SSToolkitAdditions.h │ │ ├── UIDevice+SSToolkitAdditions.h │ │ ├── UIImage+SSToolkitAdditions.h │ │ ├── UIScreen+SSToolkitAdditions.h │ │ ├── UIScrollView+SSToolkitAdditions.h │ │ ├── UIView+SSToolkitAdditions.h │ │ └── UIViewController+SSToolkitAdditions.h │ ├── Underscore.m │ │ ├── USArrayWrapper.h │ │ ├── USConstants.h │ │ ├── USDictionaryWrapper.h │ │ └── Underscore.h │ └── libffi │ │ ├── ffi.h │ │ ├── ffi_armv7.h │ │ ├── ffi_common.h │ │ ├── ffi_i386.h │ │ ├── fficonfig.h │ │ ├── fficonfig_armv7.h │ │ ├── fficonfig_i386.h │ │ ├── ffitarget.h │ │ ├── ffitarget_armv7.h │ │ └── ffitarget_i386.h ├── JSONKit │ ├── JSONKit.h │ ├── JSONKit.m │ └── README.md ├── KSReachability │ ├── ARCSafe_MemMgmt.h │ ├── KSReachability.h │ ├── KSReachability.m │ └── README.md ├── Local Podspecs │ ├── BWObjectRouter.podspec │ ├── BWObjectSerializer.podspec │ ├── BWSelectViewController.podspec │ └── FormKit.m.podspec ├── MagicalRecord │ ├── LICENSE │ ├── MagicalRecord.podspec │ ├── MagicalRecord │ │ ├── Categories │ │ │ ├── DataImport │ │ │ │ ├── MagicalImportFunctions.h │ │ │ │ ├── MagicalImportFunctions.m │ │ │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ │ │ ├── NSAttributeDescription+MagicalDataImport.m │ │ │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ │ │ ├── NSEntityDescription+MagicalDataImport.m │ │ │ │ ├── NSNumber+MagicalDataImport.h │ │ │ │ ├── NSNumber+MagicalDataImport.m │ │ │ │ ├── NSObject+MagicalDataImport.h │ │ │ │ ├── NSObject+MagicalDataImport.m │ │ │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ │ │ ├── NSRelationshipDescription+MagicalDataImport.m │ │ │ │ ├── NSString+MagicalDataImport.h │ │ │ │ └── NSString+MagicalDataImport.m │ │ │ ├── NSManagedObject │ │ │ │ ├── NSManagedObject+MagicalAggregation.h │ │ │ │ ├── NSManagedObject+MagicalAggregation.m │ │ │ │ ├── NSManagedObject+MagicalDataImport.h │ │ │ │ ├── NSManagedObject+MagicalDataImport.m │ │ │ │ ├── NSManagedObject+MagicalFinders.h │ │ │ │ ├── NSManagedObject+MagicalFinders.m │ │ │ │ ├── NSManagedObject+MagicalRecord.h │ │ │ │ ├── NSManagedObject+MagicalRecord.m │ │ │ │ ├── NSManagedObject+MagicalRequests.h │ │ │ │ └── NSManagedObject+MagicalRequests.m │ │ │ ├── NSManagedObjectContext │ │ │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ │ │ ├── NSManagedObjectContext+MagicalObserving.m │ │ │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ │ │ ├── NSManagedObjectContext+MagicalRecord.m │ │ │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ │ │ ├── NSManagedObjectContext+MagicalSaves.m │ │ │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ │ │ └── NSManagedObjectContext+MagicalThreading.m │ │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ │ ├── NSManagedObjectModel+MagicalRecord.m │ │ │ ├── NSPersistentStore+MagicalRecord.h │ │ │ ├── NSPersistentStore+MagicalRecord.m │ │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ │ └── NSPersistentStoreCoordinator+MagicalRecord.m │ │ ├── Core │ │ │ ├── MagicalRecord+Actions.h │ │ │ ├── MagicalRecord+Actions.m │ │ │ ├── MagicalRecord+ErrorHandling.h │ │ │ ├── MagicalRecord+ErrorHandling.m │ │ │ ├── MagicalRecord+Options.h │ │ │ ├── MagicalRecord+Options.m │ │ │ ├── MagicalRecord+Setup.h │ │ │ ├── MagicalRecord+Setup.m │ │ │ ├── MagicalRecord+ShorthandSupport.h │ │ │ ├── MagicalRecord+ShorthandSupport.m │ │ │ ├── MagicalRecord+iCloud.h │ │ │ ├── MagicalRecord+iCloud.m │ │ │ ├── MagicalRecord.h │ │ │ ├── MagicalRecord.m │ │ │ └── MagicalRecordShorthand.h │ │ └── CoreData+MagicalRecord.h │ └── README.md ├── Nimbus │ ├── LICENSE │ ├── NOTICE │ ├── README.mdown │ └── src │ │ ├── core │ │ └── src │ │ │ ├── NIBlocks.h │ │ │ ├── NICommonMetrics.h │ │ │ ├── NICommonMetrics.m │ │ │ ├── NIDataStructures.h │ │ │ ├── NIDataStructures.m │ │ │ ├── NIDebuggingTools.h │ │ │ ├── NIDebuggingTools.m │ │ │ ├── NIDeviceOrientation.h │ │ │ ├── NIDeviceOrientation.m │ │ │ ├── NIError.h │ │ │ ├── NIError.m │ │ │ ├── NIFoundationMethods.h │ │ │ ├── NIFoundationMethods.m │ │ │ ├── NIInMemoryCache.h │ │ │ ├── NIInMemoryCache.m │ │ │ ├── NINavigationAppearance.h │ │ │ ├── NINavigationAppearance.m │ │ │ ├── NINetworkActivity.h │ │ │ ├── NINetworkActivity.m │ │ │ ├── NINonEmptyCollectionTesting.h │ │ │ ├── NINonEmptyCollectionTesting.m │ │ │ ├── NINonRetainingCollections.h │ │ │ ├── NINonRetainingCollections.m │ │ │ ├── NIOperations+Subclassing.h │ │ │ ├── NIOperations.h │ │ │ ├── NIOperations.m │ │ │ ├── NIPaths.h │ │ │ ├── NIPaths.m │ │ │ ├── NIPreprocessorMacros.h │ │ │ ├── NIRuntimeClassModifications.h │ │ │ ├── NIRuntimeClassModifications.m │ │ │ ├── NISDKAvailability.h │ │ │ ├── NISDKAvailability.m │ │ │ ├── NIState.h │ │ │ ├── NIState.m │ │ │ ├── NIViewRecycler.h │ │ │ ├── NIViewRecycler.m │ │ │ ├── NSData+NimbusCore.h │ │ │ ├── NSData+NimbusCore.m │ │ │ ├── NSString+NimbusCore.h │ │ │ ├── NSString+NimbusCore.m │ │ │ ├── NimbusCore+Additions.h │ │ │ ├── NimbusCore+Namespace.h │ │ │ ├── NimbusCore.h │ │ │ ├── UIView+NimbusCore.h │ │ │ └── UIView+NimbusCore.m │ │ ├── interapp │ │ └── src │ │ │ ├── NIInterapp.h │ │ │ ├── NIInterapp.m │ │ │ ├── NimbusInterapp+Namespace.h │ │ │ └── NimbusInterapp.h │ │ └── webcontroller │ │ ├── resources │ │ └── NimbusWebController.bundle │ │ │ └── gfx │ │ │ ├── backIcon.png │ │ │ ├── backIcon@2x.png │ │ │ ├── forwardIcon.png │ │ │ └── forwardIcon@2x.png │ │ └── src │ │ ├── NIWebController.h │ │ ├── NIWebController.m │ │ ├── NimbusWebController+Namespace.h │ │ └── NimbusWebController.h ├── ParseKit │ ├── License.txt │ ├── README.textile │ ├── include │ │ └── ParseKit │ │ │ ├── PKAlternation.h │ │ │ ├── PKAny.h │ │ │ ├── PKAssembly.h │ │ │ ├── PKCaseInsensitiveLiteral.h │ │ │ ├── PKChar.h │ │ │ ├── PKCharacterAssembly.h │ │ │ ├── PKCollectionParser.h │ │ │ ├── PKComment.h │ │ │ ├── PKCommentState.h │ │ │ ├── PKDelimitState.h │ │ │ ├── PKDelimitedString.h │ │ │ ├── PKDifference.h │ │ │ ├── PKDigit.h │ │ │ ├── PKEmailState.h │ │ │ ├── PKEmpty.h │ │ │ ├── PKHashtagState.h │ │ │ ├── PKIntersection.h │ │ │ ├── PKLetter.h │ │ │ ├── PKLiteral.h │ │ │ ├── PKLowercaseWord.h │ │ │ ├── PKMultiLineCommentState.h │ │ │ ├── PKNegation.h │ │ │ ├── PKNumber.h │ │ │ ├── PKNumberState.h │ │ │ ├── PKParser.h │ │ │ ├── PKParserFactory.h │ │ │ ├── PKPattern.h │ │ │ ├── PKQuoteState.h │ │ │ ├── PKQuotedString.h │ │ │ ├── PKReader.h │ │ │ ├── PKRepetition.h │ │ │ ├── PKSequence.h │ │ │ ├── PKSingleLineCommentState.h │ │ │ ├── PKSpecificChar.h │ │ │ ├── PKSymbol.h │ │ │ ├── PKSymbolNode.h │ │ │ ├── PKSymbolRootNode.h │ │ │ ├── PKSymbolState.h │ │ │ ├── PKTerminal.h │ │ │ ├── PKToken.h │ │ │ ├── PKTokenArraySource.h │ │ │ ├── PKTokenAssembly.h │ │ │ ├── PKTokenizer.h │ │ │ ├── PKTokenizerState.h │ │ │ ├── PKTrack.h │ │ │ ├── PKTrackException.h │ │ │ ├── PKTwitterState.h │ │ │ ├── PKTypes.h │ │ │ ├── PKURLState.h │ │ │ ├── PKUppercaseWord.h │ │ │ ├── PKWhitespace.h │ │ │ ├── PKWhitespaceState.h │ │ │ ├── PKWord.h │ │ │ ├── PKWordState.h │ │ │ └── ParseKit.h │ └── src │ │ ├── NSArray+ParseKitAdditions.h │ │ ├── NSArray+ParseKitAdditions.m │ │ ├── NSString+ParseKitAdditions.h │ │ ├── NSString+ParseKitAdditions.m │ │ ├── PKAlternation.m │ │ ├── PKAny.m │ │ ├── PKAssembly.m │ │ ├── PKCaseInsensitiveLiteral.m │ │ ├── PKChar.m │ │ ├── PKCharacterAssembly.m │ │ ├── PKCollectionParser.m │ │ ├── PKComment.m │ │ ├── PKCommentState.m │ │ ├── PKDelimitState.m │ │ ├── PKDelimitedString.m │ │ ├── PKDifference.m │ │ ├── PKDigit.m │ │ ├── PKEmailState.m │ │ ├── PKEmpty.m │ │ ├── PKGrammarParser.h │ │ ├── PKGrammarParser.m │ │ ├── PKHashtagState.m │ │ ├── PKIntersection.m │ │ ├── PKLetter.m │ │ ├── PKLiteral.m │ │ ├── PKLowercaseWord.m │ │ ├── PKMultiLineCommentState.m │ │ ├── PKNegation.m │ │ ├── PKNumber.m │ │ ├── PKNumberState.m │ │ ├── PKParser.m │ │ ├── PKParserFactory.m │ │ ├── PKPattern.m │ │ ├── PKQuoteState.m │ │ ├── PKQuotedString.m │ │ ├── PKReader.m │ │ ├── PKRepetition.m │ │ ├── PKSequence.m │ │ ├── PKSingleLineCommentState.m │ │ ├── PKSpecificChar.m │ │ ├── PKSymbol.m │ │ ├── PKSymbolNode.m │ │ ├── PKSymbolRootNode.m │ │ ├── PKSymbolState.m │ │ ├── PKTerminal.m │ │ ├── PKToken.m │ │ ├── PKTokenArraySource.m │ │ ├── PKTokenAssembly.m │ │ ├── PKTokenizer.m │ │ ├── PKTokenizerState.m │ │ ├── PKTrack.m │ │ ├── PKTrackException.m │ │ ├── PKTwitterState.m │ │ ├── PKURLState.m │ │ ├── PKUppercaseWord.m │ │ ├── PKWhitespace.m │ │ ├── PKWhitespaceState.m │ │ ├── PKWord.m │ │ ├── PKWordState.m │ │ ├── RegexKitLite.h │ │ └── RegexKitLite.m ├── Pods-Acknowledgements.markdown ├── Pods-Acknowledgements.plist ├── Pods-NotepadTests-Acknowledgements.markdown ├── Pods-NotepadTests-Acknowledgements.plist ├── Pods-NotepadTests-prefix.pch ├── Pods-NotepadTests-resources.sh ├── Pods-NotepadTests.xcconfig ├── Pods-prefix.pch ├── Pods-resources.sh ├── Pods.xcconfig ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── cesar4.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-NotepadTests.xcscheme │ │ ├── Pods.xcscheme │ │ └── xcschememanagement.plist ├── PodsDummy.m ├── PodsDummy_Pods.m ├── PodsDummy_Pods_NotepadTests.m ├── Reachability │ ├── README.md │ ├── Reachability.h │ ├── Reachability.m │ └── Reachability.podspec ├── SOCKit │ ├── LICENSE │ ├── NOTICE │ ├── README.mdown │ ├── SOCKit.h │ ├── SOCKit.m │ └── SOCKit.podspec ├── SSKeychain │ ├── LICENSE │ ├── SSKeychain.h │ └── SSKeychain.m ├── SSToolkit │ ├── Assets │ │ ├── Images │ │ │ ├── SSAddressBarTextFieldBackground.png │ │ │ ├── SSAddressBarTextFieldBackground@2x.png │ │ │ ├── SSAddressBarTextFieldReload.png │ │ │ ├── SSAddressBarTextFieldReload@2x.png │ │ │ ├── SSAddressBarTextFieldStop.png │ │ │ ├── SSAddressBarTextFieldStop@2x.png │ │ │ ├── SSVignetteiPad.png │ │ │ ├── SSVignetteiPhone.png │ │ │ ├── SSVignetteiPhone@2x.png │ │ │ ├── UISegmentBarButton.png │ │ │ ├── UISegmentBarButton@2x.png │ │ │ ├── UISegmentBarButtonHighlighted.png │ │ │ ├── UISegmentBarButtonHighlighted@2x.png │ │ │ ├── UISegmentBarDivider.png │ │ │ ├── UISegmentBarDivider@2x.png │ │ │ ├── UISegmentBarDividerHighlighted.png │ │ │ ├── UISegmentBarDividerHighlighted@2x.png │ │ │ ├── gray-star.png │ │ │ ├── gray-star@2x.png │ │ │ ├── hud-check.png │ │ │ ├── hud-check@2x.png │ │ │ ├── hud-x.png │ │ │ ├── hud-x@2x.png │ │ │ ├── orange-star.png │ │ │ └── orange-star@2x.png │ │ ├── SSToolkitResources-Info.plist │ │ ├── de.lproj │ │ │ └── SSToolkit.strings │ │ ├── en.lproj │ │ │ └── SSToolkit.strings │ │ ├── es.lproj │ │ │ └── SSToolkit.strings │ │ ├── fr.lproj │ │ │ └── SSToolkit.strings │ │ ├── id.lproj │ │ │ └── SSToolkit.strings │ │ ├── it.lproj │ │ │ └── SSToolkit.strings │ │ ├── ja.lproj │ │ │ └── SSToolkit.strings │ │ ├── ko.lproj │ │ │ └── SSToolkit.strings │ │ ├── ms.lproj │ │ │ └── SSToolkit.strings │ │ ├── nl.lproj │ │ │ └── SSToolkit.strings │ │ ├── pt.lproj │ │ │ └── SSToolkit.strings │ │ ├── pt_PT.lproj │ │ │ └── SSToolkit.strings │ │ ├── ru.lproj │ │ │ └── SSToolkit.strings │ │ ├── sv.lproj │ │ │ └── SSToolkit.strings │ │ ├── zh_Hans.lproj │ │ │ └── SSToolkit.strings │ │ └── zh_Hant.lproj │ │ │ └── SSToolkit.strings │ ├── LICENSE │ ├── Readme.markdown │ ├── SSToolkit.podspec │ └── SSToolkit │ │ ├── NSArray+SSToolkitAdditions.h │ │ ├── NSArray+SSToolkitAdditions.m │ │ ├── NSBundle+SSToolkitAdditions.h │ │ ├── NSBundle+SSToolkitAdditions.m │ │ ├── NSData+SSToolkitAdditions.h │ │ ├── NSData+SSToolkitAdditions.m │ │ ├── NSDate+SSToolkitAdditions.h │ │ ├── NSDate+SSToolkitAdditions.m │ │ ├── NSDictionary+SSToolkitAdditions.h │ │ ├── NSDictionary+SSToolkitAdditions.m │ │ ├── NSNumber+SSToolkitAdditions.h │ │ ├── NSNumber+SSToolkitAdditions.m │ │ ├── NSString+SSToolkitAdditions.h │ │ ├── NSString+SSToolkitAdditions.m │ │ ├── NSURL+SSToolkitAdditions.h │ │ ├── NSURL+SSToolkitAdditions.m │ │ ├── SSAddressBarTextField.h │ │ ├── SSAddressBarTextField.m │ │ ├── SSAddressBarTextFieldBackgroundView.h │ │ ├── SSAddressBarTextFieldBackgroundView.m │ │ ├── SSAddressBarTextFieldBackgroundViewInnerView.h │ │ ├── SSAddressBarTextFieldBackgroundViewInnerView.m │ │ ├── SSAnimatedImageView.h │ │ ├── SSAnimatedImageView.m │ │ ├── SSBadgeTableViewCell.h │ │ ├── SSBadgeTableViewCell.m │ │ ├── SSBadgeView.h │ │ ├── SSBadgeView.m │ │ ├── SSBorderedView.h │ │ ├── SSBorderedView.m │ │ ├── SSButton.h │ │ ├── SSButton.m │ │ ├── SSCategories.h │ │ ├── SSCollectionView.h │ │ ├── SSCollectionView.m │ │ ├── SSCollectionViewController.h │ │ ├── SSCollectionViewController.m │ │ ├── SSCollectionViewExtremityTableViewCell.h │ │ ├── SSCollectionViewExtremityTableViewCell.m │ │ ├── SSCollectionViewInternal.h │ │ ├── SSCollectionViewItem.h │ │ ├── SSCollectionViewItem.m │ │ ├── SSCollectionViewItemInternal.h │ │ ├── SSCollectionViewItemTableViewCell.h │ │ ├── SSCollectionViewItemTableViewCell.m │ │ ├── SSCollectionViewTableView.h │ │ ├── SSCollectionViewTableView.m │ │ ├── SSConcurrentOperation.h │ │ ├── SSConcurrentOperation.m │ │ ├── SSDrawingUtilities.h │ │ ├── SSDrawingUtilities.m │ │ ├── SSGradientView.h │ │ ├── SSGradientView.m │ │ ├── SSHUDView.h │ │ ├── SSHUDView.m │ │ ├── SSHUDWindow.h │ │ ├── SSHUDWindow.m │ │ ├── SSLabel.h │ │ ├── SSLabel.m │ │ ├── SSLineView.h │ │ ├── SSLineView.m │ │ ├── SSLoadingView.h │ │ ├── SSLoadingView.m │ │ ├── SSPickerViewController.h │ │ ├── SSPickerViewController.m │ │ ├── SSPieProgressView.h │ │ ├── SSPieProgressView.m │ │ ├── SSRateLimit.h │ │ ├── SSRateLimit.m │ │ ├── SSRatingPicker.h │ │ ├── SSRatingPicker.m │ │ ├── SSRatingPickerScrollView.h │ │ ├── SSRatingPickerScrollView.m │ │ ├── SSRatingPickerViewController.h │ │ ├── SSRatingPickerViewController.m │ │ ├── SSTextField.h │ │ ├── SSTextField.m │ │ ├── SSTextView.h │ │ ├── SSTextView.m │ │ ├── SSToolkit.h │ │ ├── SSToolkitDefines.h │ │ ├── SSToolkitDefines.m │ │ ├── SSWebView.h │ │ ├── SSWebView.m │ │ ├── UIApplication+SSToolkitAdditions.h │ │ ├── UIApplication+SSToolkitAdditions.m │ │ ├── UIColor+SSToolkitAdditions.h │ │ ├── UIColor+SSToolkitAdditions.m │ │ ├── UIControl+SSToolkitAdditions.h │ │ ├── UIControl+SSToolkitAdditions.m │ │ ├── UIDevice+SSToolkitAdditions.h │ │ ├── UIDevice+SSToolkitAdditions.m │ │ ├── UIImage+SSToolkitAdditions.h │ │ ├── UIImage+SSToolkitAdditions.m │ │ ├── UIScreen+SSToolkitAdditions.h │ │ ├── UIScreen+SSToolkitAdditions.m │ │ ├── UIScrollView+SSToolkitAdditions.h │ │ ├── UIScrollView+SSToolkitAdditions.m │ │ ├── UIView+SSToolkitAdditions.h │ │ ├── UIView+SSToolkitAdditions.m │ │ ├── UIViewController+SSToolkitAdditions.h │ │ └── UIViewController+SSToolkitAdditions.m ├── TestFlightSDK │ ├── README.txt │ ├── TestFlight.h │ └── libTestFlight.a ├── Underscore.m │ ├── LICENSE │ ├── README.md │ └── Underscore │ │ ├── USArrayWrapper.h │ │ ├── USArrayWrapper.m │ │ ├── USConstants.h │ │ ├── USDictionaryWrapper.h │ │ ├── USDictionaryWrapper.m │ │ ├── Underscore.h │ │ └── Underscore.m └── libffi │ ├── LICENSE │ ├── README │ ├── ios │ ├── include │ │ ├── ffi.h │ │ ├── ffi_armv7.h │ │ ├── ffi_common.h │ │ ├── ffi_i386.h │ │ ├── fficonfig.h │ │ ├── fficonfig_armv7.h │ │ ├── fficonfig_i386.h │ │ ├── ffitarget.h │ │ ├── ffitarget_armv7.h │ │ └── ffitarget_i386.h │ └── src │ │ ├── arm │ │ ├── ffi.c │ │ ├── sysv.S │ │ └── trampoline.S │ │ └── x86 │ │ ├── darwin.S │ │ └── ffi.c │ ├── libffi.podspec │ └── src │ ├── closures.c │ ├── dlmalloc.c │ ├── prep_cif.c │ ├── raw_api.c │ └── types.c ├── README.md ├── Resources ├── Images │ ├── Default-568h@2x.png │ ├── Default-Landscape~ipad.png │ ├── Default-Landscape~ipad@2x.png │ ├── Default-Portrait~ipad.png │ ├── Default-Portrait~ipad@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-72.png │ ├── Icon-72@2x.png │ ├── Icon-Small-50.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ ├── bg-cell.png │ ├── bg-cell@2x.png │ ├── bg-textfield.png │ ├── bg-textfield@2x.png │ ├── bg-textview.png │ ├── bg-textview@2x.png │ ├── bg-toolbar.png │ ├── bg-toolbar@2x.png │ ├── big-logo-ipad.png │ ├── big-logo-ipad@2x.png │ ├── big-logo.png │ ├── big-logo@2x.png │ ├── btn-back.png │ ├── btn-back@2x.png │ ├── btn-nav-bar.png │ ├── btn-nav-bar@2x.png │ ├── btn-textfield-add.png │ ├── btn-textfield-add@2x.png │ ├── cell-accessory.png │ ├── cell-accessory@2x.png │ ├── cell-delete.png │ ├── cell-delete@2x.png │ ├── cell-sort.png │ ├── cell-sort@2x.png │ ├── hr-line.png │ ├── hr-line@2x.png │ ├── iTunesArtwork │ ├── nav-bar-logo.png │ ├── nav-bar-logo@2x.png │ ├── nav-bar.png │ ├── nav-bar@2x.png │ ├── splash-background-landscape-ipad@2x.png │ ├── splash-background-portrait-ipad@2x.png │ ├── splash-background-portrait@2x.png │ ├── tableview-footer.png │ ├── tableview-footer@2x.png │ ├── tableview-patern.png │ ├── tableview-patern@2x.png │ ├── toolbar-btn-dark.png │ ├── toolbar-btn-dark@2x.png │ ├── toolbar-btn-light.png │ └── toolbar-btn-light@2x.png ├── Others │ └── markdown.css └── Xibs │ └── WebViewController.xib ├── Screen ├── Screen.png ├── Screen2.png ├── Screen3.png ├── Screen4.png ├── Screen5.png ├── Screen6.png └── Screen7.png └── Vendor ├── AFOAuth2Client ├── AFOAuth2Client.h └── AFOAuth2Client.m ├── BWAFNetworking ├── BWAFNetworking.h ├── BWAFNetworking.m ├── BWAFOAuth2Client.h └── BWAFOAuth2Client.m ├── BWBackendObjectUpdate ├── BWBackendObjectUpdateManager.h ├── BWBackendObjectUpdateManager.m ├── NSManagedObject+BWBackendObjectUpdate.h └── NSManagedObject+BWBackendObjectUpdate.m ├── BWDataKit ├── BWManagedTableViewController.h ├── BWManagedTableViewController.m ├── BWManagedViewController.h ├── BWManagedViewController.m ├── BWModel.h ├── BWModel.m ├── BWRemoteModel.h ├── BWRemoteModel.m ├── BWViewController.h ├── BWViewController.m ├── NSManagedObject+Deletable.h ├── NSManagedObject+Deletable.m ├── NSManagedObject+FindOrCreate.h ├── NSManagedObject+FindOrCreate.m ├── NSManagedObject+LastUpdatedAt.h └── NSManagedObject+LastUpdatedAt.m ├── BWObjectMapping ├── BWObjectAttributeMapping.h ├── BWObjectAttributeMapping.m ├── BWObjectMapper.h ├── BWObjectMapper.m ├── BWObjectMapping.h ├── BWObjectMapping.m ├── BWObjectMappingBlocks.h ├── BWObjectValueMapper.h └── BWObjectValueMapper.m ├── BWObjectRouter ├── BWObjectRouter.h ├── BWObjectRouter.m ├── BWObjectRoutes.h └── BWObjectRoutes.m ├── BWObjectSerializer ├── BWObjectSerializer.h ├── BWObjectSerializer.m ├── BWObjectSerializerAttributeMapping.h ├── BWObjectSerializerAttributeMapping.m ├── BWObjectSerializerBlocks.h ├── BWObjectSerializerMapping.h └── BWObjectSerializerMapping.m ├── BWSelectViewController ├── BWSelectViewController.h └── BWSelectViewController.m ├── Core ├── BKBlocks.h ├── BKDeviceAvailability.h ├── BKDeviceAvailability.m ├── BKIteratingHelper.h ├── BKIteratingHelper.m ├── BKMacrosDefinitions.h ├── BKOperationHelper.h ├── BKOperationHelper.m ├── BKRunBlockAtDealloc.h ├── BKRunBlockAtDealloc.m ├── BKToogleValue.h ├── BKToogleValue.m ├── BKUtils.h ├── BKUtils.m ├── BaseKitCore.h ├── BaseKitCoreAdditions.h ├── NSArray+BaseKit.h ├── NSArray+BaseKit.m ├── NSDictionary+BaseKit.h ├── NSDictionary+BaseKit.m ├── NSMutableArray+BaseKit.h ├── NSMutableArray+BaseKit.m ├── NSMutableDictionary+BaseKit.h ├── NSMutableDictionary+BaseKit.m ├── NSOperationQueue+BaseKit.h ├── NSOperationQueue+BaseKit.m ├── NSSet+BaseKit.h ├── NSSet+BaseKit.m ├── NSString+BaseKit.h ├── NSString+BaseKit.m └── deps ├── CoreData ├── BaseKitCoreData.h ├── NSManagedObject+BaseKit.h └── NSManagedObject+BaseKit.m ├── DKPropertyList ├── DKPropertyList.h └── DKPropertyList.m ├── FormKit ├── FKBlocks.h ├── FKFormAttributeMapping.h ├── FKFormAttributeMapping.m ├── FKFormAttributeValidation.h ├── FKFormAttributeValidation.m ├── FKFormMapper.h ├── FKFormMapper.m ├── FKFormMapping.h ├── FKFormMapping.m ├── FKFormModel.h ├── FKFormModel.m ├── FKMacrosDefinitions.h ├── FKSectionObject.h ├── FKSectionObject.m ├── Fields │ ├── FKBadgeField.h │ ├── FKBadgeField.m │ ├── FKButtonField.h │ ├── FKButtonField.m │ ├── FKDisclosureIndicatorAccessoryField.h │ ├── FKDisclosureIndicatorAccessoryField.m │ ├── FKFieldErrorProtocol.h │ ├── FKFields.h │ ├── FKFieldsBlocks.h │ ├── FKFloatField.h │ ├── FKFloatField.m │ ├── FKImageField.h │ ├── FKImageField.m │ ├── FKIntegerField.h │ ├── FKIntegerField.m │ ├── FKLabelField.h │ ├── FKLabelField.m │ ├── FKPasswordTextField.h │ ├── FKPasswordTextField.m │ ├── FKSaveButtonField.h │ ├── FKSaveButtonField.m │ ├── FKSimpleField.h │ ├── FKSimpleField.m │ ├── FKSliderField.h │ ├── FKSliderField.m │ ├── FKSwitchField.h │ ├── FKSwitchField.m │ ├── FKTextField.h │ ├── FKTextField.m │ ├── FKTextViewField.h │ ├── FKTextViewField.m │ ├── FKValueViewField.h │ └── FKValueViewField.m ├── FormKit.h ├── NSObject+FKFormAttributeMapping.h ├── NSObject+FKFormAttributeMapping.m ├── UITableViewCell+FormKit.h ├── UITableViewCell+FormKit.m ├── UIView+FormKit.h └── UIView+FormKit.m ├── MarkdownParser ├── .gitignore ├── .gitmodules ├── App │ ├── BOAppDelegate.h │ ├── BOAppDelegate.m │ ├── BOViewController.h │ ├── BOViewController.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── MarkdownParser-Info.plist │ ├── en.lproj │ │ ├── BOViewController.xib │ │ └── InfoPlist.strings │ └── main.m ├── LICENSE.md ├── MarkdownParser.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── MarkdownParser.xcscheme │ │ └── MarkdownParserApp.xcscheme ├── README.md ├── Source │ ├── BOMarkdownParser.h │ ├── BOMarkdownParser.m │ ├── MarkdownParser-Prefix.pch │ ├── NSAttributedString+Markdown.h │ └── NSAttributedString+Markdown.m ├── Submodules │ └── libupskirt │ │ ├── BSDmakefile │ │ ├── GNUmakefile │ │ ├── LICENSE │ │ ├── README │ │ ├── array.c │ │ ├── array.h │ │ ├── benchmark.c │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── expanded_markdown.sh │ │ ├── kilt.c │ │ ├── lace.c │ │ ├── markdown.c │ │ ├── markdown.h │ │ ├── renderers.c │ │ └── renderers.h └── Tests │ ├── MarkdownParserTests-Info.plist │ ├── MarkdownParserTests.m │ └── en.lproj │ └── InfoPlist.strings ├── Nimbus ├── attributedlabel │ └── src │ │ ├── NIAttributedLabel.h │ │ ├── NIAttributedLabel.m │ │ ├── NSMutableAttributedString+NimbusAttributedLabel.h │ │ ├── NSMutableAttributedString+NimbusAttributedLabel.m │ │ ├── NimbusAttributedLabel+Namespace.h │ │ └── NimbusAttributedLabel.h └── core │ └── src │ ├── NICommonMetrics.h │ ├── NICommonMetrics.m │ ├── NIDataStructures.h │ ├── NIDataStructures.m │ ├── NIDebuggingTools.h │ ├── NIDebuggingTools.m │ ├── NIDeviceOrientation.h │ ├── NIDeviceOrientation.m │ ├── NIError.h │ ├── NIError.m │ ├── NIFoundationMethods.h │ ├── NIFoundationMethods.m │ ├── NIInMemoryCache.h │ ├── NIInMemoryCache.m │ ├── NINavigationAppearance.h │ ├── NINavigationAppearance.m │ ├── NINetworkActivity.h │ ├── NINetworkActivity.m │ ├── NINonEmptyCollectionTesting.h │ ├── NINonEmptyCollectionTesting.m │ ├── NINonRetainingCollections.h │ ├── NINonRetainingCollections.m │ ├── NIOperations+Subclassing.h │ ├── NIOperations.h │ ├── NIOperations.m │ ├── NIPaths.h │ ├── NIPaths.m │ ├── NIPreprocessorMacros.h │ ├── NIRuntimeClassModifications.h │ ├── NIRuntimeClassModifications.m │ ├── NISDKAvailability.h │ ├── NISDKAvailability.m │ ├── NISnapshotRotation.h │ ├── NISnapshotRotation.m │ ├── NIState.h │ ├── NIState.m │ ├── NIViewRecycler.h │ ├── NIViewRecycler.m │ ├── NSString+NimbusCore.h │ ├── NSString+NimbusCore.m │ ├── NimbusCore+Additions.h │ ├── NimbusCore+Namespace.h │ └── NimbusCore.h ├── SVProgressHUD ├── SVProgressHUD.bundle │ ├── error.png │ ├── error@2x.png │ ├── success.png │ └── success@2x.png ├── SVProgressHUD.h └── SVProgressHUD.m ├── TableKit ├── Private │ ├── TKCellMapper.h │ ├── TKCellMapper.m │ ├── TKTableModel+Private.h │ ├── UITableViewCell+TableKit.h │ └── UITableViewCell+TableKit.m ├── TKBlocks.h ├── TKCellAttributeMapping.h ├── TKCellAttributeMapping.m ├── TKCellMapping.h ├── TKCellMapping.m ├── TKDynamicCellMapping.h ├── TKDynamicCellMapping.m ├── TKListTableModel.h ├── TKListTableModel.m ├── TKManagedTableModel.h ├── TKManagedTableModel.m ├── TKSectionedTableModel.h ├── TKSectionedTableModel.m ├── TKTableModel.h ├── TKTableModel.m └── TableKit.h ├── TestFlightSDK1.0 ├── README.txt ├── TestFlight.h ├── libTestFlight.a └── release_notes.txt ├── UITableView+NXEmptyView ├── UITableView+NXEmptyView-Info.plist ├── UITableView+NXEmptyView-Prefix.pch ├── UITableView+NXEmptyView.h ├── UITableView+NXEmptyView.m └── en.lproj │ └── InfoPlist.strings ├── View ├── BKViewBlocks.h ├── BKViewControllerDelegate.h ├── BaseKitView.h ├── BaseKitViewAdditions.h ├── UIBarButtonItem+BaseKit.h ├── UIBarButtonItem+BaseKit.m ├── UINavigationController+BaseKit.h ├── UINavigationController+BaseKit.m ├── UITableView+BaseKit.h ├── UITableView+BaseKit.m ├── UITableViewCell+BaseKit.h ├── UITableViewCell+BaseKit.m ├── UIView+BaseKit.h ├── UIView+BaseKit.m ├── UIView+Debug.h ├── UIView+Debug.m ├── UIViewController+BaseKit.h ├── UIViewController+BaseKit.m └── deps └── libupskirt ├── BSDmakefile ├── GNUmakefile ├── LICENSE ├── README ├── array.c ├── array.h ├── benchmark.c ├── buffer.c ├── buffer.h ├── expanded_markdown.sh ├── kilt.c ├── lace.c ├── markdown.c ├── markdown.h ├── renderers.c └── renderers.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/.gitignore -------------------------------------------------------------------------------- /Code/AppDelegate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/AppDelegate/AppDelegate.h -------------------------------------------------------------------------------- /Code/AppDelegate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/AppDelegate/AppDelegate.m -------------------------------------------------------------------------------- /Code/Categories/NSDate+RailsDateFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Categories/NSDate+RailsDateFormat.h -------------------------------------------------------------------------------- /Code/Categories/NSDate+RailsDateFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Categories/NSDate+RailsDateFormat.m -------------------------------------------------------------------------------- /Code/Categories/NSManagedObject+Sortable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Categories/NSManagedObject+Sortable.h -------------------------------------------------------------------------------- /Code/Categories/NSManagedObject+Sortable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Categories/NSManagedObject+Sortable.m -------------------------------------------------------------------------------- /Code/Cells/EditableCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Cells/EditableCellView.h -------------------------------------------------------------------------------- /Code/Cells/EditableCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Cells/EditableCellView.m -------------------------------------------------------------------------------- /Code/Controllers/ListsTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/ListsTableViewController.h -------------------------------------------------------------------------------- /Code/Controllers/ListsTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/ListsTableViewController.m -------------------------------------------------------------------------------- /Code/Controllers/LoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/LoginViewController.h -------------------------------------------------------------------------------- /Code/Controllers/LoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/LoginViewController.m -------------------------------------------------------------------------------- /Code/Controllers/NoteViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/NoteViewController.h -------------------------------------------------------------------------------- /Code/Controllers/NoteViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/NoteViewController.m -------------------------------------------------------------------------------- /Code/Controllers/NotesTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/NotesTableViewController.h -------------------------------------------------------------------------------- /Code/Controllers/NotesTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/NotesTableViewController.m -------------------------------------------------------------------------------- /Code/Controllers/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/SettingsViewController.h -------------------------------------------------------------------------------- /Code/Controllers/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/SettingsViewController.m -------------------------------------------------------------------------------- /Code/Controllers/SplashViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/SplashViewController.h -------------------------------------------------------------------------------- /Code/Controllers/SplashViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/SplashViewController.m -------------------------------------------------------------------------------- /Code/Controllers/SplashViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Controllers/SplashViewController.xib -------------------------------------------------------------------------------- /Code/Helpers/ExecuteEveryTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Helpers/ExecuteEveryTime.h -------------------------------------------------------------------------------- /Code/Helpers/ExecuteEveryTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Helpers/ExecuteEveryTime.m -------------------------------------------------------------------------------- /Code/Helpers/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Helpers/HttpClient.h -------------------------------------------------------------------------------- /Code/Helpers/HttpClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Helpers/HttpClient.m -------------------------------------------------------------------------------- /Code/Helpers/MarkdownTextViewManipulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Helpers/MarkdownTextViewManipulation.h -------------------------------------------------------------------------------- /Code/Helpers/MarkdownTextViewManipulation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Helpers/MarkdownTextViewManipulation.m -------------------------------------------------------------------------------- /Code/Helpers/OAuth2Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Helpers/OAuth2Client.h -------------------------------------------------------------------------------- /Code/Helpers/OAuth2Client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Helpers/OAuth2Client.m -------------------------------------------------------------------------------- /Code/Helpers/TextViewManipulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Helpers/TextViewManipulation.h -------------------------------------------------------------------------------- /Code/Helpers/TextViewManipulation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Helpers/TextViewManipulation.m -------------------------------------------------------------------------------- /Code/Models/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Models/List.h -------------------------------------------------------------------------------- /Code/Models/List.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Models/List.m -------------------------------------------------------------------------------- /Code/Models/Note.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Models/Note.h -------------------------------------------------------------------------------- /Code/Models/Note.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Models/Note.m -------------------------------------------------------------------------------- /Code/Models/NoteModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Models/NoteModel.h -------------------------------------------------------------------------------- /Code/Models/NoteModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Models/NoteModel.m -------------------------------------------------------------------------------- /Code/Models/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Models/Settings.h -------------------------------------------------------------------------------- /Code/Models/Settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Models/Settings.m -------------------------------------------------------------------------------- /Code/Models/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Models/User.h -------------------------------------------------------------------------------- /Code/Models/User.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Models/User.m -------------------------------------------------------------------------------- /Code/Others/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Others/Defines.h -------------------------------------------------------------------------------- /Code/Views/CreateInPlaceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Views/CreateInPlaceView.h -------------------------------------------------------------------------------- /Code/Views/CreateInPlaceView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Views/CreateInPlaceView.m -------------------------------------------------------------------------------- /Code/Views/ToolbarInputAccessoryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Views/ToolbarInputAccessoryView.h -------------------------------------------------------------------------------- /Code/Views/ToolbarInputAccessoryView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Views/ToolbarInputAccessoryView.m -------------------------------------------------------------------------------- /Code/Views/UndoRedoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Views/UndoRedoView.h -------------------------------------------------------------------------------- /Code/Views/UndoRedoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Code/Views/UndoRedoView.m -------------------------------------------------------------------------------- /KiwiUnitTest/KiwiUnitTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/KiwiUnitTest/KiwiUnitTest-Info.plist -------------------------------------------------------------------------------- /KiwiUnitTest/KiwiUnitTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/KiwiUnitTest/KiwiUnitTest-Prefix.pch -------------------------------------------------------------------------------- /KiwiUnitTest/KiwiUnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/KiwiUnitTest/KiwiUnitTest.h -------------------------------------------------------------------------------- /KiwiUnitTest/KiwiUnitTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/KiwiUnitTest/KiwiUnitTest.m -------------------------------------------------------------------------------- /KiwiUnitTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Notepad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Notepad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Notepad/Notepad-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Notepad/Notepad-Info.plist -------------------------------------------------------------------------------- /Notepad/Notepad-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Notepad/Notepad-Prefix.pch -------------------------------------------------------------------------------- /Notepad/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Notepad/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Notepad/main.m -------------------------------------------------------------------------------- /NotepadTests/NotepadTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/NotepadTests/NotepadTests-Info.plist -------------------------------------------------------------------------------- /NotepadTests/TextViewManipulationSpecs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/NotepadTests/TextViewManipulationSpecs.m -------------------------------------------------------------------------------- /NotepadTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/A2DynamicDelegate/A2BlockClosure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/A2DynamicDelegate/A2BlockClosure.h -------------------------------------------------------------------------------- /Pods/A2DynamicDelegate/A2BlockClosure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/A2DynamicDelegate/A2BlockClosure.m -------------------------------------------------------------------------------- /Pods/A2DynamicDelegate/A2BlockDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/A2DynamicDelegate/A2BlockDelegate.h -------------------------------------------------------------------------------- /Pods/A2DynamicDelegate/A2BlockDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/A2DynamicDelegate/A2BlockDelegate.m -------------------------------------------------------------------------------- /Pods/A2DynamicDelegate/A2DynamicDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/A2DynamicDelegate/A2DynamicDelegate.h -------------------------------------------------------------------------------- /Pods/A2DynamicDelegate/A2DynamicDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/A2DynamicDelegate/A2DynamicDelegate.m -------------------------------------------------------------------------------- /Pods/A2DynamicDelegate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/A2DynamicDelegate/README.md -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/AFNetworking/AFNetworking.podspec -------------------------------------------------------------------------------- /Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Pods/ActionSheetPicker2/ActionSheetPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ActionSheetPicker2/ActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/ActionSheetPicker2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ActionSheetPicker2/LICENSE -------------------------------------------------------------------------------- /Pods/ActionSheetPicker2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ActionSheetPicker2/README.md -------------------------------------------------------------------------------- /Pods/BWLongTextViewController/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/BWLongTextViewController/LICENSE -------------------------------------------------------------------------------- /Pods/BlocksKit/BlocksKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/BlocksKit/BlocksKit.podspec -------------------------------------------------------------------------------- /Pods/BlocksKit/BlocksKit/BKGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/BlocksKit/BlocksKit/BKGlobals.h -------------------------------------------------------------------------------- /Pods/BlocksKit/BlocksKit/BKMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/BlocksKit/BlocksKit/BKMacros.h -------------------------------------------------------------------------------- /Pods/BlocksKit/BlocksKit/BlocksKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/BlocksKit/BlocksKit/BlocksKit.h -------------------------------------------------------------------------------- /Pods/BlocksKit/BlocksKit/NSSet+BlocksKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/BlocksKit/BlocksKit/NSSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BlocksKit/BlocksKit/NSSet+BlocksKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/BlocksKit/BlocksKit/NSSet+BlocksKit.m -------------------------------------------------------------------------------- /Pods/BlocksKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/BlocksKit/LICENSE -------------------------------------------------------------------------------- /Pods/BlocksKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/BlocksKit/README.md -------------------------------------------------------------------------------- /Pods/BuildHeaders/A2DynamicDelegate/A2BlockClosure.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2BlockClosure.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/A2DynamicDelegate/A2BlockDelegate.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2BlockDelegate.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/A2DynamicDelegate/A2DynamicDelegate.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2DynamicDelegate.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFHTTPClient.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPClient.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFImageRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFImageRequestOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFJSONRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFJSONRequestOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFPropertyListRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFPropertyListRequestOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFXMLRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFXMLRequestOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/AbstractActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/AbstractActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/ActionSheetDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetDatePicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/ActionSheetDistancePicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetDistancePicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/ActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/ActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/ActionSheetStringPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetStringPicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/DistancePickerView.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/DistancePickerView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/A2BlockDelegate+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/A2BlockDelegate+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/BKGlobals.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BKGlobals.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/BKMacros.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BKMacros.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSArray+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSCache+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSCache+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSDictionary+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSInvocation+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSInvocation+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSMutableArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableArray+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSMutableDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableDictionary+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSMutableIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSMutableSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSObject+AssociatedObjects.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+AssociatedObjects.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSObject+BlockObservation.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+BlockObservation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSObject+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSTimer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSTimer+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSURLConnection+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSURLConnection+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIActionSheet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIActionSheet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIAlertView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIAlertView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIBarButtonItem+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIBarButtonItem+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIControl+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIControl+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIGestureRecognizer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIGestureRecognizer+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIPopoverController+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIPopoverController+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIWebView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIWebView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPEOFToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPEOFToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPErrorToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPErrorToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPGrammar.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammar.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPGrammarInternal.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPGrammarPrivate.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarPrivate.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPGrammarSymbol.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarSymbol.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPIdentifierRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPIdentifierRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPIdentifierToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPIdentifierToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPItem.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPItem.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPJSONParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Built In Parsers/CPJSONParser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPKeywordRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPKeywordRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPKeywordToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPKeywordToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPLALR1Parser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLALR1Parser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPLR1Item.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLR1Item.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPLR1Parser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLR1Parser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPNumberRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPNumberRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPNumberToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPNumberToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPParser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPQuotedRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPQuotedRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPQuotedToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPQuotedToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPRHSItem.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRHSItem.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPRHSItemResult.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRHSItemResult.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPRecoveryAction.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/Error Recovery/CPRecoveryAction.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPRule.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRule.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPSLRParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPSLRParser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPShiftReduceAction.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceAction.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPShiftReduceActionTable.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceActionTable.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPShiftReduceGotoTable.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceGotoTable.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPShiftReduceParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPShiftReduceState.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceState.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPSyntaxTree.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Syntax Tree/CPSyntaxTree.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPTokenRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPTokenRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPTokenStream.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/CPTokenStream.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPTokeniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/CPTokeniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPWhiteSpaceRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPWhiteSpaceRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPWhiteSpaceToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPWhiteSpaceToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CoreParse.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/CoreParse.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/NSSetFunctional.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/NSSetFunctional.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/JSONKit/JSONKit.h: -------------------------------------------------------------------------------- 1 | ../../JSONKit/JSONKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/KSReachability/ARCSafe_MemMgmt.h: -------------------------------------------------------------------------------- 1 | ../../KSReachability/ARCSafe_MemMgmt.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/KSReachability/KSReachability.h: -------------------------------------------------------------------------------- 1 | ../../KSReachability/KSReachability.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/CoreData+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/CoreData+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalImportFunctions.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+Actions.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+ErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+Options.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+Setup.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+ShorthandSupport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+iCloud.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecordShorthand.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecordShorthand.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SOCKit/SOCKit.h: -------------------------------------------------------------------------------- 1 | ../../SOCKit/SOCKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSKeychain/SSKeychain.h: -------------------------------------------------------------------------------- 1 | ../../SSKeychain/SSKeychain.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSArray+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSArray+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSBundle+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSBundle+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSData+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSData+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSDate+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSDate+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSDictionary+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSDictionary+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSNumber+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSNumber+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSString+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSString+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSURL+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSURL+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSAddressBarTextField.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAddressBarTextField.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSAddressBarTextFieldBackgroundView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAddressBarTextFieldBackgroundView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSBadgeTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBadgeTableViewCell.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSBadgeView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBadgeView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSBorderedView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBorderedView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSButton.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSButton.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCategories.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCategories.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewController.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewExtremityTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewExtremityTableViewCell.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewItem.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItem.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewItemInternal.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItemInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewItemTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItemTableViewCell.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewTableView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewTableView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSConcurrentOperation.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSConcurrentOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSDrawingUtilities.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSDrawingUtilities.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSGradientView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSGradientView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSHUDView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSHUDView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSHUDWindow.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSHUDWindow.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSLabel.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLabel.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSLineView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLineView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSLoadingView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLoadingView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSPickerViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSPickerViewController.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSPieProgressView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSPieProgressView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSRateLimit.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRateLimit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSRatingPicker.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSRatingPickerScrollView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPickerScrollView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSRatingPickerViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPickerViewController.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSTextField.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSTextField.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSTextView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSTextView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSToolkit.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSToolkit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSToolkitDefines.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSToolkitDefines.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSWebView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSWebView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIApplication+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIApplication+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIColor+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIColor+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIControl+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIControl+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIDevice+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIDevice+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIImage+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIImage+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIScreen+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIScreen+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIScrollView+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIScrollView+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIView+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIView+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIViewController+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIViewController+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/Underscore.m/USArrayWrapper.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USArrayWrapper.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/Underscore.m/USConstants.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USConstants.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/Underscore.m/USDictionaryWrapper.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USDictionaryWrapper.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/Underscore.m/Underscore.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/Underscore.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffi.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffi_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_armv7.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffi_common.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_common.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffi_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_i386.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/fficonfig.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/fficonfig_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig_armv7.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/fficonfig_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig_i386.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffitarget.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffitarget_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget_armv7.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffitarget_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget_i386.h -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/CoreParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/CoreParse/CoreParse/CoreParse.h -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Grammar/CPRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/CoreParse/CoreParse/Grammar/CPRule.h -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Grammar/CPRule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/CoreParse/CoreParse/Grammar/CPRule.m -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/NSSetFunctional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/CoreParse/CoreParse/NSSetFunctional.h -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/NSSetFunctional.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/CoreParse/CoreParse/NSSetFunctional.m -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Parsers/CPParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/CoreParse/CoreParse/Parsers/CPParser.h -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Parsers/CPParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/CoreParse/CoreParse/Parsers/CPParser.m -------------------------------------------------------------------------------- /Pods/CoreParse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/CoreParse/LICENSE -------------------------------------------------------------------------------- /Pods/CoreParse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/CoreParse/README.md -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/html/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Documentation/Kiwi/html/css/styles.css -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Documentation/Kiwi/html/hierarchy.html -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Documentation/Kiwi/html/index.html -------------------------------------------------------------------------------- /Pods/Headers/A2DynamicDelegate/A2BlockClosure.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2BlockClosure.h -------------------------------------------------------------------------------- /Pods/Headers/A2DynamicDelegate/A2BlockDelegate.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2BlockDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/A2DynamicDelegate/A2DynamicDelegate.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2DynamicDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFHTTPClient.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPClient.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFImageRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFImageRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFJSONRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFJSONRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFPropertyListRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFPropertyListRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFXMLRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFXMLRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/AbstractActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/AbstractActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/ActionSheetDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetDatePicker.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/ActionSheetDistancePicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetDistancePicker.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/ActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/ActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/ActionSheetStringPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetStringPicker.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/DistancePickerView.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/DistancePickerView.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/A2BlockDelegate+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/A2BlockDelegate+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/BKGlobals.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BKGlobals.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/BKMacros.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BKMacros.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/MFMailComposeViewController+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/MessageUI/MFMailComposeViewController+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSArray+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSCache+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSCache+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSDictionary+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSInvocation+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSInvocation+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSMutableArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableArray+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSMutableDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableDictionary+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSMutableIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSMutableSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSObject+AssociatedObjects.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+AssociatedObjects.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSObject+BlockObservation.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+BlockObservation.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSObject+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSTimer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSTimer+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSURLConnection+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSURLConnection+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIActionSheet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIActionSheet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIAlertView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIAlertView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIBarButtonItem+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIBarButtonItem+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIControl+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIControl+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIGestureRecognizer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIGestureRecognizer+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIPopoverController+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIPopoverController+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIWebView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIWebView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPEOFToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPEOFToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPErrorToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPErrorToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPGrammar.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammar.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPGrammarInternal.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarInternal.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPGrammarPrivate.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPGrammarSymbol.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarSymbol.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPIdentifierRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPIdentifierRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPIdentifierToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPIdentifierToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPItem.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPItem.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPJSONParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Built In Parsers/CPJSONParser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPKeywordRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPKeywordRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPKeywordToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPKeywordToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPLALR1Parser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLALR1Parser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPLR1Item.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLR1Item.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPLR1Parser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLR1Parser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPNumberRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPNumberRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPNumberToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPNumberToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPParser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPQuotedRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPQuotedRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPQuotedToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPQuotedToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPRHSItem.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRHSItem.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPRHSItemResult.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRHSItemResult.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPRecoveryAction.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/Error Recovery/CPRecoveryAction.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPRule.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRule.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPSLRParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPSLRParser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPShiftReduceAction.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceAction.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPShiftReduceActionTable.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceActionTable.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPShiftReduceGotoTable.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceGotoTable.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPShiftReduceParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPShiftReduceState.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceState.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPSyntaxTree.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Syntax Tree/CPSyntaxTree.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPTokenRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPTokenRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPTokenStream.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/CPTokenStream.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPTokeniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/CPTokeniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPWhiteSpaceRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPWhiteSpaceRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPWhiteSpaceToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPWhiteSpaceToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CoreParse.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/CoreParse.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/NSSetFunctional.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/NSSetFunctional.h -------------------------------------------------------------------------------- /Pods/Headers/JSONKit/JSONKit.h: -------------------------------------------------------------------------------- 1 | ../../JSONKit/JSONKit.h -------------------------------------------------------------------------------- /Pods/Headers/KSReachability/ARCSafe_MemMgmt.h: -------------------------------------------------------------------------------- 1 | ../../KSReachability/ARCSafe_MemMgmt.h -------------------------------------------------------------------------------- /Pods/Headers/KSReachability/KSReachability.h: -------------------------------------------------------------------------------- 1 | ../../KSReachability/KSReachability.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/CoreData+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/CoreData+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalImportFunctions.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+Actions.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+ErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+Options.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+Setup.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+ShorthandSupport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+iCloud.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecordShorthand.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecordShorthand.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSPersistentStore+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/SOCKit/SOCKit.h: -------------------------------------------------------------------------------- 1 | ../../SOCKit/SOCKit.h -------------------------------------------------------------------------------- /Pods/Headers/SSKeychain/SSKeychain.h: -------------------------------------------------------------------------------- 1 | ../../SSKeychain/SSKeychain.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSArray+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSArray+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSBundle+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSBundle+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSData+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSData+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSDate+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSDate+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSDictionary+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSDictionary+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSNumber+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSNumber+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSString+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSString+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSURL+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSURL+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSAddressBarTextField.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAddressBarTextField.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSAddressBarTextFieldBackgroundView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAddressBarTextFieldBackgroundView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSBadgeTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBadgeTableViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSBadgeView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBadgeView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSBorderedView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBorderedView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSButton.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSButton.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCategories.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCategories.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewController.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewExtremityTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewExtremityTableViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewInternal.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewItem.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItem.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewItemInternal.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItemInternal.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewItemTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItemTableViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewTableView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewTableView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSConcurrentOperation.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSConcurrentOperation.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSDrawingUtilities.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSDrawingUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSGradientView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSGradientView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSHUDView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSHUDView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSHUDWindow.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSHUDWindow.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSLabel.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLabel.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSLineView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLineView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSLoadingView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLoadingView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSPickerViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSPickerViewController.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSPieProgressView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSPieProgressView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSRateLimit.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRateLimit.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSRatingPicker.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPicker.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSRatingPickerScrollView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPickerScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSRatingPickerViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPickerViewController.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSTextField.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSTextField.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSTextView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSTextView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSToolkit.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSToolkit.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSToolkitDefines.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSToolkitDefines.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSWebView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSWebView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIApplication+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIApplication+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIColor+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIColor+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIControl+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIControl+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIDevice+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIDevice+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIImage+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIImage+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIScreen+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIScreen+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIScrollView+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIScrollView+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIView+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIView+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIViewController+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIViewController+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Underscore.m/USArrayWrapper.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USArrayWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Underscore.m/USConstants.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Underscore.m/USDictionaryWrapper.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USDictionaryWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Underscore.m/Underscore.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/Underscore.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffi.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffi_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_armv7.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffi_common.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_common.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffi_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_i386.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/fficonfig.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/fficonfig_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig_armv7.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/fficonfig_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig_i386.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffitarget.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffitarget_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget_armv7.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffitarget_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget_i386.h -------------------------------------------------------------------------------- /Pods/JSONKit/JSONKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/JSONKit/JSONKit.h -------------------------------------------------------------------------------- /Pods/JSONKit/JSONKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/JSONKit/JSONKit.m -------------------------------------------------------------------------------- /Pods/JSONKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/JSONKit/README.md -------------------------------------------------------------------------------- /Pods/KSReachability/ARCSafe_MemMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/KSReachability/ARCSafe_MemMgmt.h -------------------------------------------------------------------------------- /Pods/KSReachability/KSReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/KSReachability/KSReachability.h -------------------------------------------------------------------------------- /Pods/KSReachability/KSReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/KSReachability/KSReachability.m -------------------------------------------------------------------------------- /Pods/KSReachability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/KSReachability/README.md -------------------------------------------------------------------------------- /Pods/Local Podspecs/BWObjectRouter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Local Podspecs/BWObjectRouter.podspec -------------------------------------------------------------------------------- /Pods/Local Podspecs/FormKit.m.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Local Podspecs/FormKit.m.podspec -------------------------------------------------------------------------------- /Pods/MagicalRecord/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/MagicalRecord/LICENSE -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/MagicalRecord/MagicalRecord.podspec -------------------------------------------------------------------------------- /Pods/MagicalRecord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/MagicalRecord/README.md -------------------------------------------------------------------------------- /Pods/Nimbus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/LICENSE -------------------------------------------------------------------------------- /Pods/Nimbus/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/NOTICE -------------------------------------------------------------------------------- /Pods/Nimbus/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/README.mdown -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIBlocks.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NICommonMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NICommonMetrics.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NICommonMetrics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NICommonMetrics.m -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIDataStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIDataStructures.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIDataStructures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIDataStructures.m -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIDebuggingTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIDebuggingTools.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIDebuggingTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIDebuggingTools.m -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIError.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIError.m -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIInMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIInMemoryCache.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIInMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIInMemoryCache.m -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIOperations.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIOperations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIOperations.m -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIPaths.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIPaths.m -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIState.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIState.m -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIViewRecycler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIViewRecycler.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NIViewRecycler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NIViewRecycler.m -------------------------------------------------------------------------------- /Pods/Nimbus/src/core/src/NimbusCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/core/src/NimbusCore.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/interapp/src/NIInterapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/interapp/src/NIInterapp.h -------------------------------------------------------------------------------- /Pods/Nimbus/src/interapp/src/NIInterapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Nimbus/src/interapp/src/NIInterapp.m -------------------------------------------------------------------------------- /Pods/ParseKit/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/License.txt -------------------------------------------------------------------------------- /Pods/ParseKit/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/README.textile -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKAny.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKAssembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKAssembly.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKChar.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKComment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKComment.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKDigit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKDigit.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKEmpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKEmpty.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKLetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKLetter.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKLiteral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKLiteral.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKNegation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKNegation.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKNumber.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKParser.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKPattern.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKReader.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKSequence.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKSymbol.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKTerminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKTerminal.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKToken.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKTrack.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKTypes.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKURLState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKURLState.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKWord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/PKWord.h -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/ParseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/include/ParseKit/ParseKit.h -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKAlternation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKAlternation.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKAny.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKAny.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKAssembly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKAssembly.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKChar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKChar.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKCharacterAssembly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKCharacterAssembly.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKCollectionParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKCollectionParser.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKComment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKComment.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKCommentState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKCommentState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKDelimitState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKDelimitState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKDelimitedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKDelimitedString.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKDifference.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKDifference.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKDigit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKDigit.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKEmailState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKEmailState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKEmpty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKEmpty.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKGrammarParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKGrammarParser.h -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKGrammarParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKGrammarParser.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKHashtagState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKHashtagState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKIntersection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKIntersection.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKLetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKLetter.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKLiteral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKLiteral.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKLowercaseWord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKLowercaseWord.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKMultiLineCommentState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKMultiLineCommentState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKNegation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKNegation.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKNumber.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKNumberState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKNumberState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKParser.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKParserFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKParserFactory.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKPattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKPattern.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKQuoteState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKQuoteState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKQuotedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKQuotedString.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKReader.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKRepetition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKRepetition.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKSequence.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKSpecificChar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKSpecificChar.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKSymbol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKSymbol.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKSymbolNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKSymbolNode.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKSymbolRootNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKSymbolRootNode.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKSymbolState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKSymbolState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKTerminal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKTerminal.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKToken.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKTokenArraySource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKTokenArraySource.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKTokenAssembly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKTokenAssembly.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKTokenizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKTokenizer.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKTokenizerState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKTokenizerState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKTrack.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKTrackException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKTrackException.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKTwitterState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKTwitterState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKURLState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKURLState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKUppercaseWord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKUppercaseWord.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKWhitespace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKWhitespace.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKWhitespaceState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKWhitespaceState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKWord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKWord.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/PKWordState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/PKWordState.m -------------------------------------------------------------------------------- /Pods/ParseKit/src/RegexKitLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/RegexKitLite.h -------------------------------------------------------------------------------- /Pods/ParseKit/src/RegexKitLite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/ParseKit/src/RegexKitLite.m -------------------------------------------------------------------------------- /Pods/Pods-Acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Pods-Acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Pods-Acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Pods-Acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Pods-NotepadTests-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Pods-NotepadTests-prefix.pch -------------------------------------------------------------------------------- /Pods/Pods-NotepadTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Pods-NotepadTests-resources.sh -------------------------------------------------------------------------------- /Pods/Pods-NotepadTests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Pods-NotepadTests.xcconfig -------------------------------------------------------------------------------- /Pods/Pods-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Pods-prefix.pch -------------------------------------------------------------------------------- /Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Pods/Pods.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Pods.xcconfig -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/PodsDummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/PodsDummy.m -------------------------------------------------------------------------------- /Pods/PodsDummy_Pods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/PodsDummy_Pods.m -------------------------------------------------------------------------------- /Pods/PodsDummy_Pods_NotepadTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/PodsDummy_Pods_NotepadTests.m -------------------------------------------------------------------------------- /Pods/Reachability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Reachability/README.md -------------------------------------------------------------------------------- /Pods/Reachability/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Reachability/Reachability.h -------------------------------------------------------------------------------- /Pods/Reachability/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Reachability/Reachability.m -------------------------------------------------------------------------------- /Pods/Reachability/Reachability.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Reachability/Reachability.podspec -------------------------------------------------------------------------------- /Pods/SOCKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SOCKit/LICENSE -------------------------------------------------------------------------------- /Pods/SOCKit/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SOCKit/NOTICE -------------------------------------------------------------------------------- /Pods/SOCKit/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SOCKit/README.mdown -------------------------------------------------------------------------------- /Pods/SOCKit/SOCKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SOCKit/SOCKit.h -------------------------------------------------------------------------------- /Pods/SOCKit/SOCKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SOCKit/SOCKit.m -------------------------------------------------------------------------------- /Pods/SOCKit/SOCKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SOCKit/SOCKit.podspec -------------------------------------------------------------------------------- /Pods/SSKeychain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSKeychain/LICENSE -------------------------------------------------------------------------------- /Pods/SSKeychain/SSKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSKeychain/SSKeychain.h -------------------------------------------------------------------------------- /Pods/SSKeychain/SSKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSKeychain/SSKeychain.m -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/gray-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/Assets/Images/gray-star.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/hud-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/Assets/Images/hud-check.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/hud-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/Assets/Images/hud-x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/hud-x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/Assets/Images/hud-x@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/LICENSE -------------------------------------------------------------------------------- /Pods/SSToolkit/Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/Readme.markdown -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit.podspec -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSBadgeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSBadgeView.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSBadgeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSBadgeView.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSBorderedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSBorderedView.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSBorderedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSBorderedView.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSButton.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSButton.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSCategories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSCategories.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSCollectionView.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSCollectionView.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSGradientView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSGradientView.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSGradientView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSGradientView.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSHUDView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSHUDView.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSHUDView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSHUDView.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSHUDWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSHUDWindow.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSHUDWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSHUDWindow.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSLabel.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSLabel.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSLineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSLineView.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSLineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSLineView.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSLoadingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSLoadingView.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSLoadingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSLoadingView.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSRateLimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSRateLimit.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSRateLimit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSRateLimit.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSRatingPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSRatingPicker.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSRatingPicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSRatingPicker.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSTextField.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSTextField.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSTextView.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSTextView.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSToolkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSToolkit.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSToolkitDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSToolkitDefines.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSToolkitDefines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSToolkitDefines.m -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSWebView.h -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSWebView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/SSToolkit/SSToolkit/SSWebView.m -------------------------------------------------------------------------------- /Pods/TestFlightSDK/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/TestFlightSDK/README.txt -------------------------------------------------------------------------------- /Pods/TestFlightSDK/TestFlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/TestFlightSDK/TestFlight.h -------------------------------------------------------------------------------- /Pods/TestFlightSDK/libTestFlight.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/TestFlightSDK/libTestFlight.a -------------------------------------------------------------------------------- /Pods/Underscore.m/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Underscore.m/LICENSE -------------------------------------------------------------------------------- /Pods/Underscore.m/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Underscore.m/README.md -------------------------------------------------------------------------------- /Pods/Underscore.m/Underscore/USConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Underscore.m/Underscore/USConstants.h -------------------------------------------------------------------------------- /Pods/Underscore.m/Underscore/Underscore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Underscore.m/Underscore/Underscore.h -------------------------------------------------------------------------------- /Pods/Underscore.m/Underscore/Underscore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/Underscore.m/Underscore/Underscore.m -------------------------------------------------------------------------------- /Pods/libffi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/LICENSE -------------------------------------------------------------------------------- /Pods/libffi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/README -------------------------------------------------------------------------------- /Pods/libffi/ios/include/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/include/ffi.h -------------------------------------------------------------------------------- /Pods/libffi/ios/include/ffi_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/include/ffi_armv7.h -------------------------------------------------------------------------------- /Pods/libffi/ios/include/ffi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/include/ffi_common.h -------------------------------------------------------------------------------- /Pods/libffi/ios/include/ffi_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/include/ffi_i386.h -------------------------------------------------------------------------------- /Pods/libffi/ios/include/fficonfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/include/fficonfig.h -------------------------------------------------------------------------------- /Pods/libffi/ios/include/fficonfig_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/include/fficonfig_armv7.h -------------------------------------------------------------------------------- /Pods/libffi/ios/include/fficonfig_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/include/fficonfig_i386.h -------------------------------------------------------------------------------- /Pods/libffi/ios/include/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/include/ffitarget.h -------------------------------------------------------------------------------- /Pods/libffi/ios/include/ffitarget_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/include/ffitarget_i386.h -------------------------------------------------------------------------------- /Pods/libffi/ios/src/arm/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/src/arm/ffi.c -------------------------------------------------------------------------------- /Pods/libffi/ios/src/arm/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/src/arm/sysv.S -------------------------------------------------------------------------------- /Pods/libffi/ios/src/arm/trampoline.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/src/arm/trampoline.S -------------------------------------------------------------------------------- /Pods/libffi/ios/src/x86/darwin.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/src/x86/darwin.S -------------------------------------------------------------------------------- /Pods/libffi/ios/src/x86/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/ios/src/x86/ffi.c -------------------------------------------------------------------------------- /Pods/libffi/libffi.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/libffi.podspec -------------------------------------------------------------------------------- /Pods/libffi/src/closures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/src/closures.c -------------------------------------------------------------------------------- /Pods/libffi/src/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/src/dlmalloc.c -------------------------------------------------------------------------------- /Pods/libffi/src/prep_cif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/src/prep_cif.c -------------------------------------------------------------------------------- /Pods/libffi/src/raw_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/src/raw_api.c -------------------------------------------------------------------------------- /Pods/libffi/src/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Pods/libffi/src/types.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Resources/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/Default.png -------------------------------------------------------------------------------- /Resources/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/Default@2x.png -------------------------------------------------------------------------------- /Resources/Images/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/Icon-72.png -------------------------------------------------------------------------------- /Resources/Images/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/Icon-72@2x.png -------------------------------------------------------------------------------- /Resources/Images/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/Icon-Small-50.png -------------------------------------------------------------------------------- /Resources/Images/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/Icon-Small.png -------------------------------------------------------------------------------- /Resources/Images/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/Icon-Small@2x.png -------------------------------------------------------------------------------- /Resources/Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/Icon.png -------------------------------------------------------------------------------- /Resources/Images/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/Icon@2x.png -------------------------------------------------------------------------------- /Resources/Images/bg-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/bg-cell.png -------------------------------------------------------------------------------- /Resources/Images/bg-cell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/bg-cell@2x.png -------------------------------------------------------------------------------- /Resources/Images/bg-textfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/bg-textfield.png -------------------------------------------------------------------------------- /Resources/Images/bg-textfield@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/bg-textfield@2x.png -------------------------------------------------------------------------------- /Resources/Images/bg-textview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/bg-textview.png -------------------------------------------------------------------------------- /Resources/Images/bg-textview@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/bg-textview@2x.png -------------------------------------------------------------------------------- /Resources/Images/bg-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/bg-toolbar.png -------------------------------------------------------------------------------- /Resources/Images/bg-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/bg-toolbar@2x.png -------------------------------------------------------------------------------- /Resources/Images/big-logo-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/big-logo-ipad.png -------------------------------------------------------------------------------- /Resources/Images/big-logo-ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/big-logo-ipad@2x.png -------------------------------------------------------------------------------- /Resources/Images/big-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/big-logo.png -------------------------------------------------------------------------------- /Resources/Images/big-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/big-logo@2x.png -------------------------------------------------------------------------------- /Resources/Images/btn-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/btn-back.png -------------------------------------------------------------------------------- /Resources/Images/btn-back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/btn-back@2x.png -------------------------------------------------------------------------------- /Resources/Images/btn-nav-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/btn-nav-bar.png -------------------------------------------------------------------------------- /Resources/Images/btn-nav-bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/btn-nav-bar@2x.png -------------------------------------------------------------------------------- /Resources/Images/btn-textfield-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/btn-textfield-add.png -------------------------------------------------------------------------------- /Resources/Images/cell-accessory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/cell-accessory.png -------------------------------------------------------------------------------- /Resources/Images/cell-accessory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/cell-accessory@2x.png -------------------------------------------------------------------------------- /Resources/Images/cell-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/cell-delete.png -------------------------------------------------------------------------------- /Resources/Images/cell-delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/cell-delete@2x.png -------------------------------------------------------------------------------- /Resources/Images/cell-sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/cell-sort.png -------------------------------------------------------------------------------- /Resources/Images/cell-sort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/cell-sort@2x.png -------------------------------------------------------------------------------- /Resources/Images/hr-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/hr-line.png -------------------------------------------------------------------------------- /Resources/Images/hr-line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/hr-line@2x.png -------------------------------------------------------------------------------- /Resources/Images/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/iTunesArtwork -------------------------------------------------------------------------------- /Resources/Images/nav-bar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/nav-bar-logo.png -------------------------------------------------------------------------------- /Resources/Images/nav-bar-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/nav-bar-logo@2x.png -------------------------------------------------------------------------------- /Resources/Images/nav-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/nav-bar.png -------------------------------------------------------------------------------- /Resources/Images/nav-bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/nav-bar@2x.png -------------------------------------------------------------------------------- /Resources/Images/tableview-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/tableview-footer.png -------------------------------------------------------------------------------- /Resources/Images/tableview-footer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/tableview-footer@2x.png -------------------------------------------------------------------------------- /Resources/Images/tableview-patern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/tableview-patern.png -------------------------------------------------------------------------------- /Resources/Images/tableview-patern@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/tableview-patern@2x.png -------------------------------------------------------------------------------- /Resources/Images/toolbar-btn-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/toolbar-btn-dark.png -------------------------------------------------------------------------------- /Resources/Images/toolbar-btn-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/toolbar-btn-dark@2x.png -------------------------------------------------------------------------------- /Resources/Images/toolbar-btn-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Images/toolbar-btn-light.png -------------------------------------------------------------------------------- /Resources/Others/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Others/markdown.css -------------------------------------------------------------------------------- /Resources/Xibs/WebViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Resources/Xibs/WebViewController.xib -------------------------------------------------------------------------------- /Screen/Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Screen/Screen.png -------------------------------------------------------------------------------- /Screen/Screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Screen/Screen2.png -------------------------------------------------------------------------------- /Screen/Screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Screen/Screen3.png -------------------------------------------------------------------------------- /Screen/Screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Screen/Screen4.png -------------------------------------------------------------------------------- /Screen/Screen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Screen/Screen5.png -------------------------------------------------------------------------------- /Screen/Screen6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Screen/Screen6.png -------------------------------------------------------------------------------- /Screen/Screen7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Screen/Screen7.png -------------------------------------------------------------------------------- /Vendor/AFOAuth2Client/AFOAuth2Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/AFOAuth2Client/AFOAuth2Client.h -------------------------------------------------------------------------------- /Vendor/AFOAuth2Client/AFOAuth2Client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/AFOAuth2Client/AFOAuth2Client.m -------------------------------------------------------------------------------- /Vendor/BWAFNetworking/BWAFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWAFNetworking/BWAFNetworking.h -------------------------------------------------------------------------------- /Vendor/BWAFNetworking/BWAFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWAFNetworking/BWAFNetworking.m -------------------------------------------------------------------------------- /Vendor/BWAFNetworking/BWAFOAuth2Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWAFNetworking/BWAFOAuth2Client.h -------------------------------------------------------------------------------- /Vendor/BWAFNetworking/BWAFOAuth2Client.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWAFNetworking/BWAFOAuth2Client.m -------------------------------------------------------------------------------- /Vendor/BWDataKit/BWModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWDataKit/BWModel.h -------------------------------------------------------------------------------- /Vendor/BWDataKit/BWModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWDataKit/BWModel.m -------------------------------------------------------------------------------- /Vendor/BWDataKit/BWRemoteModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWDataKit/BWRemoteModel.h -------------------------------------------------------------------------------- /Vendor/BWDataKit/BWRemoteModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWDataKit/BWRemoteModel.m -------------------------------------------------------------------------------- /Vendor/BWDataKit/BWViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWDataKit/BWViewController.h -------------------------------------------------------------------------------- /Vendor/BWDataKit/BWViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWDataKit/BWViewController.m -------------------------------------------------------------------------------- /Vendor/BWObjectMapping/BWObjectMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWObjectMapping/BWObjectMapper.h -------------------------------------------------------------------------------- /Vendor/BWObjectMapping/BWObjectMapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWObjectMapping/BWObjectMapper.m -------------------------------------------------------------------------------- /Vendor/BWObjectMapping/BWObjectMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWObjectMapping/BWObjectMapping.h -------------------------------------------------------------------------------- /Vendor/BWObjectMapping/BWObjectMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWObjectMapping/BWObjectMapping.m -------------------------------------------------------------------------------- /Vendor/BWObjectRouter/BWObjectRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWObjectRouter/BWObjectRouter.h -------------------------------------------------------------------------------- /Vendor/BWObjectRouter/BWObjectRouter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWObjectRouter/BWObjectRouter.m -------------------------------------------------------------------------------- /Vendor/BWObjectRouter/BWObjectRoutes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWObjectRouter/BWObjectRoutes.h -------------------------------------------------------------------------------- /Vendor/BWObjectRouter/BWObjectRoutes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/BWObjectRouter/BWObjectRoutes.m -------------------------------------------------------------------------------- /Vendor/Core/BKBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKBlocks.h -------------------------------------------------------------------------------- /Vendor/Core/BKDeviceAvailability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKDeviceAvailability.h -------------------------------------------------------------------------------- /Vendor/Core/BKDeviceAvailability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKDeviceAvailability.m -------------------------------------------------------------------------------- /Vendor/Core/BKIteratingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKIteratingHelper.h -------------------------------------------------------------------------------- /Vendor/Core/BKIteratingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKIteratingHelper.m -------------------------------------------------------------------------------- /Vendor/Core/BKMacrosDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKMacrosDefinitions.h -------------------------------------------------------------------------------- /Vendor/Core/BKOperationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKOperationHelper.h -------------------------------------------------------------------------------- /Vendor/Core/BKOperationHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKOperationHelper.m -------------------------------------------------------------------------------- /Vendor/Core/BKRunBlockAtDealloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKRunBlockAtDealloc.h -------------------------------------------------------------------------------- /Vendor/Core/BKRunBlockAtDealloc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKRunBlockAtDealloc.m -------------------------------------------------------------------------------- /Vendor/Core/BKToogleValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKToogleValue.h -------------------------------------------------------------------------------- /Vendor/Core/BKToogleValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKToogleValue.m -------------------------------------------------------------------------------- /Vendor/Core/BKUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKUtils.h -------------------------------------------------------------------------------- /Vendor/Core/BKUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BKUtils.m -------------------------------------------------------------------------------- /Vendor/Core/BaseKitCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BaseKitCore.h -------------------------------------------------------------------------------- /Vendor/Core/BaseKitCoreAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/BaseKitCoreAdditions.h -------------------------------------------------------------------------------- /Vendor/Core/NSArray+BaseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSArray+BaseKit.h -------------------------------------------------------------------------------- /Vendor/Core/NSArray+BaseKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSArray+BaseKit.m -------------------------------------------------------------------------------- /Vendor/Core/NSDictionary+BaseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSDictionary+BaseKit.h -------------------------------------------------------------------------------- /Vendor/Core/NSDictionary+BaseKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSDictionary+BaseKit.m -------------------------------------------------------------------------------- /Vendor/Core/NSMutableArray+BaseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSMutableArray+BaseKit.h -------------------------------------------------------------------------------- /Vendor/Core/NSMutableArray+BaseKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSMutableArray+BaseKit.m -------------------------------------------------------------------------------- /Vendor/Core/NSOperationQueue+BaseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSOperationQueue+BaseKit.h -------------------------------------------------------------------------------- /Vendor/Core/NSOperationQueue+BaseKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSOperationQueue+BaseKit.m -------------------------------------------------------------------------------- /Vendor/Core/NSSet+BaseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSSet+BaseKit.h -------------------------------------------------------------------------------- /Vendor/Core/NSSet+BaseKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSSet+BaseKit.m -------------------------------------------------------------------------------- /Vendor/Core/NSString+BaseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSString+BaseKit.h -------------------------------------------------------------------------------- /Vendor/Core/NSString+BaseKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Core/NSString+BaseKit.m -------------------------------------------------------------------------------- /Vendor/Core/deps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Vendor/CoreData/BaseKitCoreData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/CoreData/BaseKitCoreData.h -------------------------------------------------------------------------------- /Vendor/DKPropertyList/DKPropertyList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/DKPropertyList/DKPropertyList.h -------------------------------------------------------------------------------- /Vendor/DKPropertyList/DKPropertyList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/DKPropertyList/DKPropertyList.m -------------------------------------------------------------------------------- /Vendor/FormKit/FKBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKBlocks.h -------------------------------------------------------------------------------- /Vendor/FormKit/FKFormAttributeMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKFormAttributeMapping.h -------------------------------------------------------------------------------- /Vendor/FormKit/FKFormAttributeMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKFormAttributeMapping.m -------------------------------------------------------------------------------- /Vendor/FormKit/FKFormMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKFormMapper.h -------------------------------------------------------------------------------- /Vendor/FormKit/FKFormMapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKFormMapper.m -------------------------------------------------------------------------------- /Vendor/FormKit/FKFormMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKFormMapping.h -------------------------------------------------------------------------------- /Vendor/FormKit/FKFormMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKFormMapping.m -------------------------------------------------------------------------------- /Vendor/FormKit/FKFormModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKFormModel.h -------------------------------------------------------------------------------- /Vendor/FormKit/FKFormModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKFormModel.m -------------------------------------------------------------------------------- /Vendor/FormKit/FKMacrosDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKMacrosDefinitions.h -------------------------------------------------------------------------------- /Vendor/FormKit/FKSectionObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKSectionObject.h -------------------------------------------------------------------------------- /Vendor/FormKit/FKSectionObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FKSectionObject.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKBadgeField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKBadgeField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKBadgeField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKBadgeField.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKButtonField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKButtonField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKButtonField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKButtonField.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKFields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKFields.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKFieldsBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKFieldsBlocks.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKFloatField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKFloatField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKFloatField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKFloatField.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKImageField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKImageField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKImageField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKImageField.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKIntegerField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKIntegerField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKIntegerField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKIntegerField.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKLabelField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKLabelField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKLabelField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKLabelField.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKSimpleField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKSimpleField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKSimpleField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKSimpleField.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKSliderField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKSliderField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKSliderField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKSliderField.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKSwitchField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKSwitchField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKSwitchField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKSwitchField.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKTextField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKTextField.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKTextViewField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKTextViewField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKTextViewField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKTextViewField.m -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKValueViewField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKValueViewField.h -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKValueViewField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/Fields/FKValueViewField.m -------------------------------------------------------------------------------- /Vendor/FormKit/FormKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/FormKit.h -------------------------------------------------------------------------------- /Vendor/FormKit/UITableViewCell+FormKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/UITableViewCell+FormKit.h -------------------------------------------------------------------------------- /Vendor/FormKit/UITableViewCell+FormKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/UITableViewCell+FormKit.m -------------------------------------------------------------------------------- /Vendor/FormKit/UIView+FormKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/UIView+FormKit.h -------------------------------------------------------------------------------- /Vendor/FormKit/UIView+FormKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/FormKit/UIView+FormKit.m -------------------------------------------------------------------------------- /Vendor/MarkdownParser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/MarkdownParser/.gitignore -------------------------------------------------------------------------------- /Vendor/MarkdownParser/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/MarkdownParser/.gitmodules -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/MarkdownParser/App/Default.png -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/MarkdownParser/App/Default@2x.png -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/MarkdownParser/App/main.m -------------------------------------------------------------------------------- /Vendor/MarkdownParser/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/MarkdownParser/LICENSE.md -------------------------------------------------------------------------------- /Vendor/MarkdownParser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/MarkdownParser/README.md -------------------------------------------------------------------------------- /Vendor/MarkdownParser/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NICommonMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NICommonMetrics.h -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NICommonMetrics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NICommonMetrics.m -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIError.h -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIError.m -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIInMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIInMemoryCache.h -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIInMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIInMemoryCache.m -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIOperations.h -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIOperations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIOperations.m -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIPaths.h -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIPaths.m -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIState.h -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIState.m -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIViewRecycler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIViewRecycler.h -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIViewRecycler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NIViewRecycler.m -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NimbusCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/Nimbus/core/src/NimbusCore.h -------------------------------------------------------------------------------- /Vendor/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Vendor/SVProgressHUD/SVProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/SVProgressHUD/SVProgressHUD.m -------------------------------------------------------------------------------- /Vendor/TableKit/Private/TKCellMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/Private/TKCellMapper.h -------------------------------------------------------------------------------- /Vendor/TableKit/Private/TKCellMapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/Private/TKCellMapper.m -------------------------------------------------------------------------------- /Vendor/TableKit/TKBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKBlocks.h -------------------------------------------------------------------------------- /Vendor/TableKit/TKCellAttributeMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKCellAttributeMapping.h -------------------------------------------------------------------------------- /Vendor/TableKit/TKCellAttributeMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKCellAttributeMapping.m -------------------------------------------------------------------------------- /Vendor/TableKit/TKCellMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKCellMapping.h -------------------------------------------------------------------------------- /Vendor/TableKit/TKCellMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKCellMapping.m -------------------------------------------------------------------------------- /Vendor/TableKit/TKDynamicCellMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKDynamicCellMapping.h -------------------------------------------------------------------------------- /Vendor/TableKit/TKDynamicCellMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKDynamicCellMapping.m -------------------------------------------------------------------------------- /Vendor/TableKit/TKListTableModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKListTableModel.h -------------------------------------------------------------------------------- /Vendor/TableKit/TKListTableModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKListTableModel.m -------------------------------------------------------------------------------- /Vendor/TableKit/TKManagedTableModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKManagedTableModel.h -------------------------------------------------------------------------------- /Vendor/TableKit/TKManagedTableModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKManagedTableModel.m -------------------------------------------------------------------------------- /Vendor/TableKit/TKSectionedTableModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKSectionedTableModel.h -------------------------------------------------------------------------------- /Vendor/TableKit/TKSectionedTableModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKSectionedTableModel.m -------------------------------------------------------------------------------- /Vendor/TableKit/TKTableModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKTableModel.h -------------------------------------------------------------------------------- /Vendor/TableKit/TKTableModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TKTableModel.m -------------------------------------------------------------------------------- /Vendor/TableKit/TableKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TableKit/TableKit.h -------------------------------------------------------------------------------- /Vendor/TestFlightSDK1.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TestFlightSDK1.0/README.txt -------------------------------------------------------------------------------- /Vendor/TestFlightSDK1.0/TestFlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TestFlightSDK1.0/TestFlight.h -------------------------------------------------------------------------------- /Vendor/TestFlightSDK1.0/libTestFlight.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/TestFlightSDK1.0/libTestFlight.a -------------------------------------------------------------------------------- /Vendor/UITableView+NXEmptyView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Vendor/View/BKViewBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/BKViewBlocks.h -------------------------------------------------------------------------------- /Vendor/View/BKViewControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/BKViewControllerDelegate.h -------------------------------------------------------------------------------- /Vendor/View/BaseKitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/BaseKitView.h -------------------------------------------------------------------------------- /Vendor/View/BaseKitViewAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/BaseKitViewAdditions.h -------------------------------------------------------------------------------- /Vendor/View/UIBarButtonItem+BaseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UIBarButtonItem+BaseKit.h -------------------------------------------------------------------------------- /Vendor/View/UIBarButtonItem+BaseKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UIBarButtonItem+BaseKit.m -------------------------------------------------------------------------------- /Vendor/View/UITableView+BaseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UITableView+BaseKit.h -------------------------------------------------------------------------------- /Vendor/View/UITableView+BaseKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UITableView+BaseKit.m -------------------------------------------------------------------------------- /Vendor/View/UITableViewCell+BaseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UITableViewCell+BaseKit.h -------------------------------------------------------------------------------- /Vendor/View/UITableViewCell+BaseKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UITableViewCell+BaseKit.m -------------------------------------------------------------------------------- /Vendor/View/UIView+BaseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UIView+BaseKit.h -------------------------------------------------------------------------------- /Vendor/View/UIView+BaseKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UIView+BaseKit.m -------------------------------------------------------------------------------- /Vendor/View/UIView+Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UIView+Debug.h -------------------------------------------------------------------------------- /Vendor/View/UIView+Debug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UIView+Debug.m -------------------------------------------------------------------------------- /Vendor/View/UIViewController+BaseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UIViewController+BaseKit.h -------------------------------------------------------------------------------- /Vendor/View/UIViewController+BaseKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/View/UIViewController+BaseKit.m -------------------------------------------------------------------------------- /Vendor/View/deps: -------------------------------------------------------------------------------- 1 | Core -------------------------------------------------------------------------------- /Vendor/libupskirt/BSDmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/BSDmakefile -------------------------------------------------------------------------------- /Vendor/libupskirt/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/GNUmakefile -------------------------------------------------------------------------------- /Vendor/libupskirt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/LICENSE -------------------------------------------------------------------------------- /Vendor/libupskirt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/README -------------------------------------------------------------------------------- /Vendor/libupskirt/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/array.c -------------------------------------------------------------------------------- /Vendor/libupskirt/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/array.h -------------------------------------------------------------------------------- /Vendor/libupskirt/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/benchmark.c -------------------------------------------------------------------------------- /Vendor/libupskirt/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/buffer.c -------------------------------------------------------------------------------- /Vendor/libupskirt/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/buffer.h -------------------------------------------------------------------------------- /Vendor/libupskirt/expanded_markdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/expanded_markdown.sh -------------------------------------------------------------------------------- /Vendor/libupskirt/kilt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/kilt.c -------------------------------------------------------------------------------- /Vendor/libupskirt/lace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/lace.c -------------------------------------------------------------------------------- /Vendor/libupskirt/markdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/markdown.c -------------------------------------------------------------------------------- /Vendor/libupskirt/markdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/markdown.h -------------------------------------------------------------------------------- /Vendor/libupskirt/renderers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/renderers.c -------------------------------------------------------------------------------- /Vendor/libupskirt/renderers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/HEAD/Vendor/libupskirt/renderers.h --------------------------------------------------------------------------------