Mercurial > dottes
changeset 202:540511b14c73
Handle '&' appearing in HTML output from tune titles.
It must be escaped or sed will substitute the pattern being searched for
at that point in the result.
| author | Jim Hague <jim.hague@acm.org> | 
|---|---|
| date | Sun, 17 Feb 2013 01:29:44 +0000 | 
| parents | f606da6f8718 | 
| children | 28060949020d | 
| files | makeWeb.sh | 
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] | 
line wrap: on
 line diff
--- a/makeWeb.sh Sun Feb 17 00:55:23 2013 +0000 +++ b/makeWeb.sh Sun Feb 17 01:29:44 2013 +0000 @@ -59,10 +59,10 @@ # Generate the tune web page. tunepage=${name}.html - sed -e "s/@TITLE@/${title}/" \ + sed -e "s/@TITLE@/${title//&/\&}/" \ -e "s/@TUNE@/${name}/" dottes.html.tune > $webdir/$tunepage - sed -e "s/@TITLE@/${title}/" \ + sed -e "s/@TITLE@/${title//&/\&}/" \ -e "s/@TUNE@/${name}/" dottes.html.tuneindex >> $webdir/$output done
