Indefero

Indefero Commit Details


Date:2010-10-06 20:05:15 (14 years 2 months ago)
Author:Thomas Keller
Branch:develop, feature-issue_links, feature.better-home, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, master, release-1.1, release-1.2, release-1.3
Commit:a29a2a0fa424d116dd50c9a658409ac4cdf2ee62
Parents: 4951498c0b1e3480effb132468ff134ad35efc40
Message:The connection list view could never work with this messy backend.

Changes:

File differences

src/IDF/Scm/Monotone/Usher.php
7676
7777
7878
79
79
8080
8181
8282
......
8484
8585
8686
87
88
89
90
91
92
8793
8894
8995
$single_conns = preg_split('/[ ]/', $conn);
$ret = array();
foreach ($single_conns as $conn) {
preg_match('/\(\w+\)([^:]):(\d+)/', $conn, $matches);
preg_match('/\((\w+)\)([^:]+):(\d+)/', $conn, $matches);
$ret[$matches[1]][] = (object)array(
'server' => $matches[1],
'address' => $matches[2],
);
}
if ($server !== null) {
if (array_key_exists($server, $ret))
return $ret[$server];
return array();
}
return $ret;
}

Archive Download the corresponding diff file

Page rendered in 0.07191s using 13 queries.