Jeremy Benoist
b64d8f2c9f
Update Twitter cards description
2016-10-21 10:51:20 +02:00
Jeremy Benoist
2cbf0d05d4
Update translation for piwik_host
2016-10-21 10:45:39 +02:00
Jeremy Benoist
645dc7594b
Fix missing translations
2016-10-21 07:52:55 +02:00
Jeremy Benoist
5453500458
Requeue depending on producer
...
Browser import can requeue message from `parseEntry` but we should take care of the way import are handled (depending on the producer)
2016-10-20 21:17:45 +02:00
Jeremy Benoist
1e3d74a9cf
Avoid RabbitMQ consumer to loop
...
When the `parseEntry` returns null it means the entry already exists in the database. Sending `false` as return, will requeue the message which will then loop forever.
2016-10-20 21:17:03 +02:00
Jeremy Benoist
576d285ddf
Translate date
...
I use a kind of hacky way to convert the user locale (defined with 2 letters, like `fr`) into a local with 5 letters (like `fr_FR`). I guess it should work on most of the case..
2016-10-20 21:16:01 +02:00
Jeremy Benoist
166e8cc6a9
Fix french translation
2016-10-20 21:14:46 +02:00
Jeremy Benoist
692f9388cb
Merge pull request #2455 from wallabag/fix-material-config-tabs
...
Fix tabs on material
2016-10-16 21:06:23 +02:00
Jeremy Benoist
3fb409ffc6
Merge pull request #2454 from wallabag/fix-baggy-small-width
...
Fix baggy display on small screens
2016-10-16 21:05:30 +02:00
Thomas Citharel
97512ec4bc
Merge pull request #2459 from wallabag/improve-german-translation
...
German: improve existing and add missing translation
2016-10-16 12:06:42 +02:00
Sven Fischer
5bd7acd50d
German: improve existing and add missing translation
2016-10-16 10:45:51 +02:00
Sven Fischer
f69ab83a5a
add link to German documentation in about page
2016-10-16 09:23:58 +02:00
Thomas Citharel
d9a30ef301
Fix tabs on material
...
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2016-10-15 19:26:38 +02:00
Thomas Citharel
d32e1c424a
Fix baggy on small screens
2016-10-15 19:04:53 +02:00
Alexandr Danilov
38dc91be8e
Improved side menu, reduced the font size on small screens, fixed a form to add links on small screens
2016-10-15 14:49:07 +02:00
Nicolas Lœuillet
a2f42d8eaa
Fixed Twitter Cards by adding a description tag
2016-10-10 16:05:06 +02:00
Nicolas Lœuillet
020c723e28
Added support of Twitter Cards for public articles
2016-10-10 14:33:34 +02:00
Nicolas Lœuillet
2a5ff7f554
Merge pull request #2411 from wallabag/fix-entities
...
Fix entities definition
2016-10-10 08:02:25 +02:00
Jeremy Benoist
8eeefc658c
Merge pull request #2414 from szafranek/bugfix-bookmarklet
...
Remove automatic closing of the window from bookmarklet
2016-10-10 07:11:01 +02:00
Krzysztof Szafranek
d8a9209cfc
Remove automatic closing of the window from bookmarklet
2016-10-09 22:40:55 +02:00
Jeremy Benoist
39a19bdf47
When a sub command fail, display error message
...
We often got issue with message “The command "doctrine:database:create" terminated with an error code: 1.”.
Using the `BufferedOutput` we can store the output and only display it if an error occurs.
2016-10-09 22:39:43 +02:00
Jeremy Benoist
8dc4cd0f25
Fix entities definition
...
As per Doctrine said in the debug tool bar:
- The field Wallabag\ApiBundle\Entity\Client#refreshTokens is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity Wallabag\ApiBundle\Entity\RefreshToken#client does not contain the required 'inversedBy="refreshTokens"' attribute.
- The field Wallabag\ApiBundle\Entity\Client#accessTokens is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity Wallabag\ApiBundle\Entity\AccessToken#client does not contain the required 'inversedBy="accessTokens"' attribute.
2016-10-09 20:51:37 +02:00
Jeremy Benoist
28bb48905a
Optimize the way tag list is rendered
...
Instead of retrieve all informations about entries of a tag to just count them, we’ll count them before with a fastest query.
Also change the layout of the tag list in material design
2016-10-09 18:55:22 +02:00
Jeremy Benoist
b4fcd60e7f
Avoid tag duplication when tagging all articles
...
Mostly when the tag doesn’t yet exist.
It was created each time it matche the rule… glups.
2016-10-09 18:55:21 +02:00
Jeremy Benoist
4d318f3755
Add more log to tag:all
2016-10-09 18:55:21 +02:00
Jeremy Benoist
e39aec3e38
Merge pull request #2406 from szafranek/bugfix-number-of-annotations
...
Show number of annotations instead of nbAnnotations placeholder
2016-10-09 14:11:20 +02:00
Krzysztof Szafranek
90c766b96b
Show number of annotations instead of nbAnnotations placeholder
...
When there was more than one annotation, a placeholder was displayed in both themes, instead of actual number.
2016-10-09 04:59:04 +02:00
Krzysztof Szafranek
c5e4293efd
Fix few invalid HTML tags
2016-10-09 03:37:21 +02:00
Nicolas Lœuillet
93a95c09bf
Merge pull request #2351 from wallabag/fix-api-client-deletion
...
Changed relation between API client and refresh token
2016-10-08 13:31:54 +02:00
Nicolas Lœuillet
4ad6f5878a
Merge pull request #2393 from wallabag/api-urls-exist
...
Ability to check multiple urls in API
2016-10-08 13:31:31 +02:00
Jeremy Benoist
ee32248f43
Ensure access_token are removed
...
When we remove the client, we should ensure that access_token are also removed.
To ensure that, I created a test that generated an access_token. So when we remove the client, this association should be cascaded and shouldn’t generate an error.
Also I moved some Api related stuff to the ApiBundle (like the developer controler and ClientType form)
2016-10-08 00:05:41 +02:00
Jeremy Benoist
ac8cf632bb
Ensure orphan tag are remove in API
...
When the association between a tag and an entry is removed, if the tag doesn’t have other entries, we can remove it.
Also add more tests for that part and ensure TagControllerTest is isolated from the rest of the test suite (finally!)
2016-10-07 23:31:53 +02:00
Nicolas Lœuillet
3049afe190
Merge pull request #2396 from wallabag/mruminski-patch-1
...
Update messages.pl.yml
2016-10-07 22:20:51 +02:00
Mateusz Rumiński
aa8a58b5a0
Update messages.pl.yml
...
translated shared_by_wallabag to polish
2016-10-07 21:32:27 +02:00
Jeremy Benoist
6d204f5382
Add ability to use socket
...
For Redis & MySQL
2016-10-07 21:00:13 +02:00
Jeremy Benoist
f0abc22d09
Ability to check multiple urls in API
2016-10-07 20:37:01 +02:00
Nicolas Lœuillet
20bf78b935
Merge pull request #2389 from wallabag/add-info-publich-articles
...
Added default picture if preview picture is null
2016-10-07 16:35:32 +02:00
Nicolas Lœuillet
d5c45d5288
Added default picture if preview picture is null
2016-10-07 15:21:31 +02:00
Nicolas Lœuillet
5e7786f3c4
Fixed two-factor checkbox display in user admin panel
...
Fix #2380
2016-10-07 14:56:26 +02:00
Nicolas Lœuillet
c8d2dcdafe
Merge pull request #2383 from wallabag/add-info-publich-articles
...
Added OpenGraph support for public articles
2016-10-07 14:30:46 +02:00
Nicolas Lœuillet
d0d196ffb3
Fixed review
2016-10-07 09:22:40 +02:00
Nicolas Lœuillet
f0d52417fb
Added OpenGraph support for public articles
...
Fix #2289
2016-10-07 09:05:18 +02:00
Jeremy Benoist
74e1f7433a
Fix tag test
2016-10-07 07:43:48 +02:00
Jeremy Benoist
6c8806cadc
Fix bad translation key
...
`entry_reload_failed` instead of `entry_reloaded_failed`
2016-10-07 07:43:48 +02:00
Jeremy Benoist
b0458874c8
Fix relations export for Entry
...
Tags & Annotations weren’t really well exported.
This is now fixed (+ tests)
2016-10-07 07:43:19 +02:00
Thomas Citharel
9d127b3b93
Merge pull request #2377 from wallabag/fix-exists-api
...
Fix exists API call
2016-10-05 19:52:06 +02:00
Jeremy Benoist
0b174d69d7
Fix typo & add test
2016-10-05 19:30:56 +02:00
Thomas Citharel
5d39243068
Fix exists API call
...
Boo
2016-10-05 15:28:36 +02:00
Thomas Citharel
15f1352ef8
better tags on material
2016-10-05 14:06:55 +02:00
Thomas Citharel
645c0d5bce
better tags on baggy
2016-10-04 20:11:10 +02:00