From 91b4d644cf8064457d5365dc1642ad8ab5f87be3 Mon Sep 17 00:00:00 2001 From: emkael Date: Thu, 7 Sep 2017 14:25:25 +0200 Subject: Pre-generating menu content for ranking pages --- bin/build-rankings.sh | 4 +--- bin/write-menus.sh | 7 ++++++- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'bin') diff --git a/bin/build-rankings.sh b/bin/build-rankings.sh index 41e182a..c51fa1d 100755 --- a/bin/build-rankings.sh +++ b/bin/build-rankings.sh @@ -1,12 +1,10 @@ #!/bin/bash CONFIG=$1 DIR=$2 -PREV_DATE="" cat $CONFIG | jq '.[] | .date, .url, .index, .name' | xargs -n4 | while read DATE URL INDEX NAME do - python scripts/ranking.py "$NAME" $INDEX $DATE $PREV_DATE > $DIR/$URL - PREV_DATE=$DATE + python scripts/ranking.py "$NAME" $INDEX $DIR/.menu.html $DATE > $DIR/$URL done diff --git a/bin/write-menus.sh b/bin/write-menus.sh index 33ae144..500db52 100755 --- a/bin/write-menus.sh +++ b/bin/write-menus.sh @@ -1,4 +1,9 @@ #!/bin/bash CONFIG_FILE=$1 DIRECTORY=$2 -find $DIRECTORY -name \*.html -exec python scripts/static-menu.py $CONFIG_FILE {} $DIRECTORY \; +mkdir -p $DIRECTORY/players +find $DIRECTORY -type d -not -name _\* | + while read HTMLDIR + do + python scripts/generate-static-menu.py $CONFIG_FILE $DIRECTORY $HTMLDIR > $HTMLDIR/.menu.html + done -- cgit v1.2.3