├── .gitignore ├── .htaccess ├── README.md ├── REQUIREMENTS.md ├── UPDATE-mysql.sql ├── UPDATE-sqlite.sql ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Elasticsearch.php │ ├── Error404.php │ ├── Evernote.php │ ├── Extension.php │ ├── Feeds.php │ ├── Fever.php │ ├── Folders.php │ ├── Home.php │ ├── Instagram.php │ ├── Item.php │ ├── Items.php │ ├── Login.php │ ├── Logout.php │ ├── Member.php │ ├── Members.php │ ├── Msapplication.php │ ├── Password.php │ ├── Pinboard.php │ ├── Profile.php │ ├── Proxy.php │ ├── Purge.php │ ├── Refresh.php │ ├── Register.php │ ├── Settings.php │ ├── Setup.php │ ├── Share.php │ ├── Shortcuts.php │ ├── Starred.php │ ├── Statistics.php │ ├── Subscriptions.php │ └── index.html ├── database │ ├── index.html │ ├── installation-mysql.sql │ ├── installation-sqlite.sql │ ├── update-mysql-1.0.sql │ ├── update-mysql-2.0.sql │ ├── update-mysql-2.1.sql │ ├── update-mysql-3.0.sql │ ├── update-mysql-3.1.sql │ ├── update-mysql-3.2.sql │ ├── update-mysql-3.3.5.sql │ ├── update-mysql-3.3.sql │ ├── update-mysql-3.4.0.sql │ ├── update-mysql-3.4.2.sql │ ├── update-mysql-3.4.3.sql │ ├── update-mysql-3.4.7.sql │ ├── update-mysql-3.5.4.sql │ ├── update-sqlite-1.0.sql │ ├── update-sqlite-2.0.sql │ ├── update-sqlite-2.1.sql │ ├── update-sqlite-3.0.sql │ ├── update-sqlite-3.1.sql │ ├── update-sqlite-3.2.sql │ ├── update-sqlite-3.3.5.sql │ ├── update-sqlite-3.3.sql │ ├── update-sqlite-3.4.0.sql │ ├── update-sqlite-3.4.2.sql │ ├── update-sqlite-3.4.3.sql │ ├── update-sqlite-3.4.7.sql │ └── update-sqlite-3.5.4.sql ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── index.html │ └── readerself_helper.php ├── hooks │ ├── index.html │ └── readerself_hook.php ├── index.html ├── language │ ├── en │ │ ├── index.html │ │ └── readerself_lang.php │ ├── fr │ │ ├── index.html │ │ └── readerself_lang.php │ └── zh-CN │ │ ├── index.html │ │ └── readerself_lang.php ├── libraries │ ├── Analyzer_library.php │ ├── Axipi_session.php │ ├── Elasticsearch_library.php │ ├── Readerself_library.php │ └── index.html ├── models │ ├── Readerself_model.php │ └── index.html └── views │ ├── _html.php │ ├── _json.php │ ├── _opml.php │ ├── _plain.php │ ├── elasticsearch_form.php │ ├── error404_index.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── evernote_create.php │ ├── evernote_create_confirm.php │ ├── evernote_index.php │ ├── feeds_delete.php │ ├── feeds_export.php │ ├── feeds_feedly.php │ ├── feeds_index.php │ ├── feeds_read.php │ ├── feeds_subscribe.php │ ├── feeds_update.php │ ├── fever_configure.php │ ├── folders_create.php │ ├── folders_delete.php │ ├── folders_index.php │ ├── folders_read.php │ ├── folders_update.php │ ├── home_error.php │ ├── home_index.php │ ├── index.html │ ├── instagram_index.php │ ├── item.php │ ├── item_email.php │ ├── item_email_confirm.php │ ├── item_expand.php │ ├── items_begin.php │ ├── login_index.php │ ├── member_error.php │ ├── member_index.php │ ├── members_delete.php │ ├── members_index.php │ ├── members_update.php │ ├── password_email.php │ ├── password_index.php │ ├── password_token.php │ ├── pinboard_configure.php │ ├── profile_connections.php │ ├── profile_delete.php │ ├── profile_index.php │ ├── register_index.php │ ├── settings_goodies.php │ ├── settings_index.php │ ├── settings_other.php │ ├── settings_update.php │ ├── setup_config.php │ ├── setup_confirm.php │ ├── setup_database.php │ ├── setup_index.php │ ├── share_email.php │ ├── shortcuts.php │ ├── starred_import.php │ ├── starred_import_done.php │ ├── statistics_index.php │ ├── subscriptions_create.php │ ├── subscriptions_delete.php │ ├── subscriptions_export.php │ ├── subscriptions_import.php │ ├── subscriptions_index.php │ ├── subscriptions_read.php │ └── subscriptions_update.php ├── browserconfig.xml ├── favicon.gif ├── favicon.ico ├── index.php ├── license-codeigniter.txt ├── license-feedwriter.txt ├── license-readerself.txt ├── license-simplepie.txt ├── manifest.json ├── medias ├── evernote_activate_api_key.png ├── evernote_get_api_key.png ├── evernote_settings.png ├── index.html ├── instagram_register_details.png ├── instagram_register_security.png ├── instagram_settings.png ├── readerself_128x128.png ├── readerself_150x150.png ├── readerself_16x16.png ├── readerself_200x200.png ├── readerself_250x250.png ├── readerself_310x150.png ├── readerself_310x310.png ├── readerself_48x48.png └── readerself_70x70.png ├── robots.txt ├── scripts ├── _html.js ├── elasticsearch.js ├── home.js ├── index.html ├── login.js ├── member.js ├── password.js ├── profile.js ├── register.js ├── settings.js └── setup.js ├── styles ├── _html.css └── index.html ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── en │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ ├── fr │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ ├── index.html │ └── zh-CN │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ ├── Jquery.php │ └── index.html ├── thirdparty ├── evernote │ ├── Evernote │ │ └── Client.php │ ├── Thrift.php │ ├── autoload.php │ ├── ext │ │ └── thrift_protocol │ │ │ ├── config.m4 │ │ │ ├── config.w32 │ │ │ ├── php_thrift_protocol.cpp │ │ │ └── php_thrift_protocol.h │ ├── packages │ │ ├── Errors │ │ │ └── Errors_types.php │ │ ├── Limits │ │ │ ├── Limits_constants.php │ │ │ └── Limits_types.php │ │ ├── NoteStore │ │ │ ├── NoteStore.php │ │ │ └── NoteStore_types.php │ │ ├── Types │ │ │ ├── Types_constants.php │ │ │ └── Types_types.php │ │ └── UserStore │ │ │ ├── UserStore.php │ │ │ ├── UserStore_constants.php │ │ │ └── UserStore_types.php │ ├── protocol │ │ ├── TBinaryProtocol.php │ │ └── TProtocol.php │ └── transport │ │ ├── TBufferedTransport.php │ │ ├── THttpClient.php │ │ └── TTransport.php ├── facebook │ ├── Authentication │ │ ├── AccessToken.php │ │ ├── AccessTokenMetadata.php │ │ └── OAuth2Client.php │ ├── Exceptions │ │ ├── FacebookAuthenticationException.php │ │ ├── FacebookAuthorizationException.php │ │ ├── FacebookClientException.php │ │ ├── FacebookOtherException.php │ │ ├── FacebookResponseException.php │ │ ├── FacebookSDKException.php │ │ ├── FacebookServerException.php │ │ └── FacebookThrottleException.php │ ├── Facebook.php │ ├── FacebookApp.php │ ├── FacebookBatchRequest.php │ ├── FacebookBatchResponse.php │ ├── FacebookClient.php │ ├── FacebookRequest.php │ ├── FacebookResponse.php │ ├── FileUpload │ │ ├── FacebookFile.php │ │ ├── FacebookVideo.php │ │ └── Mimetypes.php │ ├── GraphNodes │ │ ├── Collection.php │ │ ├── GraphAchievement.php │ │ ├── GraphAlbum.php │ │ ├── GraphApplication.php │ │ ├── GraphCoverPhoto.php │ │ ├── GraphEdge.php │ │ ├── GraphEvent.php │ │ ├── GraphGroup.php │ │ ├── GraphList.php │ │ ├── GraphLocation.php │ │ ├── GraphNode.php │ │ ├── GraphNodeFactory.php │ │ ├── GraphObject.php │ │ ├── GraphObjectFactory.php │ │ ├── GraphPage.php │ │ ├── GraphPicture.php │ │ ├── GraphSessionInfo.php │ │ └── GraphUser.php │ ├── Helpers │ │ ├── FacebookCanvasHelper.php │ │ ├── FacebookJavaScriptHelper.php │ │ ├── FacebookPageTabHelper.php │ │ ├── FacebookRedirectLoginHelper.php │ │ └── FacebookSignedRequestFromInputHelper.php │ ├── Http │ │ ├── GraphRawResponse.php │ │ ├── RequestBodyInterface.php │ │ ├── RequestBodyMultipart.php │ │ └── RequestBodyUrlEncoded.php │ ├── HttpClients │ │ ├── FacebookCurl.php │ │ ├── FacebookCurlHttpClient.php │ │ ├── FacebookGuzzleHttpClient.php │ │ ├── FacebookHttpClientInterface.php │ │ ├── FacebookStream.php │ │ ├── FacebookStreamHttpClient.php │ │ └── certs │ │ │ └── DigiCertHighAssuranceEVRootCA.pem │ ├── PersistentData │ │ ├── FacebookMemoryPersistentDataHandler.php │ │ ├── FacebookSessionPersistentDataHandler.php │ │ └── PersistentDataInterface.php │ ├── PseudoRandomString │ │ ├── McryptPseudoRandomStringGenerator.php │ │ ├── OpenSslPseudoRandomStringGenerator.php │ │ ├── PseudoRandomStringGeneratorInterface.php │ │ ├── PseudoRandomStringGeneratorTrait.php │ │ └── UrandomPseudoRandomStringGenerator.php │ ├── SignedRequest.php │ ├── Url │ │ ├── FacebookUrlDetectionHandler.php │ │ ├── FacebookUrlManipulator.php │ │ └── UrlDetectionInterface.php │ └── autoload.php ├── feedwriter │ ├── ATOM.php │ ├── COPYING │ ├── Feed.php │ ├── Item.php │ ├── README │ ├── README.txt │ ├── RSS1.php │ ├── RSS2.php │ ├── composer.json │ └── index.html ├── html5-desktop-notifications │ └── desktop-notify-min.js ├── index.html ├── jquery │ ├── index.html │ ├── jquery.cookie.min.js │ ├── jquery.min.js │ ├── jquery.scrollto.min.js │ ├── jquery.timeago.en.js │ ├── jquery.timeago.fr.js │ ├── jquery.timeago.js │ └── jquery.touchswipe.min.js ├── mdl │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── gulpfile.babel.js │ ├── gulpfile.js │ ├── material.css │ ├── material.js │ ├── material.min.css │ ├── material.min.css.map │ ├── material.min.js │ ├── material.min.js.map │ └── package.json └── simplepie │ ├── SimplePie.php │ ├── SimplePie │ ├── Author.php │ ├── Cache.php │ ├── Cache │ │ ├── Base.php │ │ ├── DB.php │ │ ├── File.php │ │ ├── Memcache.php │ │ ├── MySQL.php │ │ └── index.html │ ├── Caption.php │ ├── Category.php │ ├── Content │ │ ├── Type │ │ │ ├── Sniffer.php │ │ │ └── index.html │ │ └── index.html │ ├── Copyright.php │ ├── Core.php │ ├── Credit.php │ ├── Decode │ │ ├── HTML │ │ │ ├── Entities.php │ │ │ └── index.html │ │ └── index.html │ ├── Enclosure.php │ ├── Exception.php │ ├── File.php │ ├── HTTP │ │ ├── Parser.php │ │ └── index.html │ ├── IRI.php │ ├── Item.php │ ├── Locator.php │ ├── Misc.php │ ├── Net │ │ ├── IPv6.php │ │ └── index.html │ ├── Parse │ │ ├── Date.php │ │ └── index.html │ ├── Parser.php │ ├── Rating.php │ ├── Registry.php │ ├── Restriction.php │ ├── Sanitize.php │ ├── Source.php │ ├── XML │ │ ├── Declaration │ │ │ ├── Parser.php │ │ │ └── index.html │ │ └── index.html │ ├── gzdecode.php │ └── index.html │ ├── autoloader.php │ ├── idn │ ├── LICENCE.txt │ ├── ReadMe.txt │ ├── idna_convert.class.php │ ├── index.html │ └── npdata.ser │ └── index.html ├── update └── .htaccess └── web.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/README.md -------------------------------------------------------------------------------- /REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/REQUIREMENTS.md -------------------------------------------------------------------------------- /UPDATE-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/UPDATE-mysql.sql -------------------------------------------------------------------------------- /UPDATE-sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/UPDATE-sqlite.sql -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/.htaccess -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/cache/.htaccess -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/memcached.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/Elasticsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Elasticsearch.php -------------------------------------------------------------------------------- /application/controllers/Error404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Error404.php -------------------------------------------------------------------------------- /application/controllers/Evernote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Evernote.php -------------------------------------------------------------------------------- /application/controllers/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Extension.php -------------------------------------------------------------------------------- /application/controllers/Feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Feeds.php -------------------------------------------------------------------------------- /application/controllers/Fever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Fever.php -------------------------------------------------------------------------------- /application/controllers/Folders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Folders.php -------------------------------------------------------------------------------- /application/controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Home.php -------------------------------------------------------------------------------- /application/controllers/Instagram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Instagram.php -------------------------------------------------------------------------------- /application/controllers/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Item.php -------------------------------------------------------------------------------- /application/controllers/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Items.php -------------------------------------------------------------------------------- /application/controllers/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Login.php -------------------------------------------------------------------------------- /application/controllers/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Logout.php -------------------------------------------------------------------------------- /application/controllers/Member.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Member.php -------------------------------------------------------------------------------- /application/controllers/Members.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Members.php -------------------------------------------------------------------------------- /application/controllers/Msapplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Msapplication.php -------------------------------------------------------------------------------- /application/controllers/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Password.php -------------------------------------------------------------------------------- /application/controllers/Pinboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Pinboard.php -------------------------------------------------------------------------------- /application/controllers/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Profile.php -------------------------------------------------------------------------------- /application/controllers/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Proxy.php -------------------------------------------------------------------------------- /application/controllers/Purge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Purge.php -------------------------------------------------------------------------------- /application/controllers/Refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Refresh.php -------------------------------------------------------------------------------- /application/controllers/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Register.php -------------------------------------------------------------------------------- /application/controllers/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Settings.php -------------------------------------------------------------------------------- /application/controllers/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Setup.php -------------------------------------------------------------------------------- /application/controllers/Share.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Share.php -------------------------------------------------------------------------------- /application/controllers/Shortcuts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Shortcuts.php -------------------------------------------------------------------------------- /application/controllers/Starred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Starred.php -------------------------------------------------------------------------------- /application/controllers/Statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Statistics.php -------------------------------------------------------------------------------- /application/controllers/Subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/Subscriptions.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/index.html -------------------------------------------------------------------------------- /application/database/installation-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/installation-mysql.sql -------------------------------------------------------------------------------- /application/database/installation-sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/installation-sqlite.sql -------------------------------------------------------------------------------- /application/database/update-mysql-1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-1.0.sql -------------------------------------------------------------------------------- /application/database/update-mysql-2.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-2.0.sql -------------------------------------------------------------------------------- /application/database/update-mysql-2.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-2.1.sql -------------------------------------------------------------------------------- /application/database/update-mysql-3.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-3.0.sql -------------------------------------------------------------------------------- /application/database/update-mysql-3.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-3.1.sql -------------------------------------------------------------------------------- /application/database/update-mysql-3.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-3.2.sql -------------------------------------------------------------------------------- /application/database/update-mysql-3.3.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-3.3.5.sql -------------------------------------------------------------------------------- /application/database/update-mysql-3.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-3.3.sql -------------------------------------------------------------------------------- /application/database/update-mysql-3.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-3.4.0.sql -------------------------------------------------------------------------------- /application/database/update-mysql-3.4.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-3.4.2.sql -------------------------------------------------------------------------------- /application/database/update-mysql-3.4.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-3.4.3.sql -------------------------------------------------------------------------------- /application/database/update-mysql-3.4.7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-mysql-3.4.7.sql -------------------------------------------------------------------------------- /application/database/update-mysql-3.5.4.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE members ADD mbr_auth_ldap TINYINT(1) NOT NULL DEFAULT '0'; -------------------------------------------------------------------------------- /application/database/update-sqlite-1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-1.0.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-2.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-2.0.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-2.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-2.1.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-3.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-3.0.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-3.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-3.1.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-3.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-3.2.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-3.3.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-3.3.5.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-3.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-3.3.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-3.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-3.4.0.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-3.4.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-3.4.2.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-3.4.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-3.4.3.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-3.4.7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/database/update-sqlite-3.4.7.sql -------------------------------------------------------------------------------- /application/database/update-sqlite-3.5.4.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE members ADD COLUMN mbr_auth_ldap TINYINT(1) NOT NULL DEFAULT '0'; -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/errors/error_404.php -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/errors/error_db.php -------------------------------------------------------------------------------- /application/errors/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/errors/error_general.php -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/errors/error_php.php -------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/errors/index.html -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/helpers/readerself_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/helpers/readerself_helper.php -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/hooks/readerself_hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/hooks/readerself_hook.php -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/language/en/index.html -------------------------------------------------------------------------------- /application/language/en/readerself_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/language/en/readerself_lang.php -------------------------------------------------------------------------------- /application/language/fr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/language/fr/index.html -------------------------------------------------------------------------------- /application/language/fr/readerself_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/language/fr/readerself_lang.php -------------------------------------------------------------------------------- /application/language/zh-CN/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/language/zh-CN/index.html -------------------------------------------------------------------------------- /application/language/zh-CN/readerself_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/language/zh-CN/readerself_lang.php -------------------------------------------------------------------------------- /application/libraries/Analyzer_library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/libraries/Analyzer_library.php -------------------------------------------------------------------------------- /application/libraries/Axipi_session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/libraries/Axipi_session.php -------------------------------------------------------------------------------- /application/libraries/Elasticsearch_library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/libraries/Elasticsearch_library.php -------------------------------------------------------------------------------- /application/libraries/Readerself_library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/libraries/Readerself_library.php -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/models/Readerself_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/models/Readerself_model.php -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/views/_html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/_html.php -------------------------------------------------------------------------------- /application/views/_json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/_json.php -------------------------------------------------------------------------------- /application/views/_opml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/_opml.php -------------------------------------------------------------------------------- /application/views/_plain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/_plain.php -------------------------------------------------------------------------------- /application/views/elasticsearch_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/elasticsearch_form.php -------------------------------------------------------------------------------- /application/views/error404_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/error404_index.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/cli/error_404.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/cli/error_db.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/cli/error_general.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/cli/error_php.php -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/cli/index.html -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/html/error_404.php -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/html/error_db.php -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/html/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/html/error_general.php -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/html/error_php.php -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/html/index.html -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/errors/index.html -------------------------------------------------------------------------------- /application/views/evernote_create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/evernote_create.php -------------------------------------------------------------------------------- /application/views/evernote_create_confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/evernote_create_confirm.php -------------------------------------------------------------------------------- /application/views/evernote_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/evernote_index.php -------------------------------------------------------------------------------- /application/views/feeds_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/feeds_delete.php -------------------------------------------------------------------------------- /application/views/feeds_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/feeds_export.php -------------------------------------------------------------------------------- /application/views/feeds_feedly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/feeds_feedly.php -------------------------------------------------------------------------------- /application/views/feeds_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/feeds_index.php -------------------------------------------------------------------------------- /application/views/feeds_read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/feeds_read.php -------------------------------------------------------------------------------- /application/views/feeds_subscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/feeds_subscribe.php -------------------------------------------------------------------------------- /application/views/feeds_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/feeds_update.php -------------------------------------------------------------------------------- /application/views/fever_configure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/fever_configure.php -------------------------------------------------------------------------------- /application/views/folders_create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/folders_create.php -------------------------------------------------------------------------------- /application/views/folders_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/folders_delete.php -------------------------------------------------------------------------------- /application/views/folders_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/folders_index.php -------------------------------------------------------------------------------- /application/views/folders_read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/folders_read.php -------------------------------------------------------------------------------- /application/views/folders_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/folders_update.php -------------------------------------------------------------------------------- /application/views/home_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/home_error.php -------------------------------------------------------------------------------- /application/views/home_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/home_index.php -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/instagram_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/instagram_index.php -------------------------------------------------------------------------------- /application/views/item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/item.php -------------------------------------------------------------------------------- /application/views/item_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/item_email.php -------------------------------------------------------------------------------- /application/views/item_email_confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/item_email_confirm.php -------------------------------------------------------------------------------- /application/views/item_expand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/item_expand.php -------------------------------------------------------------------------------- /application/views/items_begin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/items_begin.php -------------------------------------------------------------------------------- /application/views/login_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/login_index.php -------------------------------------------------------------------------------- /application/views/member_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/member_error.php -------------------------------------------------------------------------------- /application/views/member_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/member_index.php -------------------------------------------------------------------------------- /application/views/members_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/members_delete.php -------------------------------------------------------------------------------- /application/views/members_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/members_index.php -------------------------------------------------------------------------------- /application/views/members_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/members_update.php -------------------------------------------------------------------------------- /application/views/password_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/password_email.php -------------------------------------------------------------------------------- /application/views/password_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/password_index.php -------------------------------------------------------------------------------- /application/views/password_token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/password_token.php -------------------------------------------------------------------------------- /application/views/pinboard_configure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/pinboard_configure.php -------------------------------------------------------------------------------- /application/views/profile_connections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/profile_connections.php -------------------------------------------------------------------------------- /application/views/profile_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/profile_delete.php -------------------------------------------------------------------------------- /application/views/profile_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/profile_index.php -------------------------------------------------------------------------------- /application/views/register_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/register_index.php -------------------------------------------------------------------------------- /application/views/settings_goodies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/settings_goodies.php -------------------------------------------------------------------------------- /application/views/settings_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/settings_index.php -------------------------------------------------------------------------------- /application/views/settings_other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/settings_other.php -------------------------------------------------------------------------------- /application/views/settings_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/settings_update.php -------------------------------------------------------------------------------- /application/views/setup_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/setup_config.php -------------------------------------------------------------------------------- /application/views/setup_confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/setup_confirm.php -------------------------------------------------------------------------------- /application/views/setup_database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/setup_database.php -------------------------------------------------------------------------------- /application/views/setup_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/setup_index.php -------------------------------------------------------------------------------- /application/views/share_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/share_email.php -------------------------------------------------------------------------------- /application/views/shortcuts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/shortcuts.php -------------------------------------------------------------------------------- /application/views/starred_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/starred_import.php -------------------------------------------------------------------------------- /application/views/starred_import_done.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/starred_import_done.php -------------------------------------------------------------------------------- /application/views/statistics_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/statistics_index.php -------------------------------------------------------------------------------- /application/views/subscriptions_create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/subscriptions_create.php -------------------------------------------------------------------------------- /application/views/subscriptions_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/subscriptions_delete.php -------------------------------------------------------------------------------- /application/views/subscriptions_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/subscriptions_export.php -------------------------------------------------------------------------------- /application/views/subscriptions_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/subscriptions_import.php -------------------------------------------------------------------------------- /application/views/subscriptions_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/subscriptions_index.php -------------------------------------------------------------------------------- /application/views/subscriptions_read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/subscriptions_read.php -------------------------------------------------------------------------------- /application/views/subscriptions_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/application/views/subscriptions_update.php -------------------------------------------------------------------------------- /browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /favicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/favicon.gif -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/index.php -------------------------------------------------------------------------------- /license-codeigniter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/license-codeigniter.txt -------------------------------------------------------------------------------- /license-feedwriter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/license-feedwriter.txt -------------------------------------------------------------------------------- /license-readerself.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/license-readerself.txt -------------------------------------------------------------------------------- /license-simplepie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/license-simplepie.txt -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/manifest.json -------------------------------------------------------------------------------- /medias/evernote_activate_api_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/evernote_activate_api_key.png -------------------------------------------------------------------------------- /medias/evernote_get_api_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/evernote_get_api_key.png -------------------------------------------------------------------------------- /medias/evernote_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/evernote_settings.png -------------------------------------------------------------------------------- /medias/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/index.html -------------------------------------------------------------------------------- /medias/instagram_register_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/instagram_register_details.png -------------------------------------------------------------------------------- /medias/instagram_register_security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/instagram_register_security.png -------------------------------------------------------------------------------- /medias/instagram_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/instagram_settings.png -------------------------------------------------------------------------------- /medias/readerself_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/readerself_128x128.png -------------------------------------------------------------------------------- /medias/readerself_150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/readerself_150x150.png -------------------------------------------------------------------------------- /medias/readerself_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/readerself_16x16.png -------------------------------------------------------------------------------- /medias/readerself_200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/readerself_200x200.png -------------------------------------------------------------------------------- /medias/readerself_250x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/readerself_250x250.png -------------------------------------------------------------------------------- /medias/readerself_310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/readerself_310x150.png -------------------------------------------------------------------------------- /medias/readerself_310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/readerself_310x310.png -------------------------------------------------------------------------------- /medias/readerself_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/readerself_48x48.png -------------------------------------------------------------------------------- /medias/readerself_70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/medias/readerself_70x70.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /scripts/_html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/scripts/_html.js -------------------------------------------------------------------------------- /scripts/elasticsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/scripts/elasticsearch.js -------------------------------------------------------------------------------- /scripts/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/scripts/home.js -------------------------------------------------------------------------------- /scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/scripts/index.html -------------------------------------------------------------------------------- /scripts/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/scripts/login.js -------------------------------------------------------------------------------- /scripts/member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/scripts/member.js -------------------------------------------------------------------------------- /scripts/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/scripts/password.js -------------------------------------------------------------------------------- /scripts/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/scripts/profile.js -------------------------------------------------------------------------------- /scripts/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/scripts/register.js -------------------------------------------------------------------------------- /scripts/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/scripts/settings.js -------------------------------------------------------------------------------- /scripts/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/scripts/setup.js -------------------------------------------------------------------------------- /styles/_html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/styles/_html.css -------------------------------------------------------------------------------- /styles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/styles/index.html -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/.htaccess -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Log.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/compat/hash.php -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/compat/index.html -------------------------------------------------------------------------------- /system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/compat/password.php -------------------------------------------------------------------------------- /system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/compat/standard.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/ibase/ibase_driver.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/ibase/ibase_forge.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/ibase/ibase_result.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/ibase/ibase_utility.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_informix_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_informix_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_oci_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_oci_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlite3/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlite3/sqlite3_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlite3/sqlite3_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlite3/sqlite3_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlite3/sqlite3_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/en/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/calendar_lang.php -------------------------------------------------------------------------------- /system/language/en/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/date_lang.php -------------------------------------------------------------------------------- /system/language/en/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/db_lang.php -------------------------------------------------------------------------------- /system/language/en/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/email_lang.php -------------------------------------------------------------------------------- /system/language/en/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/en/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/ftp_lang.php -------------------------------------------------------------------------------- /system/language/en/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/imglib_lang.php -------------------------------------------------------------------------------- /system/language/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/index.html -------------------------------------------------------------------------------- /system/language/en/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/migration_lang.php -------------------------------------------------------------------------------- /system/language/en/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/number_lang.php -------------------------------------------------------------------------------- /system/language/en/pagination_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/pagination_lang.php -------------------------------------------------------------------------------- /system/language/en/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/profiler_lang.php -------------------------------------------------------------------------------- /system/language/en/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/en/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/en/upload_lang.php -------------------------------------------------------------------------------- /system/language/fr/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/calendar_lang.php -------------------------------------------------------------------------------- /system/language/fr/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/date_lang.php -------------------------------------------------------------------------------- /system/language/fr/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/db_lang.php -------------------------------------------------------------------------------- /system/language/fr/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/email_lang.php -------------------------------------------------------------------------------- /system/language/fr/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/fr/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/ftp_lang.php -------------------------------------------------------------------------------- /system/language/fr/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/imglib_lang.php -------------------------------------------------------------------------------- /system/language/fr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/index.html -------------------------------------------------------------------------------- /system/language/fr/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/migration_lang.php -------------------------------------------------------------------------------- /system/language/fr/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/number_lang.php -------------------------------------------------------------------------------- /system/language/fr/pagination_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/pagination_lang.php -------------------------------------------------------------------------------- /system/language/fr/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/profiler_lang.php -------------------------------------------------------------------------------- /system/language/fr/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/fr/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/fr/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/language/zh-CN/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/calendar_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/date_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/db_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/email_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/ftp_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/imglib_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/index.html -------------------------------------------------------------------------------- /system/language/zh-CN/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/migration_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/number_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/pagination_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/pagination_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/profiler_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/zh-CN/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/language/zh-CN/upload_lang.php -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Cache/drivers/Cache_redis.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_wincache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Cache/drivers/Cache_wincache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Cache/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Encryption.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Session/Session.php -------------------------------------------------------------------------------- /system/libraries/Session/SessionHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Session/SessionHandlerInterface.php -------------------------------------------------------------------------------- /system/libraries/Session/Session_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Session/Session_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_database_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Session/drivers/Session_database_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_files_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Session/drivers/Session_files_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_memcached_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Session/drivers/Session_memcached_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_redis_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Session/drivers/Session_redis_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Session/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Session/index.html -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /system/libraries/javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/javascript/Jquery.php -------------------------------------------------------------------------------- /system/libraries/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/system/libraries/javascript/index.html -------------------------------------------------------------------------------- /thirdparty/evernote/Evernote/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/Evernote/Client.php -------------------------------------------------------------------------------- /thirdparty/evernote/Thrift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/Thrift.php -------------------------------------------------------------------------------- /thirdparty/evernote/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/autoload.php -------------------------------------------------------------------------------- /thirdparty/evernote/ext/thrift_protocol/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/ext/thrift_protocol/config.m4 -------------------------------------------------------------------------------- /thirdparty/evernote/ext/thrift_protocol/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/ext/thrift_protocol/config.w32 -------------------------------------------------------------------------------- /thirdparty/evernote/ext/thrift_protocol/php_thrift_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/ext/thrift_protocol/php_thrift_protocol.cpp -------------------------------------------------------------------------------- /thirdparty/evernote/ext/thrift_protocol/php_thrift_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/ext/thrift_protocol/php_thrift_protocol.h -------------------------------------------------------------------------------- /thirdparty/evernote/packages/Errors/Errors_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/packages/Errors/Errors_types.php -------------------------------------------------------------------------------- /thirdparty/evernote/packages/Limits/Limits_constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/packages/Limits/Limits_constants.php -------------------------------------------------------------------------------- /thirdparty/evernote/packages/Limits/Limits_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/packages/Limits/Limits_types.php -------------------------------------------------------------------------------- /thirdparty/evernote/packages/NoteStore/NoteStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/packages/NoteStore/NoteStore.php -------------------------------------------------------------------------------- /thirdparty/evernote/packages/NoteStore/NoteStore_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/packages/NoteStore/NoteStore_types.php -------------------------------------------------------------------------------- /thirdparty/evernote/packages/Types/Types_constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/packages/Types/Types_constants.php -------------------------------------------------------------------------------- /thirdparty/evernote/packages/Types/Types_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/packages/Types/Types_types.php -------------------------------------------------------------------------------- /thirdparty/evernote/packages/UserStore/UserStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/packages/UserStore/UserStore.php -------------------------------------------------------------------------------- /thirdparty/evernote/packages/UserStore/UserStore_constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/packages/UserStore/UserStore_constants.php -------------------------------------------------------------------------------- /thirdparty/evernote/packages/UserStore/UserStore_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/packages/UserStore/UserStore_types.php -------------------------------------------------------------------------------- /thirdparty/evernote/protocol/TBinaryProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/protocol/TBinaryProtocol.php -------------------------------------------------------------------------------- /thirdparty/evernote/protocol/TProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/protocol/TProtocol.php -------------------------------------------------------------------------------- /thirdparty/evernote/transport/TBufferedTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/transport/TBufferedTransport.php -------------------------------------------------------------------------------- /thirdparty/evernote/transport/THttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/transport/THttpClient.php -------------------------------------------------------------------------------- /thirdparty/evernote/transport/TTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/evernote/transport/TTransport.php -------------------------------------------------------------------------------- /thirdparty/facebook/Authentication/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Authentication/AccessToken.php -------------------------------------------------------------------------------- /thirdparty/facebook/Authentication/AccessTokenMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Authentication/AccessTokenMetadata.php -------------------------------------------------------------------------------- /thirdparty/facebook/Authentication/OAuth2Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Authentication/OAuth2Client.php -------------------------------------------------------------------------------- /thirdparty/facebook/Exceptions/FacebookAuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Exceptions/FacebookAuthenticationException.php -------------------------------------------------------------------------------- /thirdparty/facebook/Exceptions/FacebookAuthorizationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Exceptions/FacebookAuthorizationException.php -------------------------------------------------------------------------------- /thirdparty/facebook/Exceptions/FacebookClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Exceptions/FacebookClientException.php -------------------------------------------------------------------------------- /thirdparty/facebook/Exceptions/FacebookOtherException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Exceptions/FacebookOtherException.php -------------------------------------------------------------------------------- /thirdparty/facebook/Exceptions/FacebookResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Exceptions/FacebookResponseException.php -------------------------------------------------------------------------------- /thirdparty/facebook/Exceptions/FacebookSDKException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Exceptions/FacebookSDKException.php -------------------------------------------------------------------------------- /thirdparty/facebook/Exceptions/FacebookServerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Exceptions/FacebookServerException.php -------------------------------------------------------------------------------- /thirdparty/facebook/Exceptions/FacebookThrottleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Exceptions/FacebookThrottleException.php -------------------------------------------------------------------------------- /thirdparty/facebook/Facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Facebook.php -------------------------------------------------------------------------------- /thirdparty/facebook/FacebookApp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/FacebookApp.php -------------------------------------------------------------------------------- /thirdparty/facebook/FacebookBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/FacebookBatchRequest.php -------------------------------------------------------------------------------- /thirdparty/facebook/FacebookBatchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/FacebookBatchResponse.php -------------------------------------------------------------------------------- /thirdparty/facebook/FacebookClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/FacebookClient.php -------------------------------------------------------------------------------- /thirdparty/facebook/FacebookRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/FacebookRequest.php -------------------------------------------------------------------------------- /thirdparty/facebook/FacebookResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/FacebookResponse.php -------------------------------------------------------------------------------- /thirdparty/facebook/FileUpload/FacebookFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/FileUpload/FacebookFile.php -------------------------------------------------------------------------------- /thirdparty/facebook/FileUpload/FacebookVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/FileUpload/FacebookVideo.php -------------------------------------------------------------------------------- /thirdparty/facebook/FileUpload/Mimetypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/FileUpload/Mimetypes.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/Collection.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphAchievement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphAchievement.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphAlbum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphAlbum.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphApplication.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphCoverPhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphCoverPhoto.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphEdge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphEdge.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphEvent.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphGroup.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphList.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphLocation.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphNode.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphNodeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphNodeFactory.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphObject.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphObjectFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphObjectFactory.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphPage.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphPicture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphPicture.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphSessionInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphSessionInfo.php -------------------------------------------------------------------------------- /thirdparty/facebook/GraphNodes/GraphUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/GraphNodes/GraphUser.php -------------------------------------------------------------------------------- /thirdparty/facebook/Helpers/FacebookCanvasHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Helpers/FacebookCanvasHelper.php -------------------------------------------------------------------------------- /thirdparty/facebook/Helpers/FacebookJavaScriptHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Helpers/FacebookJavaScriptHelper.php -------------------------------------------------------------------------------- /thirdparty/facebook/Helpers/FacebookPageTabHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Helpers/FacebookPageTabHelper.php -------------------------------------------------------------------------------- /thirdparty/facebook/Helpers/FacebookRedirectLoginHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Helpers/FacebookRedirectLoginHelper.php -------------------------------------------------------------------------------- /thirdparty/facebook/Helpers/FacebookSignedRequestFromInputHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Helpers/FacebookSignedRequestFromInputHelper.php -------------------------------------------------------------------------------- /thirdparty/facebook/Http/GraphRawResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Http/GraphRawResponse.php -------------------------------------------------------------------------------- /thirdparty/facebook/Http/RequestBodyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Http/RequestBodyInterface.php -------------------------------------------------------------------------------- /thirdparty/facebook/Http/RequestBodyMultipart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Http/RequestBodyMultipart.php -------------------------------------------------------------------------------- /thirdparty/facebook/Http/RequestBodyUrlEncoded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Http/RequestBodyUrlEncoded.php -------------------------------------------------------------------------------- /thirdparty/facebook/HttpClients/FacebookCurl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/HttpClients/FacebookCurl.php -------------------------------------------------------------------------------- /thirdparty/facebook/HttpClients/FacebookCurlHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/HttpClients/FacebookCurlHttpClient.php -------------------------------------------------------------------------------- /thirdparty/facebook/HttpClients/FacebookGuzzleHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/HttpClients/FacebookGuzzleHttpClient.php -------------------------------------------------------------------------------- /thirdparty/facebook/HttpClients/FacebookHttpClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/HttpClients/FacebookHttpClientInterface.php -------------------------------------------------------------------------------- /thirdparty/facebook/HttpClients/FacebookStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/HttpClients/FacebookStream.php -------------------------------------------------------------------------------- /thirdparty/facebook/HttpClients/FacebookStreamHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/HttpClients/FacebookStreamHttpClient.php -------------------------------------------------------------------------------- /thirdparty/facebook/HttpClients/certs/DigiCertHighAssuranceEVRootCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/HttpClients/certs/DigiCertHighAssuranceEVRootCA.pem -------------------------------------------------------------------------------- /thirdparty/facebook/PersistentData/FacebookMemoryPersistentDataHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/PersistentData/FacebookMemoryPersistentDataHandler.php -------------------------------------------------------------------------------- /thirdparty/facebook/PersistentData/FacebookSessionPersistentDataHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/PersistentData/FacebookSessionPersistentDataHandler.php -------------------------------------------------------------------------------- /thirdparty/facebook/PersistentData/PersistentDataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/PersistentData/PersistentDataInterface.php -------------------------------------------------------------------------------- /thirdparty/facebook/PseudoRandomString/McryptPseudoRandomStringGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/PseudoRandomString/McryptPseudoRandomStringGenerator.php -------------------------------------------------------------------------------- /thirdparty/facebook/PseudoRandomString/OpenSslPseudoRandomStringGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/PseudoRandomString/OpenSslPseudoRandomStringGenerator.php -------------------------------------------------------------------------------- /thirdparty/facebook/PseudoRandomString/PseudoRandomStringGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/PseudoRandomString/PseudoRandomStringGeneratorInterface.php -------------------------------------------------------------------------------- /thirdparty/facebook/PseudoRandomString/PseudoRandomStringGeneratorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/PseudoRandomString/PseudoRandomStringGeneratorTrait.php -------------------------------------------------------------------------------- /thirdparty/facebook/PseudoRandomString/UrandomPseudoRandomStringGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/PseudoRandomString/UrandomPseudoRandomStringGenerator.php -------------------------------------------------------------------------------- /thirdparty/facebook/SignedRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/SignedRequest.php -------------------------------------------------------------------------------- /thirdparty/facebook/Url/FacebookUrlDetectionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Url/FacebookUrlDetectionHandler.php -------------------------------------------------------------------------------- /thirdparty/facebook/Url/FacebookUrlManipulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Url/FacebookUrlManipulator.php -------------------------------------------------------------------------------- /thirdparty/facebook/Url/UrlDetectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/Url/UrlDetectionInterface.php -------------------------------------------------------------------------------- /thirdparty/facebook/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/facebook/autoload.php -------------------------------------------------------------------------------- /thirdparty/feedwriter/ATOM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/feedwriter/ATOM.php -------------------------------------------------------------------------------- /thirdparty/feedwriter/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/feedwriter/COPYING -------------------------------------------------------------------------------- /thirdparty/feedwriter/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/feedwriter/Feed.php -------------------------------------------------------------------------------- /thirdparty/feedwriter/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/feedwriter/Item.php -------------------------------------------------------------------------------- /thirdparty/feedwriter/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/feedwriter/README -------------------------------------------------------------------------------- /thirdparty/feedwriter/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/feedwriter/README.txt -------------------------------------------------------------------------------- /thirdparty/feedwriter/RSS1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/feedwriter/RSS1.php -------------------------------------------------------------------------------- /thirdparty/feedwriter/RSS2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/feedwriter/RSS2.php -------------------------------------------------------------------------------- /thirdparty/feedwriter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/feedwriter/composer.json -------------------------------------------------------------------------------- /thirdparty/feedwriter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/feedwriter/index.html -------------------------------------------------------------------------------- /thirdparty/html5-desktop-notifications/desktop-notify-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/html5-desktop-notifications/desktop-notify-min.js -------------------------------------------------------------------------------- /thirdparty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/index.html -------------------------------------------------------------------------------- /thirdparty/jquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/jquery/index.html -------------------------------------------------------------------------------- /thirdparty/jquery/jquery.cookie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/jquery/jquery.cookie.min.js -------------------------------------------------------------------------------- /thirdparty/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/jquery/jquery.min.js -------------------------------------------------------------------------------- /thirdparty/jquery/jquery.scrollto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/jquery/jquery.scrollto.min.js -------------------------------------------------------------------------------- /thirdparty/jquery/jquery.timeago.en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/jquery/jquery.timeago.en.js -------------------------------------------------------------------------------- /thirdparty/jquery/jquery.timeago.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/jquery/jquery.timeago.fr.js -------------------------------------------------------------------------------- /thirdparty/jquery/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/jquery/jquery.timeago.js -------------------------------------------------------------------------------- /thirdparty/jquery/jquery.touchswipe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/jquery/jquery.touchswipe.min.js -------------------------------------------------------------------------------- /thirdparty/mdl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/LICENSE -------------------------------------------------------------------------------- /thirdparty/mdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/README.md -------------------------------------------------------------------------------- /thirdparty/mdl/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/bower.json -------------------------------------------------------------------------------- /thirdparty/mdl/gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/gulpfile.babel.js -------------------------------------------------------------------------------- /thirdparty/mdl/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/gulpfile.js -------------------------------------------------------------------------------- /thirdparty/mdl/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/material.css -------------------------------------------------------------------------------- /thirdparty/mdl/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/material.js -------------------------------------------------------------------------------- /thirdparty/mdl/material.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/material.min.css -------------------------------------------------------------------------------- /thirdparty/mdl/material.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/material.min.css.map -------------------------------------------------------------------------------- /thirdparty/mdl/material.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/material.min.js -------------------------------------------------------------------------------- /thirdparty/mdl/material.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/material.min.js.map -------------------------------------------------------------------------------- /thirdparty/mdl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/mdl/package.json -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Author.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Cache.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Cache/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Cache/Base.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Cache/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Cache/DB.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Cache/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Cache/File.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Cache/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Cache/Memcache.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Cache/MySQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Cache/MySQL.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Cache/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Caption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Caption.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Category.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Content/Type/Sniffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Content/Type/Sniffer.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Content/Type/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Content/Type/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Content/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Copyright.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Copyright.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Core.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Credit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Credit.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Decode/HTML/Entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Decode/HTML/Entities.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Decode/HTML/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Decode/HTML/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Decode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Decode/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Enclosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Enclosure.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Exception.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/File.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/HTTP/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/HTTP/Parser.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/HTTP/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/HTTP/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/IRI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/IRI.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Item.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Locator.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Misc.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Net/IPv6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Net/IPv6.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Net/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Net/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Parse/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Parse/Date.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Parse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Parse/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Parser.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Rating.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Registry.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Restriction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Restriction.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Sanitize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Sanitize.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/Source.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/XML/Declaration/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/XML/Declaration/Parser.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/XML/Declaration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/XML/Declaration/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/XML/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/XML/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/gzdecode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/gzdecode.php -------------------------------------------------------------------------------- /thirdparty/simplepie/SimplePie/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/SimplePie/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/autoloader.php -------------------------------------------------------------------------------- /thirdparty/simplepie/idn/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/idn/LICENCE.txt -------------------------------------------------------------------------------- /thirdparty/simplepie/idn/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/idn/ReadMe.txt -------------------------------------------------------------------------------- /thirdparty/simplepie/idn/idna_convert.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/idn/idna_convert.class.php -------------------------------------------------------------------------------- /thirdparty/simplepie/idn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/idn/index.html -------------------------------------------------------------------------------- /thirdparty/simplepie/idn/npdata.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/idn/npdata.ser -------------------------------------------------------------------------------- /thirdparty/simplepie/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/thirdparty/simplepie/index.html -------------------------------------------------------------------------------- /update/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/update/.htaccess -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanediondev/readerself/HEAD/web.config --------------------------------------------------------------------------------