aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller
Commit message (Collapse)AuthorAgeFilesLines
* Added possibility to change locale from login/register pagesNicolas Lœuillet2017-12-121-0/+19
|
* Disable controller access if feature disabledJeremy Benoist2017-11-221-0/+18
| | | | If `restricted_access` is disabled, accessing `/site-credentials/` must be disabled.
* CSJeremy Benoist2017-10-094-4/+4
|
* Set a starred_at field when an entry is starred.François D2017-08-251-0/+1
| | | | | | | | This date is used to sort starred entries. Can not use Entry::timestamps method otherwise starred_at will be updated each time entry is updated. Add an updateStar method into Entry class A migration script has been added in order to set starred_at field.
* Reduce number of queries on tag listNicolas Hart2017-08-061-19/+2
|
* add a dedicated title for all entries pageNicolas Hart2017-07-271-0/+1
|
* Use the article domain as author for export filesÉtienne Gilli2017-07-081-0/+2
| | | | | | | When exporting an entry, use the domain name as author name for epub, mobi and pdf formats, instead of 'wallabag'. Change the author from array to string, because for now, there is always only one author.
* Fix testsJeremy Benoist2017-07-031-1/+1
|
* Add a real configuration for CS-FixerJeremy Benoist2017-07-018-225/+216
|
* Add all entries RSS feed and put links on tag page itself and baggy tooThomas Citharel2017-06-212-4/+21
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Fix typoJeremy Benoist2017-06-211-3/+3
|
* Fix getContainer in commandJeremy Benoist2017-06-211-1/+0
|
* Add RSS tags feedsJeremy Benoist2017-06-211-7/+74
|
* User existing service instead of getDoctrineJeremy Benoist2017-06-214-29/+25
|
* 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