X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=doc%2Fupdt.sh;h=d0c02e7add08324af9b21c350af017cb08cea7f1;hb=a78f4df4f1999b9e89887f195f7c236db9a2f46d;hp=e6b721d612761a0c5c92a4031b831e297d02bede;hpb=741d4e0505c588f38a64350c1d3c53c74f7ac22c;p=src%2Fapp-framework-binder.git diff --git a/doc/updt.sh b/doc/updt.sh index e6b721d6..d0c02e7a 100755 --- a/doc/updt.sh +++ b/doc/updt.sh @@ -1,37 +1,53 @@ #!/bin/bash -meta() { - awk ' - NR == 1 { t = $0; next } - NR == 2 && $1 ~ "======" { next } - NR == 2 { exit } - $1 == "Date:" { d = $2; for(i = 3 ; i <= NF ; i++) d = d " " $i; next } - $1 == "Author:" { a = $2; for(i = 3 ; i <= NF ; i++) a = a " " $i; next } - $1 == "version" || $1 == "Version" {next} - /^[ \t]*$/ { printf "%% %s\n%% %s\n%% %s\n", t, a, d; exit } - ' "$1" +title() { + sed '/^[ \t]*$/d' "$1" | + sed '/^===/Q' | + sed '/^---/Q' | + sed 's/^# //;T;Q' | + sed 's/^## //;T;Q' | + sed '/^---/Q' } -# update the date field of file $1 -updadate() { - local x=$1 - local t=$(git log -n 1 --format=%ct $x) - [[ -n "$t" ]] || t=$(stat -c %Y $x) - local d=$(LANG= date -d @$t +"%d %B %Y") - sed -i "s/^\( Date: *\).*/\1$d/" $x +authors() { + git log --numstat --format='A %aN' -- "$1" | + awk '$1=="A"{sub(/^A /,"");a=$0; s[a]+=0; next}NF==3{s[a]+=($1+0)}END{for(a in s)print s[a]" : "a}' | + sort -nr | + sed 's/[^:]* : //' | + sed '1!s/^/; /' | + tr -d '\n' +} + +dateof() { + local file="$1" + local t=$(git log -n 1 --format=%ct "$file") + [[ -n "$t" ]] || t=$(stat -c %Y "$file") + LANG= date -d @$t +"%d %B %Y" } +meta() { + local file="$1" + local t=$(title "$file") + local a=$(authors "$file") + local d=$(dateof "$file") + echo "% $t" + echo "% $a" + echo "% $d" + cat "$file" +} + + # make the html file for $1 mkhtml() { local x=$1 local h=${x%%.md}.html - { meta "$x"; sed 's/TABLE-OF-CONTENT-HERE//' "$x"; } | + echo updating $h from $x + meta "$x" | pandoc --css doc.css -f markdown -t html5 --toc > "$h" } # apply for x in *.md; do - updadate $x mkhtml $x done