1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
#!/bin/bash
###############################################################################
# Copyright (c) 2000-2021 Ericsson Telecom AB
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
#
# Contributors:
# Balasko, Jeno
# Forstner, Matyas
#
###############################################################################
cd chm
for i in info/*.html titan_index.html
do
echo Processing $i
if [[ $i = 'info/BNF.html' ]]
then
sed -e 's|<a href="http://www\.inet\.com/">|<a href="http://www.inet.com/" target="_blank">|g' $i >tmp
mv tmp $i
elif [[ $i = 'titan_index.html' ]]
then
sed -e '11,17d;20d' $i >tmp
mv tmp $i
else
line21=$(sed -n -e '21p' $i)
if [[ -n $(echo $line21 | grep -e 'ao\.jpg') ]]
then echo "$i is 1 (ao)"
sed \
-e '11,18d' \
-e '21d' \
$i >tmp
mv tmp $i
elif [[ -n $(echo $line21 | grep -e 'up\.jpg') ]]
then echo "$i is 2 (up)"
sed \
-e '11,17d' \
-e '20d' \
$i >tmp
mv tmp $i
elif [[ -n $(echo $line21 | grep -e '<table border="0" align="right" cellpadding="0" cellspacing="0">') ]]
then echo "$i is 3 (table)"
sed \
-e '11,20d' \
-e '23d' \
$i >tmp
mv tmp $i
else echo "$i is ? : $line21"
fi
fi
sed \
-e 's|\(<a href="\(\.\./info/\)\?BNF\.html[^"]*"\) *target="_blank">|\1>|gI' \
-e 's|\(<a href="[a-zA-Z0-9_]*\.html[^"]*"\) *target="_blank">|\1>|gI' \
-e '
:t
/<[aA] [^>]*\.\.\/docs\// {
/<\/[aA]>/!{
N;
bt
}
s/<[aA] [^>]*\.\.\/docs\/[^>]*>\([^<]*\)<\/[Aa]>/\1/g;
}
' \
$i >tmp
mv tmp $i
done
|