commit e9c3750adc61a6606f174eea4016c38303767a92
parent eea34c9626631d00428c177b997be7cb49631a60
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Thu, 5 Oct 2017 09:42:34 +0200
Some fixes
Diffstat:
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/solstice.html.in b/solstice.html.in
@@ -86,8 +86,8 @@ paths</b> sampled during a simulation, as well as the solar plant
these data, the user can quickly assert that too many radiative paths are
occluded or miss the target, or that the primary reflectors are not correctly
oriented. One can also map the simulation results to the solar plant geometry
-in order to efficiently visualise and
-analyse them using one's favorite data analysis toolkit.</p>
+in order to efficiently visualise and analyse them using one's favorite data
+analysis toolkit.</p>
<p>Solstice also provides <b>offline rendering</b> capabilities. It implements
an unbiased physically-based rendering kernel that relies on the data and
diff --git a/solstice.sh b/solstice.sh
@@ -251,9 +251,10 @@ for((i=0; i<${#man_pages[@]}; ++i)); do
# Fix the hyperlink toward the GPLv3+ license
sed -i 's/gpl\.html\.">\(.*\).<\/A>/gpl.html">\1<\/A>./g' $output
fi
- if [ "${man_name}" == "solstice-input" -o "${man_name}" == "solstice-receiver" ]; then
- sed -i "s/\<Aincqt\>/Ain't/g" $output
- fi
+
+ # Fix the man2html issues that translate the ' char in cq
+ sed -i "s/cq\(\a\)\>/'\1/g" $output
+
print_footer >> $output
done