aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/EntryController.php
Commit message (Collapse)AuthorAgeFilesLines
* Use only one method to randomizeJeremy Benoist2018-10-121-83/+14
| | | | Instead of one per type, one for all is ok.
* Fix testsJeremy Benoist2018-10-121-99/+89
|
* Added random featureNicolas Lœuillet2018-10-111-0/+105
|
* Jump to Symfony 3.4Jeremy Benoist2018-10-041-1/+1
| | | | | | | 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 atJeremy Benoist2018-09-211-2/+0
|
* Fix empty title and domain_name when exception is thrown during fetchKevin Decherf2017-12-131-0/+8
| | | | | | | | | | Add a new helper to set a default title when it's empty: 1/ use basename part of entry's path, if any 2/ or use domain name Fixes #2053 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* CSJeremy Benoist2017-10-091-1/+1
|
* 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.
* add a dedicated title for all entries pageNicolas Hart2017-07-271-0/+1
|
* Fix testsJeremy Benoist2017-07-031-1/+1
|
* Add a real configuration for CS-FixerJeremy Benoist2017-07-011-132/+128
|
* 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-011-2/+1
|/ | | | | 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
* Rename method from *username to *userThomas Citharel2017-03-301-1/+1
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* 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
|
* 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-151-5/+13
|
* Added translations and currentRoute parameterNicolas Lœuillet2016-11-191-2/+4
|
* Added a simple search engineNicolas Lœuillet2016-11-191-2/+31
| | | | Fix #18
* 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.
* 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.
* Removed duplicated templates filesNicolas Lœuillet2016-09-301-1/+1
|
* Avoid losing entry when fetching failJeremy Benoist2016-09-171-21/+29
| | | | Instead of just say “Failed to save entry” we’ll save the entry at all cost and try to fetch content. If fetching content failed, the entry will still be saved at least, but without content.
* Add untagged entriesNicolas Lœuillet2016-08-281-0/+19
| | | | Fix #1631
* Update testJeremy Benoist2016-08-241-16/+14
| | | | and some cleanup
* Change share entry behaviorNicolas Lœuillet2016-08-231-4/+47
|
* Add Cache on Share ActionNicolas Lœuillet2016-08-231-0/+2
|
* Add migrationNicolas Lœuillet2016-08-231-3/+2
|
* Share entry with a public URLNicolas Lœuillet2016-08-231-0/+31
|
* Links on each tag in Tags viewNicolas Lœuillet2016-08-231-3/+3
|
* Fixed some translationsNicolas Lœuillet2016-08-181-1/+1
|
* Replaced favorite word/icon with star oneNicolas Lœuillet2016-08-181-1/+1
| | | | Fix #2041
* Try to find bad redirection after deleteJeremy Benoist2016-06-171-3/+4
| | | | | Instead of checking for the whole absolute url, we just check with the relative url. If the referer ends with the relative url of the deleted entry, don't redirect to the referer.
* Display a message when saving an entry failedJeremy Benoist2016-05-301-5/+12
| | | | | When saving an entry fail because of database error we previously just returned `false`. Now we got an error in the log and the displayed notice to the user is updated too.
* Fix redirect when delete entryNicolas Lœuillet2016-04-151-1/+1
|
* Redirect to homepage if referer is nullNicolas Lœuillet2016-04-151-3/+11
| | | | Fix #1924
* Convert array + phpDocJeremy Benoist2016-04-121-16/+16
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Change visibility of checkIfEntryAlreadyExists method to privateNicolas Lœuillet2016-04-101-1/+1
|
* Refactor EntryControllerNicolas Lœuillet2016-04-091-6/+14
|
* Fix duplicate article when added via the bookmarkletNicolas Lœuillet2016-04-081-1/+7
|
* Fix some Scrutinizer issuesJeremy Benoist2016-03-271-3/+1
|
* Add flashes messagesJeremy Benoist2016-03-201-8/+18
|
* Fix #1551 - Redirect to the last page when current page is out of rangeMaxime LECLERCQ2016-02-191-1/+8
|
* SensioLabsInsight fixesNicolas Lœuillet2016-01-221-1/+1
|
* [#1604] First draft to fix SensioLabsInsight reportNicolas Lœuillet2016-01-221-1/+1
|