gitextract_y1n92rby/ ├── .gitignore ├── .travis.yml ├── APACHE-LICENSE-2.0.txt ├── LICENSE ├── NOTICE ├── README.md ├── composer.json ├── documentation/ │ ├── ApiIndex.md │ ├── Evernote-Client.md │ ├── Getting_Started.md │ └── Migration.md ├── phpunit.xml.dist ├── sample/ │ ├── client/ │ │ ├── add_resource.php │ │ ├── create_note.php │ │ ├── delete_note.php │ │ ├── find_notes.php │ │ ├── list_notebooks.php │ │ ├── move_note.php │ │ ├── reminders.php │ │ ├── replace_note.php │ │ └── share_note.php │ └── oauth/ │ └── index.php ├── src/ │ ├── EDAM/ │ │ ├── Error/ │ │ │ └── Types.php │ │ ├── Limits/ │ │ │ └── Types.php │ │ ├── NoteStore/ │ │ │ ├── NoteStore.php │ │ │ └── Types.php │ │ ├── Types/ │ │ │ └── Types.php │ │ └── UserStore/ │ │ ├── Types.php │ │ └── UserStore.php │ ├── Evernote/ │ │ ├── AdvancedClient.php │ │ ├── Auth/ │ │ │ └── OauthHandler.php │ │ ├── Client.php │ │ ├── Enml/ │ │ │ ├── CSSInliner/ │ │ │ │ ├── CssInlinerInterface.php │ │ │ │ └── CssToInlineStyles.php │ │ │ ├── Converter/ │ │ │ │ ├── EnmlConverterInterface.php │ │ │ │ ├── EnmlToHtmlConverter.php │ │ │ │ ├── HtmlConverterInterface.php │ │ │ │ ├── HtmlToEnmlConverter.php │ │ │ │ ├── PlainTextToEnmlConverter.php │ │ │ │ ├── enml2html.xslt │ │ │ │ └── html2enml.xslt │ │ │ └── HtmlCleaner/ │ │ │ ├── HtmlCleanerInterface.php │ │ │ └── HtmlPurifier.php │ │ ├── Exception/ │ │ │ ├── AuthExpiredException.php │ │ │ ├── AuthorizationDeniedException.php │ │ │ ├── BadDataFormatException.php │ │ │ ├── DataConflictException.php │ │ │ ├── DataRequiredException.php │ │ │ ├── EnmlValidationException.php │ │ │ ├── ExceptionFactory.php │ │ │ ├── InternalErrorException.php │ │ │ ├── InvalidAuthException.php │ │ │ ├── LengthTooLongException.php │ │ │ ├── LengthTooShortException.php │ │ │ ├── LimitReachedException.php │ │ │ ├── NotFoundNoteException.php │ │ │ ├── NotFoundNotebookException.php │ │ │ ├── NotFoundSharedNotebookException.php │ │ │ ├── PermissionDeniedException.php │ │ │ ├── QuotaReachedException.php │ │ │ ├── RateLimitReachedException.php │ │ │ ├── ShardUnavailableException.php │ │ │ ├── TakenDownException.php │ │ │ ├── TooFewException.php │ │ │ ├── TooManyException.php │ │ │ ├── UnknownException.php │ │ │ └── UnsupportedOperationException.php │ │ ├── Factory/ │ │ │ └── ThriftClientFactory.php │ │ ├── File/ │ │ │ ├── File.php │ │ │ └── FileInterface.php │ │ ├── Model/ │ │ │ ├── EnmlNoteContent.php │ │ │ ├── HtmlNoteContent.php │ │ │ ├── Note.php │ │ │ ├── NoteContent.php │ │ │ ├── NoteContentInterface.php │ │ │ ├── Notebook.php │ │ │ ├── PlainTextNoteContent.php │ │ │ ├── Resource.php │ │ │ ├── Search.php │ │ │ └── SearchResult.php │ │ └── Store/ │ │ └── Store.php │ ├── Thrift/ │ │ ├── Base/ │ │ │ └── TBase.php │ │ ├── ClassLoader/ │ │ │ └── ThriftClassLoader.php │ │ ├── Exception/ │ │ │ ├── TApplicationException.php │ │ │ ├── TException.php │ │ │ ├── TProtocolException.php │ │ │ └── TTransportException.php │ │ ├── Factory/ │ │ │ ├── TBinaryProtocolFactory.php │ │ │ ├── TCompactProtocolFactory.php │ │ │ ├── TJSONProtocolFactory.php │ │ │ ├── TProtocolFactory.php │ │ │ ├── TStringFuncFactory.php │ │ │ └── TTransportFactory.php │ │ ├── Protocol/ │ │ │ ├── JSON/ │ │ │ │ ├── BaseContext.php │ │ │ │ ├── ListContext.php │ │ │ │ ├── LookaheadReader.php │ │ │ │ └── PairContext.php │ │ │ ├── TBinaryProtocol.php │ │ │ ├── TBinaryProtocolAccelerated.php │ │ │ ├── TCompactProtocol.php │ │ │ ├── TJSONProtocol.php │ │ │ └── TProtocol.php │ │ ├── Serializer/ │ │ │ └── TBinarySerializer.php │ │ ├── Server/ │ │ │ ├── TForkingServer.php │ │ │ ├── TServer.php │ │ │ ├── TServerSocket.php │ │ │ ├── TServerTransport.php │ │ │ └── TSimpleServer.php │ │ ├── StringFunc/ │ │ │ ├── Core.php │ │ │ ├── Mbstring.php │ │ │ └── TStringFunc.php │ │ ├── Transport/ │ │ │ ├── TBufferedTransport.php │ │ │ ├── TFramedTransport.php │ │ │ ├── THttpClient.php │ │ │ ├── TMemoryBuffer.php │ │ │ ├── TNullTransport.php │ │ │ ├── TPhpStream.php │ │ │ ├── TSocket.php │ │ │ ├── TSocketPool.php │ │ │ └── TTransport.php │ │ └── Type/ │ │ ├── TConstant.php │ │ ├── TMessageType.php │ │ └── TType.php │ └── autoload.php └── tests/ ├── Evernote/ │ └── Tests/ │ ├── ClientTest.php │ └── Factory/ │ └── ThriftClientFactoryMock.php ├── bootstrap.php └── fixtures/ ├── note/ │ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_1d9fc47121ec77f859917916d8d773c44190b332 │ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_4308453c30010f6fddcfcbf282b8cd29e44af0a1 │ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_73b11960aeaa2ba866b406c2a93ed03f16db36d9 │ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_8d241b577460159e730d3b82088ce127583e2bec │ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_9577897cad7bf1e37f2606087f3f693f47506bd3 │ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_a99bcc7351d22c34ea3a721ee456bd94de037d8c │ ├── authenticateToSharedNotebook_BUSINESS_ADMIN_TOKEN_c20b1b0b4a29805231df016645ecd8d10df5f482 │ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_3e6b2af694337e2953fccfd591ac7a23ac9cc541 │ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_530966c9d987f0a33eb4aae4795088981d09de2d │ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_98109d118517ebeb7ada77c9db5ab71341f7590f │ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_9cf7cf916a80d10d4e4eeb62398dd60ce497d607 │ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_d1901257919570d4c4cc1f2fc47fc1a97327fd92 │ ├── authenticateToSharedNotebook_BUSINESS_USER_TOKEN_dda1101e9822fbd8d1a1dbeb09df9045e2cd7a6a │ ├── authenticateToSharedNotebook_REGULAR_USER_TOKEN_ab05ad6f7147221284dae09f8170c8e57ec73287 │ ├── getSharedNotebookByAuth_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1 │ ├── getSharedNotebookByAuth_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3 │ ├── getSharedNotebookByAuth_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1 │ ├── listLinkedNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1 │ ├── listLinkedNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3 │ ├── listLinkedNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1 │ ├── listNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1 │ ├── listNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3 │ ├── listNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1 │ ├── listSharedNotebooks_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1 │ ├── listSharedNotebooks_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3 │ └── listSharedNotebooks_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1 └── user/ ├── authenticateToBusiness_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1 ├── authenticateToBusiness_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3 ├── getNoteStoreUrl_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1 ├── getNoteStoreUrl_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3 ├── getNoteStoreUrl_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1 ├── getUser_BUSINESS_ADMIN_TOKEN_66e99a38209989ca7ee128dce8bea5e7dbb0d7e1 ├── getUser_BUSINESS_USER_TOKEN_5da9c2159827f263c2b24e42047718b6607b17b3 └── getUser_REGULAR_USER_TOKEN_eebddce8d5725a83279021a0b711490bc4b4d2e1