aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/WallabagImport.php
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Avoid breaking import when fetching failJeremy Benoist2016-08-201-21/+8
| | | | | | | | | graby will throw an Exception in some case (like a bad url, a restricted url or a secured pdf). Import doesn't handle that case and break the whole import. With that commit the import isn't stopped but the entry is just skipped. Also, as a bonus, I've added extra test on WallabagImportV2 when the json is empty.
* Add testsNicolas LÅ“uillet2016-04-181-1/+1
|
* Add doctrine clear after flush, thanks to @BitOne talk at Symfony LiveNicolas LÅ“uillet2016-04-181-0/+1
|
* Refacto wallabag importJeremy Benoist2016-03-281-0/+204
Use an abstract class to store all common action from wallabag vX import. Move specificity in v1 & v2 import.