aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/config
Commit message (Collapse)AuthorAgeFilesLines
* Added logger when we match Tagging rulesNicolas Lœuillet2017-05-121-0/+1
|
* Skip auth when no credentials are foundJeremy Benoist2017-05-091-0/+3
| | | | If we can’t find a credential for the current host, even if it required login, we won’t add them and website will be fetched without any login.
* Improved Guzzle subscribers extensibilityBertrand Dunogier2017-05-041-1/+2
| | | | Allows 3rd parties to register new guzzle subscribers by adding extra calls to the http_client_factory service.
* Added notmatches operator for tagging ruleNicolas Lœuillet2017-04-201-0/+10
|
* Log restricted access valueJeremy Benoist2017-02-131-0/+1
| | | | It might help to figure out if we have enabled it or not
* Update RulerZKévin Gomez2017-02-051-2/+2
|
* Firefox add-on URL updatedSimounet2016-12-301-1/+1
|
* Retain imported content if fetching fails, fixes #2658Jerome Charaoui2016-12-021-0/+1
|
* Updated addons linksNicolas Lœuillet2016-12-011-2/+3
|
* Added internal setting to enable/disable articles with paywallNicolas Lœuillet2016-11-221-0/+1
|
* Added authentication for restricted access articlesBertrand Dunogier2016-11-221-0/+32
| | | | Fix #438. Thank you so much @bdunogier
* Add ability to use Redis with passwordJeremy Benoist2016-11-201-0/+1
|
* Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-11-191-15/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # 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
| * User-agents have moved to site-configJeremy Benoist2016-11-141-15/+0
| | | | | | Since graby@1.5.0, user-agent can be defined in site-config, which the now recommended way
* | Added a configuration to define the redirection after archiving an entryNicolas Lœuillet2016-11-161-0/+1
| | | | | | | | Fix #496
* | Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-11-031-1/+2
|\|
| * Force user-agent for .slashdot.orgKevin Decherf2016-11-011-0/+1
| | | | | | | | | | | | | | | | Slashdot replaces actual content with a form regarding cookies when requests originate from France. By forcing the user-agent, the warning seems to go away. Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
| * Inject parameter instead of serviceJeremy Benoist2016-10-301-1/+1
| | | | | | | | | | We are injecting CraueConfig service when we only need to retrieve one or two values from it. Instead I discovered we can directly inject a value from a service in the service definition!
* | Use custom event instead of Doctrine onesJeremy Benoist2016-11-011-2/+4
| | | | | | | | 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.
* | Use doctrine event to download imagesJeremy Benoist2016-10-301-0/+19
| |
* | Move related event things in Event folderJeremy Benoist2016-10-301-2/+2
| |
* | Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-10-241-1/+1
|\|
| * If reload content failed, don’t update itJeremy Benoist2016-10-201-1/+1
| | | | | | | | 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.
* | Cleanup subscriber / listener definitionJeremy Benoist2016-10-221-11/+0
| |
* | Add custom doctrine subscriber for SQLiteJeremy Benoist2016-10-221-0/+18
|/ | | | | | Since SQLite doesn’t handle cascade remove by default, we need to handle it manually. Also some refacto
* 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
* Merge pull request #1941 from wallabag/v2-asynchronous-jobsJeremy Benoist2016-09-191-0/+8
|\ | | | | Use asynchronous jobs for imports
| * 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` -
* | Remove FooterControllerNicolas Lœuillet2016-09-151-4/+0
|/
* 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
|/
* Chrome extension URL updatedSimounet2016-07-201-1/+1
|
* Handling socials links into a config fileSimounet2016-07-201-0/+12
|
* 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
|/