Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | Add tests for logic | Tobi823 | 2018-09-21 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | Try to translate the title of a PDF from UTF-8 (then UTF-16BE, then WINDOWS-1252) to UTF-8 | |||||
| * | | | Try to detect the character encoding in PDFs and try to translate | Tobi823 | 2018-09-21 | 1 | -13/+33 | |
| | | | | | | | | | | | | | | | | the title from the PDF to UTF-8 | |||||
| * | | | Remove type declaration for PHP 5 compatibility | Tobi823 | 2018-09-21 | 1 | -1/+1 | |
| | | | | ||||||
| * | | | Bugfix: Sanitize the title of a saved webpage from invalid UTF-8 characters | Tobi823 | 2018-09-21 | 1 | -0/+23 | |
| | | | | ||||||
* | | | | Merge pull request #3574 from shulard/feature/rename-tags | Jérémy Benoist | 2018-10-15 | 18 | -5/+156 | |
|\ \ \ \ | | | | | | | | | | | Allow to rename tags from the web interface. | |||||
| * | | | | Add translations about latest Tag changes. | Stéphane HULARD | 2018-09-25 | 14 | -1/+43 | |
| | | | | | | | | | | | | | | | | | | | | Add new translations in each language file. | |||||
| * | | | | Update tag list template to allow renaming. | Stéphane HULARD | 2018-09-25 | 2 | -4/+27 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 HULARD | 2018-09-25 | 1 | -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 HULARD | 2018-09-25 | 1 | -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 FormType | Stéphane HULARD | 2018-09-25 | 1 | -0/+35 | |
| | | | | | ||||||
* | | | | | Ensure language is valid | Jeremy Benoist | 2018-10-13 | 3 | -8/+13 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | - 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 pages | Nicolas Lœuillet | 2018-10-13 | 5 | -3/+30 | |
| | | | | | ||||||
* | | | | | Jump to Symfony 3.4 | Jeremy Benoist | 2018-10-04 | 21 | -35/+63 | |
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | Thanks to the BC compatibility, almost nothing have to be changed. All changes are related to new bundle version of: - SensioFrameworkExtraBundle - DoctrineFixturesBundle | |||||
* | | | | Sort archive page by archived at | Jeremy Benoist | 2018-09-21 | 2 | -3/+1 | |
| | | | | ||||||
* | | | | Code Style | Sébastien Viande | 2018-09-21 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Entry: add sort parameter archived | Sébastien Viande | 2018-09-21 | 2 | -1/+3 | |
| | | | | ||||||
* | | | | Entry: add archived_at property and updateArchived method | Sébastien Viande | 2018-09-21 | 9 | -10/+57 | |
|/ / / | ||||||
* | | | Add missing parameters | Jeremy Benoist | 2018-09-07 | 1 | -1/+1 | |
| | | | | | | | | | | | | Parameters weren’t passed to the sub function. | |||||
* | | | php-cs-fixer | Kevin Decherf | 2018-09-05 | 1 | -7/+7 | |
| | | | | | | | | | | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com> | |||||
* | | | EntryRepository: refactor getBuilderForUntaggedByUser | Kevin Decherf | 2018-09-05 | 1 | -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 getBuilderByUser | Kevin Decherf | 2018-09-05 | 1 | -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 getBuilderByUser | Kevin Decherf | 2018-09-05 | 1 | -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> | |||||
* | | | php-cs-fixer | Kevin Decherf | 2018-09-05 | 34 | -57/+57 | |
| |/ |/| | | | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com> | |||||
* | | Fixes a typo | Aleksandar Todorović (r3bl) | 2018-08-10 | 1 | -1/+1 | |
| | | ||||||
* | | More robust srcset image attribute handling | Simounet | 2018-07-12 | 1 | -3/+8 | |
| | | | | | | | | Linked to HTMLawed PR https://github.com/kesar/HTMLawed/pull/17 | |||||
* | | wallabag logo (side-nav) replaced by an SVG one | Simounet | 2018-07-11 | 1 | -1/+1 | |
| | | ||||||
* | | wallabag logo with typo replaced by an SVG one | Simounet | 2018-07-11 | 3 | -3/+3 | |
| | | ||||||
* | | Autofocus the username field on the login page | Simounet | 2018-07-11 | 1 | -1/+1 | |
| | | ||||||
* | | Fix image downloading on null image path | Simounet | 2018-07-05 | 1 | -0/+4 | |
| | | ||||||
* | | We should able to get the table name unescaped | Jeremy Benoist | 2018-06-14 | 1 | -1/+7 | |
| | | | | | | | | When we want to perform complex queries to retrieve metadata from the database | |||||
* | | Fixed migrations with dash into db name | Jeremy Benoist | 2018-06-14 | 1 | -0/+43 | |
| | | ||||||
* | | Merge pull request #3668 from wallabag/fix-tests | Jérémy Benoist | 2018-06-07 | 1 | -1/+0 | |
|\ \ | | | | | | | Fix tests | |||||
| * | | Fix tests | Jeremy Benoist | 2018-06-06 | 1 | -1/+0 | |
| | | | ||||||
* | | | Merge pull request #3614 from comradekingu/patch-3 | Jérémy Benoist | 2018-06-06 | 1 | -3/+3 | |
|\ \ \ | |/ / |/| | | Spelling: GitHub, Log out, of the dev | |||||
| * | | GitHub, Log out, of the dev | Allan Nordhøy | 2018-03-25 | 1 | -3/+3 | |
| |/ | ||||||
* | | Fix authors and preview alt encoding display | Simounet | 2018-06-04 | 1 | -2/+2 | |
| | | ||||||
* | | Merge pull request #3646 from Quenty31/master | Jérémy Benoist | 2018-06-01 | 2 | -5/+5 | |
|\ \ | | | | | | | [i18n] Occitan update | |||||
| * | | Update wallabag_user.oc.yml | Quentí | 2018-05-06 | 1 | -1/+1 | |
| | | | ||||||
| * | | Update wallabag_user.oc.yml | Quentí | 2018-05-05 | 1 | -1/+1 | |
| | | | | | | | | | Mens dialectal, mai estandard | |||||
| * | | Update messages.oc.yml | Quentí | 2018-05-05 | 1 | -4/+4 | |
| | | | ||||||
* | | | Fix srcset attribute on images downloaded | Simounet | 2018-06-01 | 1 | -3/+33 | |
|/ / | ||||||
* / | Better encoding of the URI for the bookmarklet | Floran Brutel | 2018-04-01 | 1 | -1/+1 | |
|/ | ||||||
* | Merge pull request #3592 from Simounet/fix/html-entities-on-default-title | Jérémy Benoist | 2018-02-24 | 4 | -6/+6 | |
|\ | | | | | Fix title card HTML parsing | |||||
| * | Fix title card HTML parsing | Simounet | 2018-02-12 | 4 | -6/+6 | |
| | | ||||||
* | | Fix error when withRemove variable is not defined. | Stéphane HULARD | 2018-01-23 | 1 | -1/+1 | |
|/ | | | | | | Since the withRemove variable is a template flag, it can be undefined. In the Entry\Card\_content.html.twig template for example, the withRemove variable is not defined. | |||||
* | Nav close button alignment and nav boxes improved | Simounet | 2018-01-12 | 4 | -40/+38 | |
| | ||||||
* | Label replaced by a button on the nav search form | Simounet | 2018-01-12 | 3 | -2/+2 | |
| | ||||||
* | Label replaced by a button on the nav new entry form | Simounet | 2018-01-12 | 2 | -1/+1 | |
| | ||||||
* | Merge pull request #3536 from wallabag/tag-link-3534 | Nicolas Lœuillet | 2018-01-03 | 3 | -3/+3 | |
|\ | | | | | Fix broken link to remove tags from entries | |||||
| * | Fix broken link to remove tags from entries | Kevin Decherf | 2017-12-27 | 3 | -3/+3 | |
| | | | | | | | | | | | | Fixes #3534 Signed-off-by: Kevin Decherf <kevin@kdecherf.com> |