diff -r 7c67caaafdeb -r 761ba7426984 web/sitemap.php
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/web/sitemap.php Tue Sep 03 11:09:40 2024 +0200
@@ -0,0 +1,56 @@
+".URL_ROOT.$relURL."\n");
+}
+
+function get_archive_path($root, $path) {
+ $res = array();
+
+ include("$root/$path/config.php");
+
+ if(isset($config['event_list']) && !empty($config['event_list']) ) {
+ array_push($res, "$path/select.php");
+ foreach($config['event_list'] as $event) {
+ array_push($res, "$path/$event/polemicaltimeline.php");
+ }
+ } else {
+ array_push($res, "$path/polemicaltimeline.php");
+ }
+
+ return $res;
+}
+
+header('Content-Type: text/xml; charset=UTF-8');
+echo ''."\n";
+
+?>
+
+
+
+