website rev 709

get-latest.sh: remove hardcoded h2 color
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 05 21:35:34 2011 +0100 (2011-01-05)
parents 5264a37b3867
children a480107a2d4a
files scripts/get-latest.sh
line diff
     1.1 --- a/scripts/get-latest.sh	Wed Jan 05 00:25:56 2011 +0100
     1.2 +++ b/scripts/get-latest.sh	Wed Jan 05 21:35:34 2011 +0100
     1.3 @@ -13,7 +13,7 @@
     1.4  
     1.5  # Latest Hg commits
     1.6  echo -n "Getting latest commits... "
     1.7 -echo '<h2><font color="#DF8F06">Latest commits</font></h2>' > $OUTPUT
     1.8 +echo '<h2>Latest commits</h2>' > $OUTPUT
     1.9  echo "<ul>" >> $OUTPUT
    1.10  hg log --repository $REPO --limit 5 --no-merges \
    1.11  	--template "	<li><strong>{date|shortdate}</strong> \
    1.12 @@ -23,7 +23,7 @@
    1.13  
    1.14  # Latest cooked packages by the build bot.
    1.15  echo -n "Getting latest cooked packages... "
    1.16 -echo '<h2><font color="#DF8F06">Latest cooked packages</font></h2>' >> $OUTPUT
    1.17 +echo '<h2>Latest cooked packages</h2>' >> $OUTPUT
    1.18  echo "<ul>" >> $OUTPUT
    1.19  cd $PKGS && ls -1t *.tazpkg | head -5 | \
    1.20  while read file