From e6836849dad5da26e080bcad0863f966e630082b Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 22 May 2015 16:43:23 +0200 Subject: reproducible: use less space for overview --- bin/reproducible_html_graphs.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index 2ae66a74..9d4a65a9 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -576,7 +576,12 @@ create_main_stats_page() { write_page "

" # do the global stats for i in 3 7 4 5 1 ; do - write_page " \"${MAINLABEL[$i]}\"" + if [ $i = "3" ] || [ $i = "1" ] ; then + OVERVIEW="" + else + OVERVIEW='class="overview"' + fi + write_page " \"${MAINLABEL[$i]}\"" # redo pngs once a day if [ ! -f $BASE/${TABLE[$i]}.png ] || [ ! -z $(find $BASE -maxdepth 1 -mtime +0 -name ${TABLE[$i]}.png) ] ; then create_png_from_table $i ${TABLE[$i]}.png @@ -584,7 +589,7 @@ create_main_stats_page() { if [ "$i" = "3" ] ; then write_page "

" write_usertag_table - write_page "

" + write_page "

" fi done write_page "

" -- cgit v1.2.3-54-g00ecf