Sign in
eclipse
/
dash
/
org.eclipse.dash.dashboard
/
b6ac8300a424fa7a2df90fac3302c73f8233808c
/
.
/
commits
/
batch
/
git-roots.php
blob: dfff87a755b10d5b82b283d192d66113a39108a6 [
file
]
<?
php
$json
=
file_get_contents
(
'http://local.projects.eclipse.org/json/repos/git'
);
foreach
(
json_decode
(
$json
)
as
$project
=>
$repos
)
{
foreach
(
$repos
as
$repo
)
{
echo
"$project\t$repo\n"
;
}
}
?>