| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | |
| | | | |
| | | | |
| | | | | |
Browser import can requeue message from `parseEntry` but we should take care of the way import are handled (depending on the producer)
|
| | | | |
| | | | |
| | | | |
| | | | | |
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.
|
| | | | |
| | | | |
| | | | |
| | | | | |
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..
|
| | | |/
| | |/| |
|
| |/ /
| | |
| | |
| | | |
In case user wants a fresh version of the current one and the website isn’t available, don’t erase it with a boring message saying wallabag wasn’t able to refresh the content.
|
| |\ \
| | | |
| | | | |
Fix tabs on material
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
|
| |\ \ \
| | | | |
| | | | | |
Fix baggy display on small screens
|
| | |/ / |
|
| |\ \ \
| | | | |
| | | | | |
German: improve existing and add missing translation
|
| | |/ / |
|
| |/ / |
|
| | |
| | |
| | |
| | | |
add links on small screens
|
|\ \ \
| | | |
| | | | |
Reset account
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Must now be >= 5.5.4
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Since SQLite doesn’t handle cascade remove by default, we need to handle it manually.
Also some refacto
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Switch to utf8mb4 instead of utf8 because f*** MySQL
See https://github.com/doctrine/dbal/pull/851
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- annotations
- tags
- entries
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Fix controller forward in WallabagRestController.
Update PHPDoc so it is sorted the same way as others one
Duplicate all annotations test to use both api & normal way
Also, make annotation tests independent to each other
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The generated error was “Unable to guess how to get a Doctrine instance from the request information.”.
I haven’t checked deeper in Doctrine (I know it was coming from the DoctrineParamConverter).
Anyway, I check for FosRest possiblity to add extra format without allowing them for every route (like it was done in the first place).
I finally found a way but it then seems all request goes to the FormatListener of FosRest so I needed to add a custom rules to match all request to be sure we don’t get a 406 error from FosRest.
Should be ok now …
|
| | |
| | |
| | | |
translate delete section to polish
|
|\ \ \
| | | |
| | | | |
API: ability to export entry in all available format (epub, pdf, etc...)
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Export isn't available for json & xml because user can use the default
entry endpoint instead.
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | |/ /
| |/| | |
|
| | | | |
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
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.
|
| |\ \ \ \
| | | | | |
| | | | | | |
Remove automatic closing of the window from bookmarklet
|
| | |/ / / |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
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.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
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
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Mostly when the tag doesn’t yet exist.
It was created each time it matche the rule… glups.
|