Revision ranges aren't allowed for info and proplist in build()
authorRobert Sesek <rsesek@bluestatic.org>
Mon, 23 Jan 2006 05:20:23 +0000 (05:20 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Mon, 23 Jan 2006 05:20:23 +0000 (05:20 +0000)
includes/cachev.php

index 26bf9c24d711e82f51d04efc3395e8bc55d4351b..3c11f3d0ac240af7fe46bb95c8bc24bc195f30c1 100644 (file)
@@ -335,12 +335,12 @@ class cacheV
                $tree = $this->controller->registry->xml->parse($output);
                
                // get _nodes
-               $output = $this->controller->library->svn('info --xml -R ' . ($revision !== null ? '-r' . $revision . ':HEAD ' : '') . $this->controller->repospath);
+               $output = $this->controller->library->svn('info --xml -R ' . $this->controller->repospath);
                $output = implode("\n", $output);
                $infolist = $this->controller->registry->xml->parse($output);
                
                // other part of _nodes: properties
-               $output = $this->controller->library->svn('proplist -v -R ' . ($revision !== null ? ' -r' . $revision . ':HEAD ' : '') . $this->controller->repospath);
+               $output = $this->controller->library->svn('proplist -v -R ' . $this->controller->repospath);
                foreach ($output AS $line)
                {
                        if (preg_match('#^Properties on \'(.*?)\':$#', $line, $bits))