aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/EntryController.php
Commit message (Collapse)AuthorAgeFilesLines
* 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
* fix #1502 avoid duplicate entry and store pocket url in configNicolas Lœuillet2016-01-021-0/+14
|
* Merge pull request #1546 from wallabag/v2-reload-contentNicolas Lœuillet2016-01-021-0/+27
|\ | | | | v2 – Ability to reload an entry
| * Ability to reload an entryJeremy Benoist2015-12-301-0/+27
| | | | | | | | | | | | Could be useful when we want to update the content or when the content failed to be fetched. Fix #1503
* | Fix wrong if when deleting an entryJeremy Benoist2015-12-301-1/+1
|/ | | | Bad condition when deleting an entry returned `true` instead of the referer url
* Don't redirect to the content page after deletionJeremy Benoist2015-12-281-2/+12
| | | | | | Fix #1512 We generate the url of the removed content and compare it to the referer url. If they matche, we redirect user to the homepage otherwise to the referer url.