]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Enhance option in command
authorNicolas Lœuillet <nicolas@loeuillet.org>
Thu, 28 Apr 2016 11:41:36 +0000 (13:41 +0200)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Fri, 27 May 2016 07:43:49 +0000 (09:43 +0200)
docs/en/user/migration.rst
docs/fr/user/migration.rst
src/Wallabag/ImportBundle/Command/ImportCommand.php

index cfbca92217ea72c1be7269ad5cc538055eff79d5..420627969b70a018b5bfc3b8ab3f17a1c61ab244 100644 (file)
@@ -52,7 +52,7 @@ Please replace values:
 * ``1`` is the user identifier in database (The ID of the first user created on wallabag is 1)
 * ``~/Downloads/wallabag-export-1-2016-04-05.json`` is the path of your wallabag v1 export
 
-If you want to mark all these entries as read, you can add the ``--markAsRead=yes`` option.
+If you want to mark all these entries as read, you can add the ``--markAsRead`` option.
 
 To import a wallabag v2 file, you need to add the option ``--importer=v2``.
 
index a69df2952c7a6a7c66260c8760d96a7c11cc3d26..91f8bab2eb7a95e1f8b78ceafcb47ad208d98055 100644 (file)
@@ -38,8 +38,8 @@ Depuis votre nouvelle instance de wallabag, créez votre compte utilisateur puis
 .. note::
     S'il vous arrive des problèmes durant l'export ou l'import, n'hésitez pas à `demander de l'aide <https://www.wallabag.org/pages/support.html>`__.
 
-Import via via la ligne de commande (CLI)
------------------------------------------
+Import via la ligne de commande (CLI)
+-------------------------------------
 
 Si vous avez accès à la ligne de commandes de votre serveur web, vous pouvez exécuter cette commande pour import votre fichier wallabag v1 :
 
@@ -52,7 +52,7 @@ Remplacez les valeurs :
 * ``1`` est l'identifiant de votre utilisateur en base (l'ID de votre premier utilisateur créé sur wallabag est 1)
 * ``~/Downloads/wallabag-export-1-2016-04-05.json`` est le chemin de votre export wallabag v1
 
-Si vous voulez marquer tous ces articles comme lus, vous pouvez ajouter l'option ``--markAsRead=yes``.
+Si vous voulez marquer tous ces articles comme lus, vous pouvez ajouter l'option ``--markAsRead``.
 
 Pour importer un fichier wallabag v2, vous devez ajouter l'option ``--importer=v2``.
 
index f62176fc08345daadb3ed9bca341fe5960404c3a..a4aa8531183fae5fdbcca187fa29ec79be419e03 100644 (file)
@@ -18,7 +18,7 @@ class ImportCommand extends ContainerAwareCommand
             ->addArgument('userId', InputArgument::REQUIRED, 'User ID to populate')
             ->addArgument('filepath', InputArgument::REQUIRED, 'Path to the JSON file')
             ->addOption('importer', null, InputArgument::OPTIONAL, 'The importer to use: v1 or v2', 'v1')
-            ->addOption('markAsRead', null, InputArgument::OPTIONAL, 'Mark all entries as read: true/false', false)
+            ->addOption('markAsRead', null, InputArgument::OPTIONAL, 'Mark all entries as read', false)
         ;
     }
 
@@ -42,9 +42,7 @@ class ImportCommand extends ContainerAwareCommand
             $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v2.import');
         }
 
-        if ('yes' === $input->getOption('markAsRead')) {
-            $wallabag->setMarkAsRead(true);
-        }
+        $wallabag->setMarkAsRead($input->getOption('markAsRead'));
 
         $res = $wallabag
             ->setUser($user)