Ejemplo n.º 1
0
 public function info($path = '.')
 {
     if ($this->has_svn) {
         $this->auth();
         return svn_status($path, SVN_NON_RECURSIVE | SVN_ALL);
     } else {
         ob_start();
         system("svn info " . $this->args());
         $st = ob_get_contents();
         ob_end_clean();
         \bbn\tools::hdump($st);
         return $this->parseCMD($st);
     }
 }