Support --html everywhere
[shpub.git] / src / shpub / Command / Note.php
index 1ea599b57e847386d596ee149513e8fde61d5bd7..1694243ef9cb3fa534900bffadb4b713d20c77c6 100644 (file)
@@ -3,19 +3,10 @@ namespace shpub;
 
 class Command_Note extends Command_AbstractProps
 {
 
 class Command_Note extends Command_AbstractProps
 {
-    /**
-     * @var Config
-     */
-    protected $cfg;
-
-    public function __construct($cfg)
-    {
-        $this->cfg = $cfg;
-    }
-
     public static function opts(\Console_CommandLine $optParser)
     {
         $cmd = $optParser->addCommand('note');
     public static function opts(\Console_CommandLine $optParser)
     {
         $cmd = $optParser->addCommand('note');
+        static::addOptHtml($cmd);
         static::optsGeneric($cmd);
         $cmd->addArgument(
             'text',
         static::optsGeneric($cmd);
         $cmd->addArgument(
             'text',
@@ -30,8 +21,8 @@ class Command_Note extends Command_AbstractProps
     public function run(\Console_CommandLine_Result $cmdRes)
     {
         $req = new Request($this->cfg->host, $this->cfg);
     public function run(\Console_CommandLine_Result $cmdRes)
     {
         $req = new Request($this->cfg->host, $this->cfg);
-        $req->req->addPostParameter('h', 'entry');
-        $req->req->addPostParameter('content', $cmdRes->args['text']);
+        $req->setType('entry');
+        $req->addContent($cmdRes->args['text'], $cmdRes->options['html']);
         $this->handleGenericOptions($cmdRes, $req);
 
         $res = $req->send();
         $this->handleGenericOptions($cmdRes, $req);
 
         $res = $req->send();