Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Avoid losing entry when fetching fail | Jeremy Benoist | 2016-09-17 | 18 | -84/+73 |
| | | | | 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. | ||||
* | Missing some migrations | Jeremy Benoist | 2016-09-16 | 2 | -1/+2 |
| | | | | and CS | ||||
* | Moved Pocket token to user config | Jeremy Benoist | 2016-09-16 | 34 | -44/+161 |
| | |||||
* | Only display message in queue for admin | Jeremy Benoist | 2016-09-16 | 1 | -0/+8 |
| | | | | Instead of for EVERYONE | ||||
* | AMPQ -> AMQP | Jeremy Benoist | 2016-09-14 | 4 | -18/+18 |
| | |||||
* | Fix typo | Jeremy Benoist | 2016-09-14 | 1 | -1/+1 |
| | |||||
* | Add missing translations | Jeremy Benoist | 2016-09-13 | 10 | -1/+20 |
| | |||||
* | Add more “real” tests | Jeremy Benoist | 2016-09-13 | 3 | -30/+87 |
| | |||||
* | Change flash message for queued articles | Jeremy Benoist | 2016-09-13 | 22 | -56/+65 |
| | |||||
* | Display how many messages are queue | Jeremy Benoist | 2016-09-13 | 5 | -0/+118 |
| | | | | | - update the docker-composer to add Redis - add migrations | ||||
* | Update import.worker.enabled translation | Jeremy Benoist | 2016-09-12 | 10 | -16/+16 |
| | |||||
* | Fix tests | Jeremy Benoist | 2016-09-11 | 1 | -3/+3 |
| | |||||
* | Add tests on ImportCommand | Jeremy Benoist | 2016-09-11 | 2 | -1/+91 |
| | |||||
* | Update docs about worker | Jeremy Benoist | 2016-09-11 | 2 | -4/+84 |
| | |||||
* | Add more tests | Jeremy Benoist | 2016-09-11 | 9 | -3/+133 |
| | | | | And ability to define how many messages can be hanle by the redis worker before stopping (usefull for tests) | ||||
* | Re-facto EntryConsumer | Jeremy Benoist | 2016-09-11 | 3 | -112/+78 |
| | | | | Using an abstract method allow to share code but also can be used it we add a new broker in the future | ||||
* | Display a message when async is enabled | Jeremy Benoist | 2016-09-11 | 15 | -1/+37 |
| | |||||
* | Enable Redis on Travis | Jeremy Benoist | 2016-09-11 | 3 | -18/+170 |
| | | | | | Add generated files from `composer up` Add more articles for Readability tests | ||||
* | Enable Redis async import | Jeremy Benoist | 2016-09-11 | 28 | -68/+846 |
| | | | | | | | | - using javibravo/simpleue - internal config value are now `import_with_redis` & `import_with_rabbit` which are more clear - if both option are enable rabbit will be choosen - services imports related to async are now splitted into 2 files: `redis.yml` & `rabbit.yml` - | ||||
* | Retrieve created date from Pocket | Jeremy Benoist | 2016-09-11 | 2 | -0/+31 |
| | |||||
* | Add test for RabbitMQ | Jeremy Benoist | 2016-09-11 | 11 | -2/+487 |
| | | | | Also update Symfony deps | ||||
* | Fix DateTime & clear() | Jeremy Benoist | 2016-09-11 | 3 | -7/+16 |
| | |||||
* | Add ability to define created_at for all import | Jeremy Benoist | 2016-09-11 | 8 | -2/+47 |
| | | | | | | 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. | ||||
* | CS | Jeremy Benoist | 2016-09-11 | 4 | -6/+2 |
| | |||||
* | Some cleanup & refactor | Jeremy Benoist | 2016-09-11 | 6 | -70/+60 |
| | |||||
* | Retrieve all items from Pocket | Jeremy Benoist | 2016-09-11 | 2 | -15/+32 |
| | | | | | 5000 by 5000. Also, retrieve newest item first. | ||||
* | Convert other imports to Rabbit | Jeremy Benoist | 2016-09-11 | 14 | -255/+326 |
| | |||||
* | Send every imported item to the queue | Jeremy Benoist | 2016-09-11 | 9 | -154/+221 |
| | | | | | Instead of queing real Entry to process, we queue all the item to import from Pocket in a raw format. Then, the worker retrieve that information, find / create the entry and save it. | ||||
* | Update docker-composer with RabbitMQ configuration | Nicolas Lœuillet | 2016-09-11 | 1 | -0/+4 |
| | |||||
* | Replace RabbitMQ injection with CraueConfiguration | Nicolas Lœuillet | 2016-09-11 | 6 | -4/+13 |
| | |||||
* | Add RabbitMQ service for Travis CI | Nicolas Lœuillet | 2016-09-11 | 1 | -0/+3 |
| | |||||
* | 1st draft for rabbitMQ | Nicolas Lœuillet | 2016-09-11 | 9 | -11/+173 |
| | |||||
* | Merge pull request #2279 from wallabag/cleanup-travis | Nicolas Lœuillet | 2016-09-11 | 7 | -50/+80 |
|\ | | | | | Check if asset is enable instead of opposite | ||||
| * | Clearing entities in the loop fail on Postgres | Jeremy Benoist | 2016-09-11 | 3 | -12/+3 |
| | | | | | | | | It looks like when you clear entities on Postgres some references are lost and tags are not saved :-/ | ||||
| * | Fix error on EntityManager clear | Jeremy Benoist | 2016-09-11 | 5 | -26/+76 |
| | | | | | | | | | | Introduced in the recent 2.5.5 release. Also updated deps. | ||||
| * | Update install.sh | Jeremy Benoist | 2016-09-11 | 1 | -15/+4 |
| | | | | | | | | Since $ASSETS can be empty now and only be “build”. | ||||
| * | Check if asset is enable instead of opposite | Jeremy Benoist | 2016-09-09 | 1 | -9/+9 |
|/ | | | | | | Instead of defining ASSETS all the time, just define it when we want to use it Might give us more clearer build | ||||
* | Merge pull request #2275 from wallabag/export-dates | Nicolas Lœuillet | 2016-09-08 | 5 | -4/+61 |
|\ | | | | | Export dates from entries | ||||
| * | Export dates from entries | Jeremy Benoist | 2016-09-08 | 5 | -4/+61 |
| | | |||||
* | | Merge pull request #2274 from wallabag/json-response-created-at | Nicolas Lœuillet | 2016-09-08 | 1 | -40/+27 |
|\ \ | |/ |/| | Re-use JsonResponse | ||||
| * | Re-user JsonResponse | Jeremy Benoist | 2016-09-08 | 1 | -40/+27 |
|/ | | | | Since Symfony 3.1 we can define the json of a JsonResonse using `->setJson()` | ||||
* | Merge pull request #2266 from wallabag/add-tags-counter | Jeremy Benoist | 2016-09-05 | 8 | -41/+63 |
|\ | | | | | Added tags counter in sidebar (material theme) | ||||
| * | Returned 0 instead of returning empty array for Twig Extension | Nicolas Lœuillet | 2016-09-05 | 1 | -2/+2 |
| | | |||||
| * | Remove useless variable | Nicolas Lœuillet | 2016-09-05 | 1 | -2/+0 |
| | | |||||
| * | Switched enableCache visibility to private | Nicolas Lœuillet | 2016-09-04 | 1 | -1/+1 |
| | | |||||
| * | Added tags counter in sidebar (material theme) | Nicolas Lœuillet | 2016-09-04 | 8 | -38/+62 |
| | | |||||
* | | Merge pull request #2267 from wallabag/Quent-in-patch-1 | Jeremy Benoist | 2016-09-05 | 1 | -14/+14 |
|\ \ | |/ |/| | Occitan updated | ||||
| * | Occitan updated | Quent-in | 2016-09-05 | 1 | -14/+14 |
|/ | | | | | Line 347, I'm not sure about what I wrote to avoid and end of string started with " I had to use the simple ' in the sentence. Let me know if it was okay like so. | ||||
* | Merge pull request #2263 from wallabag/speed-up-count | Jeremy Benoist | 2016-09-04 | 3 | -26/+51 |
|\ | | | | | Instead of selecting the whole data, just count it | ||||
| * | CS | Jeremy Benoist | 2016-09-03 | 1 | -3/+3 |
| | |