aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/EntryController.php
Commit message (Collapse)AuthorAgeFilesLines
* MOAR WIPThomas Citharel2017-06-231-0/+89
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* 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
|
* Fix bad type after using findByUrlAndUserIdJeremy Benoist2016-01-211-2/+2
| | | | | It returns an object since few commits this part of (untested) code still use an array. Also add test for that part of code.
* Merge pull request #1583 from wallabag/v2-fix-deleteNicolas Lœuillet2016-01-151-2/+1
|\ | | | | Fix `findOneByUrl` side effect in tests
| * Fix `findOneByUrl` side effect in testsJeremy Benoist2016-01-151-2/+1
| | | | | | | | Fix #1566
* | Merge pull request #1524 from wallabag/sf2.8Nicolas Lœuillet2016-01-151-7/+7
|\ \ | |/ |/| Upgrade to Symfony 3.0
| * Fix recent updateJeremy Benoist2016-01-151-1/+1
| | | | | | | | | | | | - some missing url parameters from WallabagRestController & EntryController - use a service for `EntryFilterType` to use fully qualified name instead (so changing class signature) - update ImportBundle (url & form)
| * Update bundle & stock fileJeremy Benoist2016-01-151-3/+3
| | | | | | | | | | | | - update stock file (AppKernel, app.php, etc ..) from SymfonyStandard edition) - update bundle to latest release - remove security on profiler
| * Symfony Upgrade Fixer FTWJeremy Benoist2016-01-151-4/+4
| | | | | | | | symfony-upgrade-fixer fix src/Wallabag/
* | Quickstart for beginnersNicolas Lœuillet2016-01-151-1/+6
|/
* Change the way to check for an existing entryJeremy Benoist2016-01-021-7/+6
| | | | The repository method return the entry found or false if nothing exists.
* - remove importers configurationNicolas Lœuillet2016-01-021-4/+4
| | | | - add check on userId for findOneByURL for entries