nieuws/feed: atom content type and link attributes
[minimedit.git] / nieuws.php
index b28f72bbf406f556a124ebb02a9867a4b310aed7..fda142e62c50985599785298f8d1bb1be22077ae 100644 (file)
@@ -1,53 +1,6 @@
 <?php
-include 'nieuws.inc.php';
-
-@list ($year, $month, $page) = explode('/', trim($Args, '/'));
-
-if ($page) {
-       $edit = !empty($User['admin']) ? htmlspecialchars(@$_GET['edit']) : NULL;
-       print shownewsarticle($Args, FALSE, $edit);
-       return 1;
-}
-
-if ($year) {
-       ob_clean();
-       if (is_numeric($year)) {
-               $title = "Nieuws ".($month ? $monthname[$month].' ' : '').$year;
-               $match = implode('/', [
-                       $Page, $year, $month ? sprintf('%02d', $month) : '??',
-               ]);
-       }
-       else {
-               $title = "Nieuws vóór 2000";
-               $match = "$Page/19??/??";
-       }
-
-       print "<h2>$title</h2>\n\n";
-       print '<div id="news">'."\n\n";
-       shownews($match, 100);
-       print "</div>\n\n";
-       return 1;
-}
-
-if ($Args) {
-       return;
-}
-
-print '<div id="news">'."\n\n";
-
-foreach (array_reverse(glob("$Page/2???")) as $page) {
-       $year = basename($page, '.html');
-       printf('<h3><a href="/%s">%s</a></h3>'."\n", $page, $year);
-       printtoc("$page/??");
-}
-
-if ($pages = glob("$Page/19??/??/*.html")) {
-       printf('<h3><a href="/%s">%s</a></h3>'."\n", "$Page/oud", 'Eerder');
-       printtoc($pages);
-}
-
-print "</div>\n\n";
-
-if (!empty($User['admin'])) {
-       print '<script src="/nieuws/edit.js"></script>'."\n";
-}
+include_once 'nieuws.inc.php';
+$articles = (ltrim($Args, '/') ?: 'nieuws') . '/????';
+ob_start();
+shownews($articles, @$Place['n'] ?: 5);
+print getoutput();