-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibro.sh
executable file
·178 lines (149 loc) · 4.32 KB
/
libro.sh
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#!/bin/sh
# Genera distribución de fuentes de un libro o un grupo de libros
# Dominio público. Sin garantías. 2004. [email protected]
dir=$1;
pry=$2;
desc=$3;
fuentes=$4;
tipoestilo=$5;
gutnum=$6;
gutdate=$7;
sword1=$8
sword2=$9
imagenes=${10};
if (test "$dir" = "") then {
echo "Falta directorio como primer parámetro";
exit 1;
} fi;
if (test "$pry" = "") then {
echo "Falta nombre corto del proyecto como segundo parámetro";
exit 1;
} fi;
if (test "$desc" = "") then {
echo "Falta descripción del libro como tercer parámetro";
exit 1;
} fi;
if (test "$fuentes" = "") then {
echo "Faltan fuentes como cuarto parámetro";
exit 1;
} fi;
if (test "$tipoestilo" != "1ev" -a "$tipoestilo" != "4ev") then {
echo "Quinto parámetro debe ser tipo de estilo (1ev o 4ev)";
exit 1;
} fi;
if (test "$gutnum" = "") then {
echo "Falta número Gutenberg como sexto parámetro";
exit 1;
} fi;
if (test "$gutdate" = "") then {
echo "Falta fecha de publicación en Gutenberg como septimo parámetro";
exit 1;
} fi;
if (test "$sword1" = "") then {
echo "Nombre de módulo en Sword es octavo parámetro";
exit 1;
} fi;
if (test "$sword2" = "") then {
echo "Nombre de módulo/archivo en Sword es noveno parámetro";
exit 1;
} fi;
guturl=`echo $gutnum | sed -e "s|^\([0-9]\)\([0-9]\)\([0-9]\)\([0-9]\).*|http://www.gutenberg.net/\1/\2/\3/\4/&|g"`;
version="";
extdbk=xdbk
function neln {
pwd=`pwd`;
if (test -d $2 -o ! -f $2) then {
ln -s $pwd/$1 $2
} fi
}
function necp {
if (test ! -f $2) then {
cp $1 $2
} fi
}
function nesed {
if (test ! -f $2) then {
sed -e "s|biblia_dp|$pry|g;s|Biblia de dominio público|$desc|g;s|PRY_DESC=\"[^\"]*\"|PRY_DESC=\"$desc\"|g;s|SOURCE_GBFXML=.*|SOURCE_GBFXML=$fuentes|g;s|IMAGES=.*|IMAGES=$imagenes|g;s|Traducción a español de la Biblia|Traducción a español|g;s|PRY_VERSION=\"[^\"]*\"|PRY_VERSION=\"$version\"|g;s|GUTNUM=.*|GUTNUM=\"$gutnum\"|g;s|GUTDATE=.*|GUTDATE=\"$gutdate\"|g;s|GUTURL=.*|GUTURL=\"$guturl\"|g;s|VS_SWORDBOOK_I=.*|VS_SWORDBOOK_I=$sword1|g;s|VS_SWORDBOOK=.*|VS_SWORDBOOK=$sword2|g" $1 > $2
} fi
}
nd=$dir/$pry
mkdir -p $nd
mkdir -p $nd/img
mkdir -p $nd/gutenberg
mkdir -p $nd/ispell
for i in $fuentes ; do
v=`grep -a "<credits.*version" $i | sed -e "s/^.*version=\"\([^\"]*\)\".*$/\1/g" 2> /dev/null`;
if (test "$version" = "" -a "$v" != "") then {
version=$v;
} fi;
echo "$i ($v)";
neln $i $nd;
done
for i in $imagenes ; do
echo $i;
neln $i $nd;
done
neln conf.sh $nd/conf.sh
neln docbookrep_html.xsl $nd/docbookrep_html.xsl
neln docbookrep_tex.dsl $nd/docbookrep_tex.dsl
neln docbookrep_html.dsl $nd/docbookrep_html.dsl
nesed Leame.txt $nd/Leame.txt
nesed Instala.txt $nd/Instala.txt
nesed Creditos.txt $nd/Creditos.txt
nesed Novedades.txt $nd/Novedades.txt
nesed Desarrollo.txt $nd/Desarrollo.txt
nesed estilos/estilo-$tipoestilo.dsl $nd/estilo.dsl
nesed estilos/estilohtml-$tipoestilo.xsl $nd/estilohtml.xsl
nesed confv.empty $nd/confv.empty
nesed Makefile $nd/Makefile
nesed Derechos.txt $nd/Derechos.txt
neln derechos.gbfxml $nd
neln biblio.gbfxml $nd
neln biblia_dp.css $nd/$pry.css
neln gbfxml2db.xsl $nd
neln gbfxml2html.xsl $nd
neln gbfxml2vhtml.xsl $nd
neln gbfxml2strong.xsl $nd
neln gbfxml.dtd $nd
neln gutenberg/Readme.txt $nd/gutenberg
neln gutenberg/footer.inc $nd/gutenberg
neln ispell/$pry.ispell $nd/ispell
neln img/blank.png $nd/img/
neln img/caution.png $nd/img/
neln img/draft.png $nd/img/
neln img/home.png $nd/img/
neln img/important.png $nd/img/
neln img/next.png $nd/img/
neln img/note.png $nd/img/
neln img/prev.png $nd/img/
neln img/tip.png $nd/img/
neln img/toc-blank.png $nd/img/
neln img/toc-minus.png $nd/img/
neln img/toc-plus.png $nd/img/
neln img/up.png $nd/img/
neln img/warning.png $nd/img/
if (test ! -d $dir/herram) then {
mkdir $nd/herram
ln -s $pwd/herram/* $nd/herram
rm -f $nd/herram/CVS
} fi;
# Generación de libro
echo '<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE gbfxml SYSTEM "gbfxml.dtd" [
<!ENTITY % confv SYSTEM "confv.ent">
%confv;
<!ENTITY derechos SYSTEM "derechos.gbfxml">' > $nd/$pry.gbfxml
for i in $fuentes ; do
echo "<!ENTITY $i SYSTEM \"$i\">" >> $nd/$pry.gbfxml;
done
echo '<!ENTITY biblio SYSTEM "biblio.gbfxml">
]>
<gbfxml version="1.0" lang="es">
<tt>&PRY-DESC;</tt>
<stt>&PROYECTO;</stt>
&derechos;' >> $nd/$pry.gbfxml
for i in $fuentes ; do
echo "&$i;" >> $nd/$pry.gbfxml;
done
echo '&biblio;
</gbfxml>' >> $nd/$pry.gbfxml