# HG changeset patch # User Jim Hague # Date 1330864752 0 # Node ID d92717f8130ccdc09a0f29db5c7e10b111a9994e # Parent 0e7d2830cb8b5ad176c50fb6b8dec593325fbd23 First go at producing a very simple website. Templating done with sed, and minimal HTML. diff -r 0e7d2830cb8b -r d92717f8130c .hgignore --- a/.hgignore Sun Mar 04 12:00:30 2012 +0000 +++ b/.hgignore Sun Mar 04 12:39:12 2012 +0000 @@ -9,3 +9,4 @@ syntax: regexp build/ graphics/ +web/Session/ diff -r 0e7d2830cb8b -r d92717f8130c Session/intro.txt --- a/Session/intro.txt Sun Mar 04 12:00:30 2012 +0000 +++ b/Session/intro.txt Sun Mar 04 12:39:12 2012 +0000 @@ -1,2 +1,1 @@ -This book provides the dots for all tunes commonly played at Cry Havoc music -sessions. +This book provides the dots for all tunes commonly played at Cry Havoc music sessions. diff -r 0e7d2830cb8b -r d92717f8130c dottes.html.footer --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dottes.html.footer Sun Mar 04 12:39:12 2012 +0000 @@ -0,0 +1,3 @@ + + + diff -r 0e7d2830cb8b -r d92717f8130c dottes.html.header --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dottes.html.header Sun Mar 04 12:39:12 2012 +0000 @@ -0,0 +1,12 @@ + + +Cry Havoc tunes - @BOOK@ + + +

@SUBTITLE@

+

+@INTRO@ +

+Issue @BUILD@ +

+ diff -r 0e7d2830cb8b -r d92717f8130c makeWeb.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/makeWeb.sh Sun Mar 04 12:39:12 2012 +0000 @@ -0,0 +1,57 @@ +#!/bin/bash +# +# Build the website. The common items and the web items are assumed +# to be already built. +# + +if [ $# != 1 ]; then + echo "Usage: makeWeb.sh " + exit 1 +fi + +dir=`pwd` + +booke=$dir/$1 +webdir=$dir/web/$1 +graphicsdir=$dir/graphics/$1 +output=index.html + +buildno=`cat buildno.txt` +subtitle= +intro= +if [ -r $booke/subtitle.txt ]; then + subtitle=`cat $booke/subtitle.txt` +fi +if [ -r $booke/intro.txt ]; then + intro=`cat $booke/intro.txt` +fi + +mkdir -p $webdir + +sed -e "s/@BUILD@/$buildno/" -e "s/@SUBTITLE@/$subtitle/" \ + -e "s/@INTRO@/$intro/" -e "s/@BOOK@/$1/" dottes.html.header > $webdir/$output + +# Now, for each tune, make the tune graphic and sound. +find $booke -name "*.abc" | sort | + while read filename + do + title=`grep "^T:" $filename | head -1 | sed -e "s/^T: *//"` + name=`basename $filename .abc` + + # Copy tune PDF from common graphics. + cp $graphicsdir/${name}.pdf $webdir + + # And copy the ABC. + cp $filename $webdir + + echo "" >> $webdir/$output + echo "" >> $webdir/$output + echo "" >> $webdir/$output + echo "" >> $webdir/$output + echo "" >> $webdir/$output + echo "" >> $webdir/$output + echo "" >> $webdir/$output + echo "" >> $webdir/$output + done + +cat dottes.html.footer >> $webdir/$output diff -r 0e7d2830cb8b -r d92717f8130c makeWebItems.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/makeWebItems.sh Sun Mar 04 12:39:12 2012 +0000 @@ -0,0 +1,32 @@ +#!/bin/bash +# +# Make items required for the website but not for the book. +# They go into web/. +# + +if [ $# != 1 ]; then + echo "Usage: makeWebItems.sh " + exit 1 +fi + +dir=`pwd` + +booke=$dir/$1 +builddir=$dir/web/$1 +graphicsdir=$dir/graphics/$1 + +mkdir -p $builddir + +# Now, for each tune, make the tune JPG and sound. +find $booke -name "*.abc" | sort | + while read filename + do + name=`basename $filename .abc` + convert $graphicsdir/${name}.eps $builddir/${name}.jpg + + abc2midi $filename -o $builddir/${name}.mid + timidity -Ow -o $builddir/${name}.wav $builddir/${name}.mid + lame --quiet $builddir/${name}.wav $builddir/${name}.mp3 + rm $builddir/${name}.wav + done + diff -r 0e7d2830cb8b -r d92717f8130c web/buzzard.jpg Binary file web/buzzard.jpg has changed diff -r 0e7d2830cb8b -r d92717f8130c web/index.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/index.html Sun Mar 04 12:39:12 2012 +0000 @@ -0,0 +1,16 @@ + + +Ye Crie Havock Booke of Dottes + + +

Ye Crie Havock Booke of Dottes

+

+

+Buzzard logo +
+

+The music of Cry Havoc, a reference. +

+Sessions + +

${title}JPGPDFMIDIMP3ABC