-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsite
More file actions
289 lines (211 loc) · 4.98 KB
/
Copy pathsite
File metadata and controls
289 lines (211 loc) · 4.98 KB
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
#! /bin/bash
#chmod -R 555 /web/site/www; chmod -R 550 /web/site/www/bin /web/site/www/text/
#chmod -R 555 /web/site/www
# xgettext --from-code=UTF-8 -o messages.pot *.php
# msgmerge -s -U oriya.po hello-new.pot
if [[ ! $1 ]]; then
echo "Nom du fichier en argument"
echo "bash site XX.lyx"
exit
fi
if [[ $2 ]]; then
xlg=$2
else
echo "Nom des langues forcé, en en premier"
echo "bash site XX.lyx en,fr,sp"
exit
fi
mkdir -p ./text
#LG=$(echo ${1} | awk -F"." '{print $1}' | awk -F"_" '{print $2}')
cat ${1} | awk -v xlg="${xlg}" '
BEGIN{
section=0
lgsep=""
if (xlg) {
split(xlg,lg,",")
print xlg
lgsep="_"
}
}
{
if ($0 ~ /\\begin_layout Section/ ) {
if (out){print "?>" > out; print "?>" > out_conf }
out= "./text/" section ".php"
out_conf= "./text/" section "_conf.php"
out_droite = "./text/" section "_r.php"
section++
print "<?php" > out
# Ne imprime pas les sections
NREF=NR
active="h1"
}
if ($0 ~ /\\begin_layout Subsection/ ) {
NREF=NR
active="h2"
}
if ($0 ~ /\\begin_layout Subsubsection/ ) {
NREF=NR
active="h3"
}
if ($0 ~ /\\begin_layout Standard/ ) {
NREF=NR
active="p"
}
if ($0 ~ /\\begin_layout Verse/ ) {
NREF=NR
active="conf"
}
if ($0 ~ /\\begin_layout Quote/ ) {
NREF=NR
active="pre"
}
if ($0 ~ /\\begin_layout LyX-Code/ ) {
NREF=NR
active="1"
}
if ($0 ~ /\\begin_layout Quotation/) {
NREF=NR
active="2"
}
if ($0 ~ /\\begin_layout Itemize/ ) {
if (active = "li" && active_old != "li")
{
print "print \"<ul>\";" > out
}
NREF=NR
active="li"
ittype="ul"
}
if ($0 ~ /\\begin_layout Enumerate/ ) {
if (active = "li" && active_old != "li")
{
print "print \"<ol>\";" > out
}
NREF=NR
active="li"
ittype="ol"
}
if ($0 ~ /\\begin_inset Quotes/ ) {
mem=mem"\""
}
if ($0 ~ /begin{framed}/ ) {
print "print \" <div class=\047box\047>\";" > out
active_old=active
active=""
mem=""
}
if ($0 ~ /end{framed}/ ) {
print "print \" </div><!-- box -->\";" > out
active_old=active
active=""
mem=""
}
if ($0 ~ /\lyxline/ || $0 ~ /CommandInset line/ ) {
out= out_droite
active=""
}
# Sort le texte
if ( active && $1 ~ /\\end_layout/ ) {
# Traite le titre différament pour créer une page dédiée
if (active == "h1") {
page=mem
gsub( " " , "_" , page)
gsub( /é|è|ê/ , "e" , page)
gsub( /à|â/ , "a" , page)
gsub( /ù|û/ , "u" , page)
page=tolower(page)
page=page
if (section == "1") {
page="index"
}
#Fichier de conf de la page
print "<?php" > out_conf
# print "$title=_(\"" mem "\");" > out_conf
print "$page=\"" page "\";" > out_conf
if (! lg[1] ){
print "<?php" > page ".php"
print "$pid=\"" section-1 "\";" > page ".php"
print "include_once(\"./bin/head.php\");" > page ".php"
print "?>" > page ".php"
}
if (lg[1]){
for ( var in lg) {
print "<?php" > page lgsep lg[var] ".php"
print "$lg=\""lg[var]"\";" > page lgsep lg[var] ".php"
print "$pid=\"" section-1 "\";" > page lgsep lg[var] ".php"
print "include_once(\"./bin/head.php\");" > page lgsep lg[var] ".php"
print "?>" > page lgsep lg[var] ".php"
}
}
mem=""
next
}
# Récupere les lycode pour la configuration
if (active == "conf") {
# a=sprintf("%s",mem)
split(mem,memm,"=")
gsub("=","=\"",memm[2]);
print "$" memm[1] "=_(\"" memm[2] "\");" > out_conf
mem=""
next
}
if (active == "php") {
print $0 > page ".php"
print $0 > "w"
mem=""
next
}
# Mise en forme
gsub( "\n" , "" , mem)
gsub( " " , " " , mem)
# Les actifs à 1 impriment pas de balises, exemple: pour du code php dans le texte
if ( active != "1" && active != "2" ) {
print "print \"<"active">\";" > out
# Ne pas traduir les lignes de commandes
if ( active != "pre") {
print "printf(_(\"" mem "\"));" > out
}
else {
print "print \"" mem "\" ;" > out
}
# Fermeture des balises
print "print \"</"active">\";" > out
}
if ( active == "1") {
print "print \""mem "\";" > out
}
if ( active == "2") {
gsub(/\\"/,"\"",mem)
print mem > out
}
# Nettoyage des variables
active_old=active
active=""
mem=""
#
}
# Ouverture des balises
if ( active && NR == NREF ) {
# Fermeture des balise particulière ul
if (active_old == "li" && active != "li")
{
if (ittype=="ol"){
print "print \"</ol>\";" > out
}
if (ittype=="ul"){
print "print \"</ul>\";" > out
}
ittype=""
}
}
# Memorise le texte
if ( active && NR > NREF && $1 !~ /^\\/ && $1 !~ /^status/ && $1 !~ /framed/) {
a=$0
gsub( /"/ , "\\\"" , a)
mem= mem a
}
}END{print "?>" > out }'
mkdir -p locale
xgettext --from-code=UTF-8 -o ./locale/messages.pot ./text/*.php
msgmerge -s -U locale/fr_FR/LC_MESSAGES/message.po ./locale/messages.pot
msgmerge -s -U locale/sp_SP/LC_MESSAGES/message.po ./locale/messages.pot