]> git.wh0rd.org - tt-rss.git/commit
update autoloader to consider namespaces for third party libraries: placed and loaded...
authorAndrew Dolgov <noreply@fakecake.org>
Wed, 20 Jun 2018 11:58:09 +0000 (14:58 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Wed, 20 Jun 2018 11:58:09 +0000 (14:58 +0300)
commit2aaefbfa54447c37a74aaf126f864fac629e9bd5
tree971c158cde0e95b7610c0a3d3072c45338cddd7d
parentd00d515320adb57165f7a69bd1c9afc72d51b87f
update autoloader to consider namespaces for third party libraries: placed and loaded from vendor/namespace/classpath.php
update readability to a newer implementation based on Readability.js (https://github.com/andreskrey/readability.php)
add vendor/Psr/Log interface required for the above
30 files changed:
include/autoload.php
plugins/af_readability/init.php
vendor/Psr/Log/AbstractLogger.php [new file with mode: 0644]
vendor/Psr/Log/InvalidArgumentException.php [new file with mode: 0644]
vendor/Psr/Log/LogLevel.php [new file with mode: 0644]
vendor/Psr/Log/LoggerAwareInterface.php [new file with mode: 0644]
vendor/Psr/Log/LoggerAwareTrait.php [new file with mode: 0644]
vendor/Psr/Log/LoggerInterface.php [new file with mode: 0644]
vendor/Psr/Log/LoggerTrait.php [new file with mode: 0644]
vendor/Psr/Log/NullLogger.php [new file with mode: 0644]
vendor/Psr/Log/Test/LoggerInterfaceTest.php [new file with mode: 0644]
vendor/andreskrey/Readability/Configuration.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMAttr.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMCdataSection.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMCharacterData.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMComment.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMDocument.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMDocumentFragment.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMDocumentType.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMElement.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMEntity.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMEntityReference.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMNode.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMNotation.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMProcessingInstruction.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/DOM/DOMText.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/NodeTrait.php [new file with mode: 0644]
vendor/andreskrey/Readability/Nodes/NodeUtility.php [new file with mode: 0644]
vendor/andreskrey/Readability/ParseException.php [new file with mode: 0644]
vendor/andreskrey/Readability/Readability.php [new file with mode: 0644]