From f626da5a5ac6cc49b6a8cf9796eb5ec574657483 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Mon, 26 Nov 2012 23:21:49 +0100 Subject: [PATCH] Basic support for notes in dashboard. --- dashboard.pl | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/dashboard.pl b/dashboard.pl index 13ca3c7..bc32cb7 100755 --- a/dashboard.pl +++ b/dashboard.pl @@ -328,6 +328,23 @@ if ( $colsforeach != 4 ) { $excls = "$excls."; } +if ( $installs and -f 'install.html.in') { + print "

Install Notes:
"; + system 'cat install.html.in'; +} +if ( $upgrades and -f 'minor-upgrade.html.in') { + print "

Upgrade Notes:
"; + system 'cat minor-upgrade.html.in'; +} +if ( $distupgrades and -f 'upgrade.html.in') { + print "

Dist Upgrade Notes:
"; + system 'cat upgrade.html.in'; +} +if ( $doubledistupgrades and -f 'upgrade-double.html.in') { + print "

Dbl. Dist Upgrade Notes:
"; + system 'cat upgrade-double.html.in'; +} + print qq{ -- 1.8.2.3