Add date of last change to bottom of web tune page.
This commit is contained in:
parent
01a656aaba
commit
a1e4f86ed1
|
@ -41,16 +41,25 @@
|
|||
Change: <a class="dottes-change-link"
|
||||
href="@CHANGETUNE@">@CHANGETITLE@</a>
|
||||
</div>
|
||||
<ul class="tune-data-list">
|
||||
<li><a class="dottes-link-tune dottes-pdf"
|
||||
href="@TUNE@.pdf">PDF</a></li>
|
||||
<li><a class="dottes-link-tune dottes-midi"
|
||||
href="../@MASTERBOOKE@/@TUNE@.mid">MIDI</a></li>
|
||||
<li><a class="dottes-link-tune dottes-mp3"
|
||||
href="../@MASTERBOOKE@/@TUNE@.mp3">MP3</a></li>
|
||||
<li><a class="dottes-link-tune dottes-abc"
|
||||
href="@TUNE@.abc">ABC</a></li>
|
||||
</ul>
|
||||
<div class="dottes-tune-footer">
|
||||
<div class="dottes-tune-footer-row">
|
||||
<div class="dottes-tune-footer-left">
|
||||
<ul class="tune-data-list">
|
||||
<li><a class="dottes-link-tune dottes-pdf"
|
||||
href="@TUNE@.pdf">PDF</a></li>
|
||||
<li><a class="dottes-link-tune dottes-midi"
|
||||
href="../@MASTERBOOKE@/@TUNE@.mid">MIDI</a></li>
|
||||
<li><a class="dottes-link-tune dottes-mp3"
|
||||
href="../@MASTERBOOKE@/@TUNE@.mp3">MP3</a></li>
|
||||
<li><a class="dottes-link-tune dottes-abc"
|
||||
href="@TUNE@.abc">ABC</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="dottes-tune-footer-right">
|
||||
Last changed @LASTCHANGED@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -82,6 +82,7 @@ find $bookedir -name "*.abc" | sort |
|
|||
if [ -n "$credit" ]; then
|
||||
creditvisibility="yes"
|
||||
fi
|
||||
lastchanged=`hg log --limit 1 --template "{date|shortdate}" $filename`
|
||||
|
||||
# Copy the ABC into the web.
|
||||
cp $filename $webdir
|
||||
|
@ -100,6 +101,7 @@ find $bookedir -name "*.abc" | sort |
|
|||
-e "s/@CHANGEVISIBILITY@/${changevisibility}/" \
|
||||
-e "s/@CREDIT@/${credit}/" \
|
||||
-e "s/@CREDITVISIBILITY@/${creditvisibility}/" \
|
||||
-e "s/@LASTCHANGED@/${lastchanged}/" \
|
||||
-e "s/@TUNE@/${name}/" dottes.html.tune > $webdir/$tunepage
|
||||
|
||||
sed -e "s/@TITLE@/${title//&/\&}/" \
|
||||
|
|
|
@ -170,6 +170,30 @@ div.dottes-tune-header-right
|
|||
width: 25%;
|
||||
}
|
||||
|
||||
div.dottes-tune-footer
|
||||
{
|
||||
display: table;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
div.dottes-tune-footer-row
|
||||
{
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
div.dottes-tune-footer-left
|
||||
{
|
||||
display: table-cell;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
div.dottes-tune-footer-right
|
||||
{
|
||||
display: table-cell;
|
||||
text-align: right;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
a.dottes-tune-link
|
||||
{
|
||||
font-size: 20px;
|
||||
|
|
Loading…
Reference in New Issue