aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller
Commit message (Collapse)AuthorAgeFilesLines
* Fix reviewsThomas Citharel2017-06-201-10/+28
| | | | | | | | Encrypt username too Redirect to list after saving credentials Fix typos Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Crypt site credential passwordJeremy Benoist2017-06-201-0/+2
|
* Add a live test for restricted articleJeremy Benoist2017-06-201-3/+1
| | | | | | | It is not aimed to test if we can get the full article (since we aren't using real login/password) but mostly to test the full work (with authentication, etc.) Do not clean fixtured to avoid SQLite to re-use id for entry tag relation 😓
* Update route & user verificationJeremy Benoist2017-06-201-9/+27
|
* Add CRUD for site credentialsJeremy Benoist2017-06-201-0/+138
|
* remove craueconfig domain name setting and add a proper one in parametersThomas Citharel2017-06-061-1/+1
|
* Merge pull request #2708 from jcharaoui/import-disablecontentupdateJérémy Benoist2017-06-021-9/+2
|\ | | | | Import disableContentUpdate
| * Put default fetching error title in global configJerome Charaoui2017-06-011-3/+0
| |
| * Avoid returning objects passed by reference.Jerome Charaoui2017-06-011-6/+2
| | | | | | | | | | | | Objects are always passed by reference, so it doesn't make sense to return an object which is passed by reference as it will always be the same object. This change makes the code a bit more readable.
* | Page parameter was never used in the functionJeremy Benoist2017-06-012-4/+2
|/ | | | | It could have been used if we set the current page inside PreparePagerForEntries. But we did that in each controller because we can have an OutOfRangeCurrentPageException
* Isolated testsadev2017-05-311-2/+2
| | | | Use https://github.com/dmaicher/doctrine-test-bundle to have test isolation.
* TagController: ignore ActionMarkAsRead when removing tag from entryKevin Decherf2017-05-311-1/+1
| | | | | | Fixes #2835 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Move Tags assigner to a separate fileThomas Citharel2017-05-271-1/+1
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Renamed methodsNicolas LÅ“uillet2017-03-311-2/+2
|
* Refactored codeNicolas LÅ“uillet2017-03-311-24/+16
|
* Allow to remove all archived entriesThomas Citharel2017-03-311-1/+58
| | | | | | Since we still support fucking SQLite, we need to retrieve all tags & annotations for archived entries before deleting them. Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Rename method from *username to *userThomas Citharel2017-03-301-1/+1
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Merge pull request #2702 from wallabag/add-index-uuidNicolas LÅ“uillet2016-12-291-5/+5
|\ | | | | Added index on entry.uuid
| * Renamed uuid to uidNicolas LÅ“uillet2016-12-291-5/+5
| |
| * Changed uuid type in databaseNicolas LÅ“uillet2016-12-251-3/+0
| |
| * Fixed index on entry.uuid and changed uuid field typeNicolas LÅ“uillet2016-12-251-0/+3
| |
* | Fixed export by tags with a tag which contains spaceNicolas LÅ“uillet2016-12-271-1/+1
|/
* Removed outputWalkers for RSS and APINicolas LÅ“uillet2016-12-151-1/+1
|
* Removed outputWalkers for paginationNicolas LÅ“uillet2016-12-151-1/+1
| | | | Due to overload, we disabled output walkers (see https://github.com/whiteoctober/Pagerfanta/issues/115
* Fixed search bugNicolas LÅ“uillet2016-12-151-1/+1
|
* Fix tests & deprecation noticeJeremy Benoist2016-12-153-11/+19
|
* Renamed view_mode by list_mode and hide excerptNicolas LÅ“uillet2016-11-281-1/+1
|
* Added list viewNicolas LÅ“uillet2016-11-281-0/+21
|
* Add RSS paginationJeremy Benoist2016-11-201-7/+29
| | | | Following https://tools.ietf.org/html/rfc5005#page-4
* Added translations and currentRoute parameterNicolas LÅ“uillet2016-11-191-2/+4
|
* Added a simple search engineNicolas LÅ“uillet2016-11-192-3/+32
| | | | Fix #18
* Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-11-191-0/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # .editorconfig # docs/de/index.rst # docs/de/user/import.rst # docs/en/index.rst # docs/en/user/configuration.rst # docs/en/user/import.rst # docs/fr/index.rst # docs/fr/user/import.rst # src/Wallabag/CoreBundle/Command/InstallCommand.php # src/Wallabag/CoreBundle/Resources/translations/messages.da.yml # src/Wallabag/CoreBundle/Resources/translations/messages.de.yml # src/Wallabag/CoreBundle/Resources/translations/messages.en.yml # src/Wallabag/CoreBundle/Resources/translations/messages.es.yml # src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml # src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml # src/Wallabag/CoreBundle/Resources/translations/messages.it.yml # src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml # src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml # src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml # src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml # src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml # src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig # web/bundles/wallabagcore/themes/baggy/css/style.min.css # web/bundles/wallabagcore/themes/baggy/js/baggy.min.js # web/bundles/wallabagcore/themes/material/css/style.min.css # web/bundles/wallabagcore/themes/material/js/material.min.js
| * Changed behavior when we change languageNicolas LÅ“uillet2016-11-101-0/+2
| | | | | | | | No need to disconnect to apply the language substitution
* | CleanupJeremy Benoist2016-11-031-2/+0
| |
* | Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-11-032-6/+18
|\|
| * Fixed entries export filtered with a tagNicolas LÅ“uillet2016-10-291-6/+17
| | | | | | | | Fix #2505
| * Added tag label in the page titleNicolas LÅ“uillet2016-10-261-0/+1
| | | | | | | | Fix #2472
* | Merge pull request #2180 from wallabag/download-picturesJeremy Benoist2016-11-031-0/+14
|\ \ | | | | | | Download pictures
| * | Use custom event instead of Doctrine onesJeremy Benoist2016-11-011-0/+14
| | | | | | | | | | | | This give us ability to use Entry ID to determine where to store images and it’s then more easy to remove them when we remove the entry.
* | | Added QRCode and link to configure android applicationNicolas LÅ“uillet2016-10-311-0/+1
|/ /
* | Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-10-241-0/+9
|\|
| * If reload content failed, don’t update itJeremy Benoist2016-10-201-0/+9
| | | | | | | | 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.
* | Use statements & update translationJeremy Benoist2016-10-221-5/+5
| |
* | CSJeremy Benoist2016-10-221-3/+4
| |
* | Avoid orphan tagsJeremy Benoist2016-10-221-2/+14
| |
* | Add custom doctrine subscriber for SQLiteJeremy Benoist2016-10-221-11/+30
| | | | | | | | | | | | Since SQLite doesn’t handle cascade remove by default, we need to handle it manually. Also some refacto
* | Add ability to reset some datasJeremy Benoist2016-10-221-0/+42
| | | | | | | | | | | | - annotations - tags - entries
* | Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-10-112-105/+21
|\|
| * Optimize the way tag list is renderedJeremy Benoist2016-10-091-2/+17
| | | | | | | | | | | | 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
| * Merge pull request #2351 from wallabag/fix-api-client-deletionNicolas LÅ“uillet2016-10-081-101/+0
| |\ | | | | | | Changed relation between API client and refresh token