</a><br>
raw: <a href='<?php 
echo $entry->downloadUrl;
?>
'><?php 
echo $entry->downloadUrl;
?>
</a><br>
<br>

Track Entry<br>
<?php 
echo "<table border=1  cellspacing=0 style='font-size:11px;'>";
echo investigate::printTrackEntryHeader();
foreach ($track_entry_list as $te) {
    echo investigate::printTrackEntryParams($te);
}
echo "</table><br/>";
?>

Files on disk<br>
<?php 
echo "<table border=1  cellspacing=0>";
echo investigate::printFileSyncHeader();
foreach ($file_syncs_by_sub_type as $sub_type => $fs_list) {
    foreach ($fs_list as $fs) {
        echo investigate::printFileSync($fs);
    }
}
echo "</table><br/>";
?>