aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/ReadabilityImport.php
Commit message (Collapse)AuthorAgeFilesLines
* Entry: add archived_at property and updateArchived methodSébastien Viande2018-09-211-1/+1
|
* Avoid returning objects passed by reference.Jerome Charaoui2017-06-011-1/+1
| | | | | | Objects are always passed by reference, so it doesn't make sense to return an object which is passed by reference as it will always be the same object. This change makes the code a bit more readable.
* Allow fetching content on all import typesJerome Charaoui2016-12-031-2/+0
| | | | | For better consistency, allow all types of imported entries to update, which was already the case for Firefox and Chrome.
* Imported entries which fail to fetch get standard error bodyJerome Charaoui2016-12-021-0/+1
|
* Add controller test for InstapaperJeremy Benoist2016-09-271-0/+2
|
* Avoid losing entry when fetching failJeremy Benoist2016-09-171-11/+5
| | | | Instead of just say “Failed to save entry” we’ll save the entry at all cost and try to fetch content. If fetching content failed, the entry will still be saved at least, but without content.
* Change flash message for queued articlesJeremy Benoist2016-09-131-11/+0
|
* Add ability to define created_at for all importJeremy Benoist2016-09-111-0/+5
| | | | | | At the moment only Readability & wallabag v2 import allow created_at import. Pocket removed `time_added` field from their API v2 to v3... And wallabag v1 doesn't export that value.
* CSJeremy Benoist2016-09-111-2/+0
|
* Some cleanup & refactorJeremy Benoist2016-09-111-24/+4
|
* Convert other imports to RabbitJeremy Benoist2016-09-111-70/+57
|
* Clearing entities in the loop fail on PostgresJeremy Benoist2016-09-111-4/+1
| | | | It looks like when you clear entities on Postgres some references are lost and tags are not saved :-/
* Fix error on EntityManager clearJeremy Benoist2016-09-111-1/+4
| | | | | Introduced in the recent 2.5.5 release. Also updated deps.
* Add tests on ReadabilityImportJeremy Benoist2016-09-011-2/+0
|
* Add Readability importJeremy Benoist2016-09-011-0/+181
Based on the JSON export instead of the API (which will be shutting down by the September 30, 2016)