commit d371374395eb9c14aad57aeb170799066bdb37c2
parent 5563cd74804414d3428024cf8c70aaa735bfb638
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Mon, 27 May 2019 09:34:46 +0200
Fix the html of the subtitles
Diffstat:
20 files changed, 47 insertions(+), 45 deletions(-)
diff --git a/art/hr_ppart.html.in b/art/hr_ppart.html.in
@@ -1,8 +1,8 @@
<header>
<h1>HR PPart
- <div class=subtitle>
+ <span class=subtitle>
High-Resolution Plane-Parallel atmospheric radiative transfer
- </div>
+ </span>
</h1>
</header>
diff --git a/art/karine.html.in b/art/karine.html.in
@@ -1,8 +1,8 @@
<header>
<h1>Karine
- <div class=subtitle>
+ <span class=subtitle>
K-distribution Atmospheric Radiation & Infrared Net Exchanges
- </div>
+ </span>
</h1>
</header>
diff --git a/art/kdistribution.html.in b/art/kdistribution.html.in
@@ -1,8 +1,8 @@
<header>
<h1>Kdistribution
- <div class=subtitle>
+ <span class=subtitle>
Production of k-distribution data sets
- </div>
+ </span>
</h1>
</header>
diff --git a/art/kspectrum.html.in b/art/kspectrum.html.in
@@ -1,8 +1,8 @@
<header>
<h1>Kspectrum
- <div class=subtitle>
+ <span class=subtitle>
Molecular absorption spectra for arbitrary gas mixtures
- </div>
+ </span>
</h1>
</header>
diff --git a/art/ppart_lw.html.in b/art/ppart_lw.html.in
@@ -1,8 +1,8 @@
<header>
<h1>PPart LW
- <div class=subtitle>
+ <span class=subtitle>
Plane-Parallel atmospheric radiative transfer - LongWave
- </div>
+ </span>
</h1>
</header>
diff --git a/art/ppart_sw.html.in b/art/ppart_sw.html.in
@@ -1,8 +1,8 @@
<header>
<h1>PPart SW
- <div class=subtitle>
+ <span class=subtitle>
Plane-Parallel atmospheric radiative transfer - ShortWave
- </div>
+ </span>
</h1>
</header>
diff --git a/high-tune/high-tune.html.in b/high-tune/high-tune.html.in
@@ -9,9 +9,9 @@ function poptext(Id) {
<header>
<h1>High Tune: RenDeRer
- <div class=subtitle>
+ <span class=subtitle>
Image renderer of cloudy atmospheres
- </div>
+ </span>
</h1>
</header>
diff --git a/meso-menu.sh b/meso-menu.sh
@@ -299,7 +299,7 @@ print_star_engine_sub_menu() {
if [ "$name" == "${entry[0]}" ]; then
echo " <li id=cur>${entry[1]}</li>"
else
- echo " <li><a href=${root}star-engine/$(echo ${entry[0]} | tr [:upper:] [:lower:]).html>${entry[1]}</a></li>"
+ echo " <li><a href=${root}star-engine/$(echo ${entry[0]} | tr '[:upper:]' '[:lower:]').html>${entry[1]}</a></li>"
fi
done
echo ' </ul>'
diff --git a/meso.css b/meso.css
@@ -10,12 +10,11 @@ body {
h1 {
/*text-align: right; */
- /*font-variant: small-caps;*/
padding-bottom: 0.3em;
}
.subtitle {
- font-variant: normal;
+ display: block;
font-weight: normal;
font-size: 70%;
color: #777777;
diff --git a/schiff/schiff.html.in b/schiff/schiff.html.in
@@ -1,8 +1,8 @@
<header>
<h1>Schiff
- <div class=subtitle>
+ <span class=subtitle>
Radiative properties of soft particles
- </div>
+ </span>
</h1>
</header>
diff --git a/solstice/solstice.html.in b/solstice/solstice.html.in
@@ -1,8 +1,8 @@
<header>
<h1>Solstice
- <div class=subtitle>
+ <span class=subtitle>
The solar plant simulation tool
- </div>
+ </span>
</h1>
</header>
diff --git a/star-engine/star-2d.html.in b/star-engine/star-2d.html.in
@@ -1,8 +1,6 @@
<header>
<h1>Star-2D
- <div class=subtitle>
- Manage 2D geometries
- </div>
+ <span class=subtitle>Manage 2D geometries</span>
</h1>
</header>
diff --git a/star-engine/star-3d.html.in b/star-engine/star-3d.html.in
@@ -1,6 +1,6 @@
<header>
<h1>Star-3D
- <div class=subtitle>Manage 3D geometries</div>
+ <span class=subtitle>Manage 3D geometries</span>
</h1>
</header>
diff --git a/star-engine/star-engine.html.in b/star-engine/star-engine.html.in
@@ -1,8 +1,8 @@
<header>
<h1>Star-Engine
- <div class=subtitle>
+ <span class=subtitle>
A framework for Monte-Carlo solvers
- </div>
+ </span>
</h1>
</header>
diff --git a/star-engine/star-engine.sh b/star-engine/star-engine.sh
@@ -118,15 +118,15 @@ components=(
print_version() {
local header=$1
- major=$(cat $dir_temp/$arch/include/$header | sed -n 's/.*MAJOR \(.*\)$/\1/1p')
- minor=$(cat $dir_temp/$arch/include/$header | sed -n 's/.*MINOR \(.*\)$/\1/1p')
- patch=$(cat $dir_temp/$arch/include/$header | sed -n 's/.*PATCH \(.*\)$/\1/1p')
+ local major=$(cat $dir_temp/$arch/include/$header | sed -n 's/.*MAJOR \(.*\)$/\1/1p')
+ local minor=$(cat $dir_temp/$arch/include/$header | sed -n 's/.*MINOR \(.*\)$/\1/1p')
+ local patch=$(cat $dir_temp/$arch/include/$header | sed -n 's/.*PATCH \(.*\)$/\1/1p')
[[ $patch == "0" ]] && echo $major.$minor || echo $major.$minor.$patch
}
for ((i=0; i< ${#components[@]}; ++i)); do
entry=(${components[$i]})
- entry_low=$(echo ${entry[0]} | tr [:upper:] [:lower:])
+ entry_low=$(echo ${entry[0]} | tr '[:upper:]' '[:lower:]')
release_notes=$($markdown $dir_temp/$arch/share/doc/$entry_low/README.md \
| sed '/^<h2>Release notes<\/h2>/,$!d' \
diff --git a/star-engine/star-geom.html.in b/star-engine/star-geom.html.in
@@ -1,6 +1,6 @@
<header>
<h1>Geometric data
- <div class=subtitle>Generate and load geometric data</div>
+ <span class=subtitle>Generate and load geometric data</span>
</h1>
</header>
@@ -54,11 +54,16 @@ can then be directly used in Star-3D to be ray-traced or sampled.</p>
<h2>Licenses</h2>
<ul>
- <li>AW copyright © 2013-2016 Vincent Forest.</li>
- <li>Star-3DAW copyright © 2015-2016 |Meso|Star>.</li>
- <li>Star-3DSTL copyright © 2015-2018 |Meso|Star>.</li>
- <li>Star-3DUT copyright © 2016-2017 |Meso|Star>.</li>
- <li>Star-STL copyright © 2015-2016 |Meso|Star>.</li>
+ <li>AW copyright © 2013-2016
+ <a href="mailto:vaplv@posteo.net">Vincent Forest</a>.</li>
+ <li>Star-3DAW copyright © 2015-2016
+ <a href="https://www.meso-star.com/">|Meso|Star></a>.</li>
+ <li>Star-3DSTL copyright © 2015-2018
+ <a href="https://www.meso-star.com/">|Meso|Star></a>.</li>
+ <li>Star-3DUT copyright © 2016-2017
+ <a href="https://www.meso-star.com/">|Meso|Star></a>.</li>
+ <li>Star-STL copyright © 2015-2016
+ <a href="https://www.meso-star.com/">|Meso|Star></a>.</li>
</ul>
<p>These libraries are free software: Star-STL, Star-3DAW and Star-STL are
diff --git a/star-engine/star-sf.html.in b/star-engine/star-sf.html.in
@@ -1,8 +1,8 @@
<header>
<h1>Star-ScatteringFunctions
- <div class=subtitle>
+ <span class=subtitle>
Simulate scattering effects at surfaces and in volumes
- </div>
+ </span>
</h1>
</header>
@@ -19,7 +19,7 @@
describe <b>scattering effects at a surface</b> through Bidirectional
Scattering Distribution Functions (BSDF), microfacet distributions and fresnel
terms, and in a volume with <b>phase functions</b>. The main target of Star-SF
-are programmers that have to evaluate or sampled these scattering effects.</p
+are programmers that have to evaluate or sampled these scattering effects.</p>
<p>The Star-SF API makes no reference to the implementation of the
aforementionned data structures. In addition, it publicly exposes their
diff --git a/star-engine/star-sp.html.in b/star-engine/star-sp.html.in
@@ -1,8 +1,8 @@
<header>
<h1>Star-SamPling
- <div class=subtitle>
+ <span class=subtitle>
Random number generators & random variates
- </div>
+ </span>
</h1>
</header>
diff --git a/star-engine/star-vx.html.in b/star-engine/star-vx.html.in
@@ -1,6 +1,6 @@
<header>
<h1>Star-VoXel
- <div class=subtitle>Manage volumetric data</div>
+ <span class=subtitle>Manage volumetric data</span>
</h1>
</header>
diff --git a/stardis/stardis.html.in b/stardis/stardis.html.in
@@ -1,8 +1,8 @@
<header>
<h1>Stardis
- <div class=subtitle>
+ <span class=subtitle>
The Monte-Carlo solver for coupled thermal problems
- </div>
+ </span>
</h1>
</header>