From 04045775bfea703a9e0f933e3e32f640e17ca188 Mon Sep 17 00:00:00 2001 From: Tomasz Wolniewicz <twoln@umk.pl> Date: Tue, 26 Oct 2021 08:07:18 +0200 Subject: [PATCH] Adding the mk_map script --- scripts/mk_map.php | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 scripts/mk_map.php diff --git a/scripts/mk_map.php b/scripts/mk_map.php new file mode 100644 index 0000000..7f0eb50 --- /dev/null +++ b/scripts/mk_map.php @@ -0,0 +1,10 @@ +<?php +/* + * This is a utility to regenerate the maps images from the command line + * The same can be acheved wia web with update_maps + */ +require_once("../lib/config.php"); +require_once("../lib/eduGAIN_map.php"); +eduGAIN_map::make_maps(); +eduGAIN_map::make_maps(1); +?> -- GitLab