summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-03-14Fix error C14NPedro Amorim
I have the error: "Call to a member function C14N() on null" You could reproduce like this: - try to parse a url like http://www.dailymotion.com/video/x6ga6qi that doesn't return any content - this throw an exception and the logs show "[Parsing] Could not parse text, giving up :(" - now, call ->getContent() with the same object readability Previously, getContent would return "null" but now it call ->C14N() on a NULL object.
2018-03-13Update readmeAndres Rey
2018-03-12Prepare for releaseAndres Rey
2018-03-12Merge branch 'master' into developmentAndres Rey
2018-03-12Update changelogAndres Rey
2018-03-12Merge pull request #48 from topotru/configuration-constructorAndres Rey
Added: Configuration parameters array constructor injection
2018-03-12removed class doc-block + method-name-builder switched to sprintftopot
2018-03-11Fix test casesAndres Rey
2018-03-10Import new test casesAndres Rey
2018-03-10Fix "unable to parse" test caseAndres Rey
2018-03-10Fix missing webmd-2 test case whitespaceAndres Rey
2018-03-10Add log messagesAndres Rey
2018-03-10Save attempts across different runs and try to return at least something ↵Andres Rey
before giving up.
2018-03-10Remove link tag from webmd-2 test caseAndres Rey
2018-03-10Clean link tagsAndres Rey
2018-03-10Failsafe for weird titlesAndres Rey
2018-03-10Remove all class attributes from the testsAndres Rey
2018-03-10Add _cleanClasses functionAndres Rey
2018-03-10Add missing DOMEntity classAndres Rey
2018-03-10StyleCI diff appliedtopot
2018-03-09Added: Configuration parameters array constructor injectiontopot
2018-03-06Update changelogAndres Rey
2018-03-06Add the getDOMDocument function documentation in readme.mdAndres Rey
2018-03-06Rename getContentObject to getDOMDocumentAndres Rey
2018-03-06Remove wrong images from the expected metadataAndres Rey
2018-03-06Save the full DOMDocument when finish processing + pull images of the ↵Andres Rey
article from the processed object, no the original one
2018-03-06Add test cases for the new data-src source pathAndres Rey
2018-03-06Add data-src as a image path sourceAndres Rey
2018-02-12Fix ANOTHER mistake on the documentationAndres Rey
2018-02-12Update changelogAndres Rey
2018-02-12#45 Fix small mistake in documentationAndres Rey
2018-01-27Update changelogAndres Rey
2018-01-27Make sure that we do not allow the DOMDocument reach the parsing algorithm ↵Andres Rey
(Because we use/abuse the parentNode call, and a DOMDocument does not have a parent)
2018-01-20Update changelogAndres Rey
2018-01-17Update lemonde-2 test caseAndres Rey
2018-01-13Switch to assertSame while testing to avoid "==" type comparisons.Andres Rey
2018-01-11Preparing for release v1.1.0Andres Rey
2018-01-11Merge pull request #39 from andreskrey/loggingAndres Rey
Preparing for release
2018-01-11Merge remote-tracking branch 'origin/logging' into loggingAndres Rey
2018-01-11Merge branch 'master' into loggingAndres Rey
# Conflicts: # CHANGELOG.md
2018-01-11Merge pull request #40 from andreskrey/analysis-z372oAAndres Rey
Apply fixes from StyleCI
2018-01-11Apply fixes from StyleCIAndres Rey
2018-01-11Update ChangelogAndres Rey
2018-01-11Merge pull request #38 from PedroAmorim/domEntityReferenceAndres Rey
Add missing DOM classes
2018-01-11Add test for lemonde-2Pedro Amorim
check the page: http://www.lemonde.fr/idees/article/2011/06/20/la-crise-europeenne-est-une-crise-de-la-dette-pas-de-l-euro_1538337_3232.html Following the error: Uncaught Error: Call to undefined method DOMEntityReference::getAttribute() in vendor/andreskrey/readability.php/src/Readability.php:528
2018-01-11Add missing DOM class DOMEntityReference.Pedro Amorim
Fix error: Uncaught Error: Call to undefined method DOMEntityReference::getAttribute() in vendor/andreskrey/readability.php/src/Readability.php:528
2018-01-11Remove the data-readability referencesAndres Rey
2017-12-22Check for node type when scanning for better topCandidatesAndres Rey
2017-12-10Update changelogAndres Rey
2017-12-10Remove logger declaration inside the ConfigurationAndres Rey