Sign in
eclipse
/
www.eclipse.org
/
cdo
/
2a5eb60c9f225efb9fd10591f667410c862d73c6
/
.
/
documentation
/
relnotes.php
blob: 9791c38396c3a0f73a9ca45eacdaee4ad51e42da [
file
] [
log
] [
blame
]
<?
php
function
printReleaseNotes
(
$url
)
{
$content
=
file_get_contents
(
$url
);
ereg
(
'.*<body>(.*)</body>.*'
,
$content
,
$matches
);
print
"$matches[1]\n"
;
}
?>