Merge branch 'svn-auth-reloaded' of github.com:till/composer into svn-auth-reloaded
commit
68fa23f5c7
|
@ -198,11 +198,14 @@ class SvnDriver extends VcsDriver
|
||||||
public function getTags()
|
public function getTags()
|
||||||
{
|
{
|
||||||
if (null === $this->tags) {
|
if (null === $this->tags) {
|
||||||
$output = $this->execute('svn ls', $this->baseUrl . '/tags');
|
|
||||||
$this->tags = array();
|
$this->tags = array();
|
||||||
foreach ($this->process->splitLines($output) as $tag) {
|
|
||||||
if ($tag) {
|
$output = $this->execute('svn ls', $this->baseUrl . '/tags');
|
||||||
$this->tags[rtrim($tag, '/')] = '/tags/'.$tag;
|
if ($output) {
|
||||||
|
foreach ($this->process->splitLines($output) as $tag) {
|
||||||
|
if ($tag) {
|
||||||
|
$this->tags[rtrim($tag, '/')] = '/tags/'.$tag;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -216,25 +219,32 @@ class SvnDriver extends VcsDriver
|
||||||
public function getBranches()
|
public function getBranches()
|
||||||
{
|
{
|
||||||
if (null === $this->branches) {
|
if (null === $this->branches) {
|
||||||
$output = $this->execute('svn ls --verbose', $this->baseUrl . '/');
|
|
||||||
$this->branches = array();
|
$this->branches = array();
|
||||||
foreach ($this->process->splitLines($output) as $line) {
|
|
||||||
preg_match('{^\s*(\S+).*?(\S+)\s*$}', $line, $match);
|
$output = $this->execute('svn ls --verbose', $this->baseUrl . '/');
|
||||||
if ($match[2] === 'trunk/') {
|
if ($output) {
|
||||||
$this->branches['trunk'] = '/trunk/@'.$match[1];
|
foreach ($this->process->splitLines($output) as $line) {
|
||||||
break;
|
$line = trim($line);
|
||||||
|
if ($line && preg_match('{^\s*(\S+).*?(\S+)\s*$}', $line, $match)) {
|
||||||
|
if (isset($match[1]) && isset($match[2]) && $match[2] === 'trunk/') {
|
||||||
|
$this->branches['trunk'] = '/trunk/@'.$match[1];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
unset($output);
|
unset($output);
|
||||||
|
|
||||||
$output = $this->execute('svn ls --verbose', $this->baseUrl . '/branches');
|
$output = $this->execute('svn ls --verbose', $this->baseUrl . '/branches');
|
||||||
|
if ($output) {
|
||||||
foreach ($this->process->splitLines(trim($output)) as $line) {
|
foreach ($this->process->splitLines(trim($output)) as $line) {
|
||||||
preg_match('{^\s*(\S+).*?(\S+)\s*$}', $line, $match);
|
$line = trim($line);
|
||||||
if ($match[2] === './') {
|
if ($line && preg_match('{^\s*(\S+).*?(\S+)\s*$}', $line, $match)) {
|
||||||
continue;
|
if (isset($match[1]) && isset($match[2]) && $match[2] !== './') {
|
||||||
|
$this->branches[rtrim($match[2], '/')] = '/branches/'.$match[2].'@'.$match[1];
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$this->branches[rtrim($match[2], '/')] = '/branches/'.$match[2].'@'.$match[1];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue