aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Command
Commit message (Collapse)AuthorAgeFilesLines
* Fix MySQL tests on HHVMJeremy Benoist2016-04-121-1/+1
|
* Move setup config outside setupAdminJeremy Benoist2016-04-111-4/+15
| | | | If user doesn't want to create a new admin (even if it's recommended) the internal config weren't created resulting in error when using the interface.
* Force server version to avoid connexion errorJeremy Benoist2016-04-101-1/+7
| | | | | When installing a new project with MySQL, if the database doesn't exist before installation will fail because DBAL will try to get the server version by querying it. And since this query is done using the default database connexion and since the database doesn't exist, DBAL can't connect to the server.
* Fix internal settingsNicolas Lœuillet2016-04-091-5/+0
| | | | Fix #1867: remove download_picture setting and manage show_printlink in material theme
* Check selected PDO driver on installJeremy Benoist2016-04-011-3/+4
| | | | Instead of checking that one of the DB driver is installed we retrieve the selected driver (in parameters) and see if the extension exists.
* Remove some complexicity in InstallCommandJeremy Benoist2016-03-281-8/+6
|
* Fix some Scrutinizer issuesJeremy Benoist2016-03-271-11/+12
|
* Added setting to have a personal reading timeNicolas Lœuillet2016-03-141-0/+1
|
* Skipping all Posgres test for wallabag:installJeremy Benoist2016-02-291-1/+1
| | | | | | | | | | | | | | We already faced this problem but we are facing it again. https://github.com/wallabag/wallabag/commit/d502762598db68ec822078642df8f6a8214202f7 It seems we can drop a database properly using wallabag:install. The server log keep saying: ERROR: source database "template1" is being accessed by other users DETAIL: There is 1 other session using the database. STATEMENT: CREATE DATABASE "wallabag_test" Which means, it can't remove the database wallabag_test because one other person is using it.
* Fix wrong variable nameJeremy Benoist2016-02-241-1/+1
| | | | > The variable $requirement does not exist.
* remove unused functions & clean composer.jsonThomas Citharel2016-02-231-2/+0
|
* add composer extensions check & function_exists checksThomas Citharel2016-02-231-7/+23
|
* Enhance requirements in InstallCommandNicolas Lœuillet2016-02-231-20/+19
|
* Change wording for create a new userJeremy Benoist2016-02-231-1/+1
|
* Use internal config instead for demoJeremy Benoist2016-02-221-0/+10
|
* Fix #1137: implemented PiwikNicolas Lœuillet2016-02-191-0/+15
|
* Add env=prod for server:run on installJeremy Benoist2016-02-121-1/+1
|
* User created via wallabag:install is now a SUPER_ADMIN :crown:Nicolas Lœuillet2016-02-051-0/+1
|
* Merge pull request #1612 from wallabag/v2-settings-pageNicolas Lœuillet2016-02-041-4/+114
|\ | | | | Settings page
| * Add new export configJeremy Benoist2016-01-311-0/+20
| |
| * CSJeremy Benoist2016-01-311-1/+1
| |
| * Create internal setting on install & fixturesJeremy Benoist2016-01-311-0/+90
| |
| * 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/+0
|/
* Add tests on TagAllCommandJeremy Benoist2016-01-211-1/+1
| | | | Some simple tests
* Update readme & fix console permissionJeremy Benoist2016-01-151-2/+1
|
* Symfony Upgrade Fixer FTWJeremy Benoist2016-01-151-4/+5
| | | | symfony-upgrade-fixer fix src/Wallabag/
* Few phpDoc fixJeremy Benoist2016-01-031-1/+0
| | | | And some little mistakes
* Update after previous mergeJeremy Benoist2016-01-021-124/+0
| | | | PR #1443 was merged into this branch to handle all import type in the same place.
* form to upload fileNicolas Lœuillet2016-01-021-1/+2
|
* create controller to launch import commandNicolas Lœuillet2016-01-021-8/+11
|
* userId is now set in parametersNicolas Lœuillet2016-01-021-2/+10
|
* first draft for json import, needed for wallabag v1 migrationNicolas Lœuillet2016-01-021-0/+112
|
* Add a command to automatically tag all entries for a userKévin Gomez2015-11-111-0/+66
|
* Skipping PostgreSQL test that drop databaseJeremy Benoist2015-11-071-1/+6
| | | | | | For a not-clear reason, I can't properly drop the current database. Even if Doctrine made a special case for that (https://github.com/doctrine/dbal/pull/849). So instead of trying crazy things to achieve the test, better way is to skip test (too much wasted days ..)
* Re-enable test on doctrine commandJeremy Benoist2015-11-071-2/+2
| | | | | | It will slow down the whole test suite (because it'll use doctrine command). Remove unecessary `KernelTestCase`. Also rename `AbstractControllerTest` to `WallabagApiTestCase` for consistency.
* Fix database already exist detectionJeremy Benoist2015-11-071-0/+6
| | | | This is not the same message exception from MySQL & SQLite with Postgres.
* Fix deprecated helper in commandJeremy Benoist2015-11-061-21/+24
|
* material design for register/login/recover pagesNicolas Lœuillet2015-10-051-2/+3
|
* remove old implementation for login/register/recoverNicolas Lœuillet2015-10-031-1/+1
|
* Fix testsJeremy Benoist2015-09-121-2/+3
| | | | | | | Ensure that created use during install command will always be unique. We assume that the install command must be run to initialize a wallabag instance. NEVER to add more user. Also, use a better way to retrieve the real name of the database and not the one defined in parameters.yml (which isn't the same for test envi because the dbname isn't defined in parameters.yml but directly in config_test.yml)
* implement FosUserNicolas Lœuillet2015-09-111-0/+1
|
* CSJeremy Benoist2015-05-301-5/+5
|
* Ability to prefix tablesJeremy2015-04-011-2/+3
| | | | Will fix #799
* Add rss for entriesJeremy2015-03-311-0/+1
| | | | will fix #1000
* sqlite doesn't support getListDatabasesSQLJeremy2015-02-221-0/+11
|
* Improve install command & add testJeremy2015-02-221-63/+207
| | | | | | Also add fixtures for Config InstallCommand now check if database, schema are here and ask the user what to do (keep or trash & re-create)
* Handle default value for new userJeremy2015-02-221-5/+4
|
* Implement simple configJeremy2015-02-161-15/+7
|
* Update UserConfig schemaJeremy2015-02-161-6/+6
|