X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/5b94cc8fb8d15c44eb5223f262d091b0fe286944..HEAD:/widget/doclist.php diff --git a/widget/doclist.php b/widget/doclist.php index 796a4ad..e0751b0 100644 --- a/widget/doclist.php +++ b/widget/doclist.php @@ -1,39 +1,69 @@ place[0])) { + $Page->link .= '/'.$Page->place[0]; +} $cal = []; -foreach (glob("$Page$Args/2*") as $url) { +foreach (glob("{$Page->link}/2*") as $url) { $link = preg_replace('/\.html$/', '', $url); $name = pathinfo($link, PATHINFO_BASENAME); @list ($date, $suffix) = explode('.', $name, 2); - if (!filesize($url)) { - $cal[$date] = []; + $group = substr($date, 0, 4); + if (!isset($cal[$group][$date])) { + $cal[$group][$date] = []; } - else { - $cal[$date][$suffix] = $link; + if (is_dir($url) ? file_exists("$url/index.html") : filesize($url)) { + $cal[$group][$date][$suffix] = $link; } } +if (!$cal) { + return; +} -print ' 5) print ' class="cols"'; -print ">\n"; -foreach (array_reverse($cal) as $title => $versions) { - print '
  • '; - if ($url = @$versions['']) { - printf('%s', $url, $title); +$year = 3600 * 24 * 365; # seconds per year +$scale = 7; # em width per year +$mindate = max(time(), strtotime($date) + ($year / $scale * 3)); # at least last entry plus 3em for centered text +$length = ($mindate - strtotime(key(current($cal)))) / $year * $scale; # earliest entry position + +printf('\n\n";