aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/config/services.yml
Commit message (Collapse)AuthorAgeFilesLines
* Ensure orphan tag are remove in APIJeremy Benoist2016-10-071-1/+1
| | | | | | When the association between a tag and an entry is removed, if the tag doesn’t have other entries, we can remove it. Also add more tests for that part and ensure TagControllerTest is isolated from the rest of the test suite (finally!)
* Add ability to use socketJeremy Benoist2016-10-071-1/+2
| | | | For Redis & MySQL
* Merge pull request #2322 from wallabag/v2-404Nicolas Lœuillet2016-10-011-0/+6
|\ | | | | Customize errors templates
| * Customize errors templatesJeremy Benoist2016-10-011-0/+6
| | | | | | | | All error goes to the same template which only display the error message and the status code.
* | Create user config in one placeJeremy Benoist2016-09-301-11/+0
|/ | | | | | | | Using a listener, user config is now created when a user: - is created from the command line - register (with or without email confirmation) - is created from the config panel
* Enable Redis async importJeremy Benoist2016-09-111-0/+8
| | | | | | | | - using javibravo/simpleue - internal config value are now `import_with_redis` & `import_with_rabbit` which are more clear - if both option are enable rabbit will be choosen - services imports related to async are now splitted into 2 files: `redis.yml` & `rabbit.yml` -
* Added tags counter in sidebar (material theme)Nicolas Lœuillet2016-09-041-2/+0
|
* Merge pull request #2002 from wallabag/feature-display-itemsNumberJeremy Benoist2016-09-031-0/+2
|\ | | | | Feature display items number
| * Store cache lifetime in configNicolas Lœuillet2016-09-031-0/+2
| |
* | Links on each tag in Tags viewNicolas Lœuillet2016-08-231-0/+6
|/
* Redirect to homepage if referer is nullNicolas Lœuillet2016-04-151-0/+5
| | | | Fix #1924
* Lost in translation pagerNicolas Lœuillet2016-04-121-8/+0
|
* Improve pagination when user has lot of entriesNicolas Lœuillet2016-04-121-8/+16
| | | | | Fix #1905 * Usage of whiteoctober/WhiteOctoberPagerfantaBundle
* Force user-agent for iansommerville.comJeremy Benoist2016-03-181-1/+16
| | | | | | | When using the default User Agent, the website returns a 403. By forcing the User Agent for this domain, we got the proper behavior: a 200 Since we can't _append_ new user agent to the default graby configuration, we need to rewrite all the default config + the new one. Fix #1801
* changed error messageNicolas Lœuillet2016-02-221-1/+1
|
* Display a human message when graby fails to fetch articlesNicolas Lœuillet2016-02-221-1/+1
|
* Move assignTagsToEntry in ContentProxy helperJeremy Benoist2016-02-191-0/+1
|
* Merge pull request #1612 from wallabag/v2-settings-pageNicolas Lœuillet2016-02-041-6/+6
|\ | | | | Settings page
| * Add CraueConfig for internal settingsJeremy Benoist2016-01-311-2/+2
| |
| * Move default configuration out of parametersJeremy Benoist2016-01-311-4/+4
| | | | | | | | These default configuration value shouldn't be in parameters.yml.
* | [#1604] First draft to fix SensioLabsInsight reportNicolas Lœuillet2016-01-221-1/+1
|/
* Move public assets for themesJeremy Benoist2016-01-221-1/+1
| | | | | So they can be installed using the `assets:install` command and there'll no longer symlink in the repo They moved from `web/themes/...` to `bundles/wallabagcore/themes/...`
* Fix recent updateJeremy Benoist2016-01-151-0/+8
| | | | | | - 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-15/+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-11/+11
| | | | symfony-upgrade-fixer fix src/Wallabag/
* Change the way to check for an existing entryJeremy Benoist2016-01-021-0/+1
| | | | The repository method return the entry found or false if nothing exists.
* Add matches operatorKévin Gomez2015-11-131-0/+10
|
* Fix the creation of the repository servicesKévin Gomez2015-11-111-4/+2
|
* Add a command to automatically tag all entries for a userKévin Gomez2015-11-111-0/+8
|
* Errors in the automatic tagging do not prevent the entry from being addedKévin Gomez2015-11-111-0/+1
|
* PoC of rule-based taggingKévin Gomez2015-11-111-0/+14
|
* Rework on exportJeremy Benoist2015-11-091-0/+6
| | | | | | - all export now return a `HttpFoundation\Response` - return a 404 on unsupported format - add tests
* Quoted entity to avoid reserved keywordJeremy Benoist2015-11-071-2/+4
| | | | Should fix #1498
* Fix security.context deprecationJeremy Benoist2015-11-071-1/+1
|
* Enable graby logJeremy Benoist2015-10-241-0/+4
|
* Language selection on config screenNicolas Lœuillet2015-10-151-0/+1
|
* Add test on RegistrationConfirmedListenerJeremy Benoist2015-10-031-2/+8
| | | | And PLEASE @nicosomb, NEVER EVER inject the whole container inside a service.
* * rename AuthenticationListenerNicolas Lœuillet2015-10-031-1/+1
| | | | * add tests
* * public registrationNicolas Lœuillet2015-10-031-0/+11
| | | | | * remove WSSE implementation * add oAuth2 implementation
* Move fetching content in a separate classJeremy Benoist2015-09-101-0/+7
|
* Integrate grabyJeremy Benoist2015-08-241-0/+3
|
* store domainName in databaseNicolas Lœuillet2015-08-121-5/+0
|
* Move API stuff in ApiBundleJeremy2015-04-011-12/+0
|
* Ability to prefix tablesJeremy2015-04-011-0/+4
| | | | Will fix #799
* Add rss for entriesJeremy2015-03-311-0/+7
| | | | will fix #1000
* Handle forgot passwordJeremy2015-03-081-0/+8
|
* Cleanup & simplify themeJeremy2015-03-011-0/+1
|
* Add LiipThemeBundleJeremy2015-03-011-1/+15
| | | | | | | | Re-defined the config / user relation to be OneToOne bidirectionnal. ConfigType is now a service so I can inject the list of available themes that are also used by LiipThemeBundle Force sqlite for test In case of people use a different driver in parameter.yml (yes I do :))
* replace services.xml into services.ymlNicolas Lœuillet2015-02-091-0/+15