aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAgeFilesLines
* fixup! Debug MySQL failingdropping-php5Jeremy Benoist2018-10-293-46/+3
|
* fixup! Debug MySQL failingJeremy Benoist2018-10-296-24/+86
|
* fixup! Debug MySQL failingJeremy Benoist2018-10-292-7/+26
|
* fixup! Debug MySQL failingJeremy Benoist2018-10-292-1/+4
|
* Debug MySQL failingJeremy Benoist2018-10-292-2/+2
|
* Jump to unrelease predisJeremy Benoist2018-10-241-1/+1
| | | | To fix deprecated message regarding `each()`
* CleanupJeremy Benoist2018-10-2412-89/+67
|
* Fix RulerZBundleJeremy Benoist2018-10-241-1/+1
| | | | | People should really follow semver and provide UPGRADE file when they provide a library ...
* Jump to PHP 7.1+Jeremy Benoist2018-10-241-3/+3
|
* Merge pull request #3574 from shulard/feature/rename-tagsJérémy Benoist2018-10-1528-13/+247
|\ | | | | Allow to rename tags from the web interface.
| * Update assetsJeremy Benoist2018-09-256-8/+7
| |
| * Add tests about the tag renaming process.Stéphane HULARD2018-09-251-0/+45
| |
| * Add specific styles for the card tag form element.Stéphane HULARD2018-09-253-3/+23
| | | | | | | | Also add a `.hidden` class in the baggy theme to have consistency with material.
| * Add translations about latest Tag changes.Stéphane HULARD2018-09-2514-1/+43
| | | | | | | | Add new translations in each language file.
| * Update tag list template to allow renaming.Stéphane HULARD2018-09-253-4/+46
| | | | | | | | | | | | | | | | * Add a form on each tag to handle rename action. * Add JavaScript to handle action on the corresponding page inside the global index.js file. * Add support for the 2 active themes : material / baggy The form solution is cleaner than an Ajax one because it let the browser validate input data and make the POST easier without the need to handle JSON response.
| * Add RenameForm as tag list view parameters.Stéphane HULARD2018-09-251-0/+6
| | | | | | | | | | This will help handling the CSRF protection token and use symfony HTML generation layer. Also a FormView instance is generated for each tag because we need to render a form for each tag and FormView are not reusable.
| * Create a new Tag action to rename tags.Stéphane HULARD2018-09-251-0/+45
| | | | | | | | The current tag is removed from all the current logged user entries. Then the new one is created and attached.
| * Rename Tag : Add a new FormTypeStéphane HULARD2018-09-251-0/+35
| |
* | Merge pull request #3216 from wallabag/change-locale-registerJérémy Benoist2018-10-1510-7/+102
|\ \ | | | | | | Added possibility to change locale from login/register pages
| * | Ensure language is validJeremy Benoist2018-10-136-9/+76
| | | | | | | | | | | | | | | - Do not override locale if user has choosen a locale from the login screen. - Add some tests about locale url
| * | Added possibility to change locale from login/register pagesNicolas Lœuillet2018-10-136-3/+31
|/ /
* | Merge pull request #3596 from glego/add-secure-emailJérémy Benoist2018-10-112-8/+14
|\ \ | | | | | | Add secure email
| * | Add secure emailGlenn Goffin2018-10-112-8/+14
|/ /
* | Merge pull request #3731 from wallabag/symfony3.4Jérémy Benoist2018-10-0834-62/+132
|\ \ | |/ |/| Jump to Symfony 3.4
| * Jump to Symfony 3.4Jeremy Benoist2018-10-0434-62/+132
|/ | | | | | | Thanks to the BC compatibility, almost nothing have to be changed. All changes are related to new bundle version of: - SensioFrameworkExtraBundle - DoctrineFixturesBundle
* Merge pull request #3630 from sviande/archived_atJérémy Benoist2018-09-2115-19/+136
|\ | | | | Entry: add archived_at property and updateArchived method
| * Sort archive page by archived atJeremy Benoist2018-09-212-3/+1
| |
| * Code StyleSébastien Viande2018-09-211-1/+1
| |
| * Entry: add sort parameter archivedSébastien Viande2018-09-212-1/+3
| |
| * Entry: add archived_at property and updateArchived methodSébastien Viande2018-09-2113-15/+132
|/
* Merge remote-tracking branch 'origin/master' into 2.4Jeremy Benoist2018-09-215-11/+14
|\
| * Merge pull request #3726 from wallabag/fix-testsJérémy Benoist2018-09-215-11/+14
| |\ | | | | | | Liberation goes https
| | * Liberation goes httpsJeremy Benoist2018-09-215-11/+14
| |/
* | Merge remote-tracking branch 'origin/master' into 2.4Jeremy Benoist2018-09-165-7/+26
|\|
| * Merge pull request #3719 from wallabag/fix-sort-parametersKevin Decherf2018-09-075-7/+26
| |\ | | | | | | Fix sort parameters
| | * Updating node to 6.10Jeremy Benoist2018-09-072-2/+6
| | | | | | | | | | | | Same as defined in .travis.yml
| | * Fix testsJeremy Benoist2018-09-071-4/+4
| | |
| | * Jump to the new Scrutinizer PHP analysis engineJeremy Benoist2018-09-071-0/+15
| | |
| | * Add missing parametersJeremy Benoist2018-09-071-1/+1
| |/ | | | | | | Parameters weren’t passed to the sub function.
* | Merge remote-tracking branch 'origin/master' into 2.4Jeremy Benoist2018-09-0776-744/+246
|\|
| * Merge pull request #3712 from wallabag/refactor-entry-queriesJérémy Benoist2018-09-072-16/+55
| |\ | | | | | | Rename getBuilderByUser and refactor query for untagged entries
| | * php-cs-fixerKevin Decherf2018-09-051-7/+7
| | | | | | | | | | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
| | * EntryRepository: refactor getBuilderForUntaggedByUserKevin Decherf2018-09-051-3/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | Improve SQL performance by replacing size(e.tags) with a left join and a null condition Move the QueryBuilder logic into getRawBuilderForUntaggedByUser Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
| | * EntryRepository: refactor getBuilderByUserKevin Decherf2018-09-051-12/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We refactor getBuilderByUser to separate QueryBuilder getter and the orderBy(). The previous code of getBuilderByUser() has been moved to getSortedQueryBuilderByUser(). getBuildByUser() now returns a QueryBuilder without the call to orderBy(). A new method named sortQueryBuilder() returns a given QueryBuilder with an orderBy() call using given sort parameters. Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
| | * AnnotationRepository: rename getBuilderByUserKevin Decherf2018-09-051-2/+2
| | | | | | | | | | | | | | | | | | | | | We rename getBuilderByUser to getSortedQueryBuilderByUser as long as the method currently returns a QueryBuilder with an orderBy() Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
| * | Merge pull request #3717 from wallabag/php-72Kevin Decherf2018-09-061-1/+0
| |\ \ | | |/ | |/| PHP 7.2 shouldn't fail
| | * PHP 7.2 shouldn't failJérémy Benoist2018-09-061-1/+0
| |/
| * Merge pull request #3716 from wallabag/csfixerJérémy Benoist2018-09-0548-89/+89
| |\ | | | | | | php-cs-fixer: native_function_invocation
| | * php-cs-fixerKevin Decherf2018-09-0548-89/+89
| |/ | | | | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
| * Merge pull request #3707 from wallabag/fix-test-de-atJérémy Benoist2018-08-192-14/+3
| |\ | | | | | | Removing failing test from Travis