Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Moved Pocket token to user config | Jeremy Benoist | 2016-09-16 | 21 | -23/+79 |
| | |||||
* | 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 | 2 | -9/+9 |
| | |||||
* | Change flash message for queued articles | Jeremy Benoist | 2016-09-13 | 18 | -37/+46 |
| | |||||
* | Display how many messages are queue | Jeremy Benoist | 2016-09-13 | 3 | -0/+67 |
| | | | | | - update the docker-composer to add Redis - add migrations | ||||
* | Update import.worker.enabled translation | Jeremy Benoist | 2016-09-12 | 10 | -16/+16 |
| | |||||
* | Add tests on ImportCommand | Jeremy Benoist | 2016-09-11 | 1 | -1/+5 |
| | |||||
* | Add more tests | Jeremy Benoist | 2016-09-11 | 4 | -3/+7 |
| | | | | 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 async import | Jeremy Benoist | 2016-09-11 | 15 | -45/+320 |
| | | | | | | | | - 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 | 1 | -0/+4 |
| | |||||
* | Add test for RabbitMQ | Jeremy Benoist | 2016-09-11 | 1 | -1/+1 |
| | | | | 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 | 5 | -2/+32 |
| | | | | | | 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 | 1 | -6/+31 |
| | | | | | 5000 by 5000. Also, retrieve newest item first. | ||||
* | Convert other imports to Rabbit | Jeremy Benoist | 2016-09-11 | 13 | -253/+285 |
| | |||||
* | Send every imported item to the queue | Jeremy Benoist | 2016-09-11 | 6 | -114/+207 |
| | | | | | 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. | ||||
* | Replace RabbitMQ injection with CraueConfiguration | Nicolas Lœuillet | 2016-09-11 | 4 | -3/+12 |
| | |||||
* | 1st draft for rabbitMQ | Nicolas Lœuillet | 2016-09-11 | 3 | -8/+75 |
| | |||||
* | 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 | 3 | -3/+12 |
| | | | | | Introduced in the recent 2.5.5 release. Also updated deps. | ||||
* | Merge pull request #2275 from wallabag/export-dates | Nicolas Lœuillet | 2016-09-08 | 2 | -3/+4 |
|\ | | | | | Export dates from entries | ||||
| * | Export dates from entries | Jeremy Benoist | 2016-09-08 | 2 | -3/+4 |
| | | |||||
* | | 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 | 7 | -41/+61 |
|\ | | | | | 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 | 7 | -38/+60 |
| | | |||||
* | | 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. | ||||
* | CS | Jeremy Benoist | 2016-09-03 | 1 | -3/+3 |
| | |||||
* | Remove Twig globals | Jeremy Benoist | 2016-09-03 | 2 | -23/+48 |
| | | | | | | | | Twig Global function are called globally. This means even on a query to the api. Using a function we can decide when we want to call it. Also, remove previous `COUNT(e.id)` since it doesn't work on PostgreSQL ... | ||||
* | Instead of selecting the whole data, just count it | Jeremy Benoist | 2016-09-03 | 2 | -13/+13 |
| | | | | | | Instead of performing a complex select (to retrieve all data for entry, etc...) just select the counter and retrieve it. Down from ~50ms to ~30ms on the unread page (with 500 items) | ||||
* | Merge pull request #2002 from wallabag/feature-display-itemsNumber | Jeremy Benoist | 2016-09-03 | 6 | -5/+79 |
|\ | | | | | Feature display items number | ||||
| * | Store cache lifetime in config | Nicolas Lœuillet | 2016-09-03 | 4 | -2/+15 |
| | | |||||
| * | Enable cache for queries | Nicolas Lœuillet | 2016-09-01 | 2 | -8/+36 |
| | | |||||
| * | Implement Twig_Extension_GlobalsInterface to remove deprecation | Nicolas Lœuillet | 2016-08-23 | 1 | -1/+1 |
| | | |||||
| * | Display entries number for each category | Nicolas Lœuillet | 2016-08-23 | 2 | -4/+37 |
| | | |||||
* | | Fixed different font-size for labels in config screen | Nicolas Lœuillet | 2016-09-02 | 1 | -0/+2 |
| | | | | | | | | Fix #1788 | ||||
* | | Merge pull request #2252 from wallabag/fix-last-merge | Nicolas Lœuillet | 2016-09-02 | 3 | -107/+1 |
|\ \ | | | | | | | Fixed last merge who caused CSS/JS bugs | ||||
| * | | Fixed last merge who caused CSS/JS bugs | Nicolas Lœuillet | 2016-08-30 | 3 | -107/+1 |
| | | | |||||
* | | | Merge pull request #2242 from wallabag/fix-minor-css | Jeremy Benoist | 2016-09-01 | 2 | -24/+28 |
|\ \ \ | | | | | | | | | Fix print / article views | ||||
| * | | | Fixed print view for baggy theme | Nicolas Lœuillet | 2016-08-26 | 1 | -20/+23 |
| | | | | |||||
| * | | | Fix print / article views | Nicolas Lœuillet | 2016-08-26 | 1 | -4/+5 |
| | | | | |||||
* | | | | Update messages.pl.yml | Mateusz Rumiński | 2016-09-01 | 1 | -10/+10 |
| | | | | | | | | | | | | add missing polish translations | ||||
* | | | | Add Readability to Quickstart page | Jeremy Benoist | 2016-09-01 | 12 | -0/+12 |
| | | | | |||||
* | | | | Add tests on ReadabilityImport | Jeremy Benoist | 2016-09-01 | 1 | -2/+0 |
| | | | |