rev |
line source |
al@898
|
1 #!/bin/sh
|
al@898
|
2 #
|
al@898
|
3 # SliTaz Cooker CGI + Lighttpd web interface.
|
al@898
|
4 #
|
al@898
|
5
|
al@898
|
6 # Make request URI relative to the script name
|
al@898
|
7 base="$(dirname "$SCRIPT_NAME")"; [ "$base" == '/' ] && base=''
|
al@898
|
8 REQUEST_URI=$(echo "$REQUEST_URI" | sed "s|^$base/*|/|; s|\?.*||")
|
al@898
|
9
|
al@898
|
10 # Split the URI request to /pkg/cmd/arg
|
al@898
|
11 export pkg=$(echo "$REQUEST_URI" | cut -d/ -f2)
|
al@898
|
12 export cmd=$(echo "$REQUEST_URI" | cut -d/ -f3)
|
al@898
|
13 export arg=$(echo "$REQUEST_URI" | sed 's|^/[^/]*/[^/]*/||')
|
al@898
|
14
|
al@898
|
15
|
al@898
|
16 . /usr/lib/slitaz/httphelper.sh
|
al@898
|
17
|
al@898
|
18 [ -f "/etc/slitaz/cook.conf" ] && . /etc/slitaz/cook.conf
|
al@898
|
19 [ -f "./cook.conf" ] && . ./cook.conf
|
al@898
|
20 wok="$WOK"
|
al@898
|
21 title=${title:-SliTaz Cooker}
|
al@898
|
22 # Cooker DB files.
|
al@898
|
23 activity="$CACHE/activity"
|
al@898
|
24 commits="$CACHE/commits"
|
al@898
|
25 cooklist="$CACHE/cooklist"
|
al@898
|
26 cookorder="$CACHE/cookorder"
|
al@898
|
27 command="$CACHE/command"; touch $command
|
al@898
|
28 blocked="$CACHE/blocked"
|
al@898
|
29 broken="$CACHE/broken"
|
al@898
|
30 cooknotes="$CACHE/cooknotes"
|
al@898
|
31 cooktime="$CACHE/cooktime"
|
al@898
|
32 wokrev="$CACHE/wokrev"
|
al@933
|
33 webstat="$CACHE/webstat"
|
al@940
|
34 splitdb="$CACHE/split.db"
|
al@898
|
35
|
al@898
|
36 # Path to markdown to html convertor
|
al@898
|
37 cmark_opts='--smart -e table -e strikethrough -e autolink -e tagfilter'
|
al@898
|
38 if [ -n "$(which cmark 2>/dev/null)" ]; then
|
al@898
|
39 md2html="$(which cmark) $cmark_opts"
|
al@898
|
40 elif [ -x "./cmark" ]; then
|
al@898
|
41 md2html="./cmark $cmark_opts"
|
al@898
|
42 elif [ -n "$(which sundown 2>/dev/null)" ]; then
|
al@898
|
43 md2html=$(which sundown)
|
al@898
|
44 elif [ -x "./sundown" ]; then
|
al@898
|
45 md2html="./sundown"
|
al@898
|
46 fi
|
al@898
|
47
|
al@898
|
48
|
al@898
|
49
|
al@898
|
50
|
al@898
|
51 # Search form redirection
|
al@898
|
52 if [ -n "$(GET search)" ]; then
|
al@898
|
53 echo -e "HTTP/1.1 301 Moved Permanently\nLocation: $base/$(GET q)\n\n"
|
al@898
|
54 exit 0
|
al@898
|
55 fi
|
al@898
|
56
|
al@898
|
57
|
al@898
|
58 # Show the running command and it's progression
|
al@898
|
59
|
al@898
|
60 running_command() {
|
al@898
|
61 state="$(cat $command)"
|
al@923
|
62 local pct=''
|
al@898
|
63 if [ -n "$state" ];then
|
al@898
|
64 echo -n "$state</td></tr><tr><td>Completion</td>"
|
al@898
|
65 set -- $(grep "^$state" $cooktime)
|
al@898
|
66 [ -n "$1" -a $2 -ne 0 ] && pct=$((($(date +%s)-$3)*100/$2))
|
al@898
|
67 [ -n "$pct" ] && max="max='100'"
|
al@898
|
68 echo -n "<td><progress id='gauge' $max value='$pct' title='Click to stop updating' onclick='stopUpdating()'>"
|
al@898
|
69 echo -n "</progress> <span id='pct'>${pct:-?}%</span>"
|
al@898
|
70 [ "$2" -gt 60 ] &&
|
al@898
|
71 echo -n "</td></tr><tr><td>Estimated end time</td><td>$(date +%H:%M -ud @$(($2+$3)))"
|
al@898
|
72 else
|
al@898
|
73 echo 'not running'
|
al@898
|
74 fi
|
al@898
|
75 }
|
al@898
|
76
|
al@898
|
77
|
al@898
|
78 # HTML page header
|
al@898
|
79
|
al@898
|
80 page_header() {
|
al@1029
|
81 local theme t='' css pretitle='' command
|
al@898
|
82 theme=$(COOKIE theme)
|
al@898
|
83 [ "$theme" == 'default' ] && theme=''
|
al@898
|
84 [ -n "$theme" ] && theme="-$theme"
|
al@898
|
85 css="cooker$theme.css"
|
al@898
|
86
|
al@1012
|
87 if [ -n "$pkg" ]; then
|
al@1029
|
88 case "$pkg" in
|
al@1029
|
89 ~) pretitle="Tag \"$cmd\" - ";;
|
al@1029
|
90 *) pretitle="$pkg - ";;
|
al@1029
|
91 esac
|
al@1012
|
92 else
|
al@1029
|
93 command="$(cat $command)"
|
al@1029
|
94 [ -n "$command" ] && pretitle="$command - "
|
al@1012
|
95 fi
|
al@1012
|
96
|
al@898
|
97 echo -e 'Content-Type: text/html; charset=UTF-8\n'
|
al@898
|
98
|
al@898
|
99 cat <<EOT
|
al@898
|
100 <!DOCTYPE html>
|
al@898
|
101 <html lang="en">
|
al@898
|
102 <head>
|
al@1012
|
103 <title>$pretitle$title</title>
|
al@898
|
104 <link rel="stylesheet" href="/$css">
|
al@898
|
105 <link rel="icon" type="image/png" href="/slitaz-cooker.png">
|
al@903
|
106 <link rel="search" href="$base/os.xml" title="$title" type="application/opensearchdescription+xml">
|
al@898
|
107 <!-- mobile -->
|
al@898
|
108 <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
al@898
|
109 <meta name="theme-color" content="#222">
|
al@898
|
110 <!-- rss -->
|
al@898
|
111 <link rel="alternate" type="application/rss+xml" title="$title Feed" href="?rss">
|
al@898
|
112 </head>
|
al@898
|
113 <body>
|
al@898
|
114 <div id="container">
|
al@898
|
115 <header>
|
al@898
|
116 <h1><a href="$base/">$title</a></h1>
|
al@898
|
117 <div class="network">
|
al@898
|
118 <a href="http://www.slitaz.org/">Home</a>
|
al@898
|
119 <a href="http://bugs.slitaz.org/">Bugs</a>
|
al@898
|
120 <a href="http://hg.slitaz.org/wok-next/">Hg</a>
|
al@898
|
121 <a href="http://roadmap.slitaz.org/">Roadmap</a>
|
al@898
|
122 <a href="http://pizza.slitaz.me/">Pizza</a>
|
al@898
|
123 <a href="http://tank.slitaz.org/">Tank</a>
|
al@898
|
124 |
|
al@947
|
125 <a href="/cross/">Cross</a>
|
al@947
|
126 <a href="/i486.cgi">i486</a>
|
al@898
|
127 <a href="$base/cookiso.cgi">ISO</a>
|
al@898
|
128 <select onChange="window.location.href=this.value" style="display: none">
|
al@898
|
129 <option value=".">Go to…</option>
|
al@898
|
130 <option value="http://www.slitaz.org/">Home</option>
|
al@898
|
131 <option value="http://bugs.slitaz.org/">Bug tracker</option>
|
al@898
|
132 <option value="http://hg.slitaz.org/wok/">Hg wok</option>
|
al@898
|
133 <option value="http://roadmap.slitaz.org/">Roadmap</option>
|
al@898
|
134 <option value="http://pizza.slitaz.me/">Pizza</option>
|
al@898
|
135 <option value="http://tank.slitaz.org/">Tank</option>
|
al@898
|
136 <option disabled>---------</option>
|
al@898
|
137 <option value="cross/">Cross</option>
|
al@898
|
138 <option value="i486.cgi">i486</option>
|
al@898
|
139 <option value="cookiso.cgi">ISO</option>
|
al@898
|
140 </select>
|
al@898
|
141 </div>
|
al@898
|
142 </header>
|
al@898
|
143
|
al@898
|
144 <main>
|
al@898
|
145 EOT
|
al@898
|
146
|
al@898
|
147 [ -n "$(GET debug)" ] && echo "<pre><code class='language-ini'>$(env | sort)</code></pre>"
|
al@898
|
148 }
|
al@898
|
149
|
al@898
|
150
|
al@898
|
151 # HTML page footer
|
al@898
|
152
|
al@898
|
153 page_footer() {
|
al@898
|
154 date_now=$(date +%s)
|
al@898
|
155 sec_now=$(date +%S); sec_now=${sec_now#0} # remove one leading zero
|
al@898
|
156 wait_sec=$(( 60 - $sec_now ))
|
al@898
|
157 cat <<EOT
|
al@898
|
158 </main>
|
al@898
|
159
|
al@898
|
160 <footer>
|
al@898
|
161 <a href="http://www.slitaz.org/">SliTaz Website</a>
|
al@898
|
162 <a href="$base/">Cooker</a>
|
al@898
|
163 <a href="$base/doc/cookutils/cookutils.html">Documentation</a>
|
al@898
|
164 <a href="$base/?theme">Theme</a>
|
al@898
|
165 </footer>
|
al@898
|
166 </div>
|
al@898
|
167 <script src="/cooker.js"></script>
|
al@898
|
168 <script>refreshDate(${wait_sec}000, ${date_now}000)</script>
|
al@898
|
169 </body>
|
al@898
|
170 </html>
|
al@898
|
171 EOT
|
al@898
|
172 }
|
al@898
|
173
|
al@898
|
174
|
al@898
|
175 show_note() {
|
al@898
|
176 echo "<div class='bigicon-$1'>$2</div>"
|
al@898
|
177 }
|
al@898
|
178
|
al@898
|
179
|
al@898
|
180 not_found() {
|
al@898
|
181 local file="${1#$PKGS/}"; file="${file#$LOGS/}"; file="${file#$WOK/}"
|
al@898
|
182 echo "HTTP/1.1 404 Not Found"
|
al@898
|
183 page_header
|
al@898
|
184 echo "<h2>Not Found</h2>"
|
al@898
|
185 case $2 in
|
al@898
|
186 pkg)
|
al@898
|
187 show_note e "The requested package “$(basename "$(dirname "$file")")” was not found." ;;
|
al@898
|
188 *)
|
al@898
|
189 show_note e "The requested file “$file” was not found." ;;
|
al@898
|
190 esac
|
al@898
|
191 page_footer
|
al@898
|
192 }
|
al@898
|
193
|
al@898
|
194
|
al@898
|
195 manage_modified() {
|
al@898
|
196 local file="$1" option="$2" nul day mon year time hh mm ss date_s
|
al@898
|
197 if [ ! -f "$file" ]; then
|
al@898
|
198 if [ "$option" == 'silently-absent' ]; then
|
al@898
|
199 echo "HTTP/1.1 404 Not Found"
|
al@898
|
200 return
|
al@898
|
201 else
|
al@898
|
202 not_found "$file" "$2"
|
al@898
|
203 exit
|
al@898
|
204 fi
|
al@898
|
205 fi
|
al@898
|
206 [ "$option" == 'no-last-modified' ] && return
|
al@898
|
207 if [ -n "$HTTP_IF_MODIFIED_SINCE" ]; then
|
al@898
|
208 echo "$HTTP_IF_MODIFIED_SINCE" | \
|
al@898
|
209 while read nul day mon year time nul; do
|
al@898
|
210 case $mon in
|
al@898
|
211 Jan) mon='01';; Feb) mon='02';; Mar) mon='03';; Apr) mon='04';;
|
al@898
|
212 May) mon='05';; Jun) mon='06';; Jul) mon='07';; Aug) mon='08';;
|
al@898
|
213 Sep) mon='09';; Oct) mon='10';; Nov) mon='11';; Dec) mon='12';;
|
al@898
|
214 esac
|
al@898
|
215 hh=$(echo $time | cut -d: -f1)
|
al@898
|
216 mm=$(echo $time | cut -d: -f2)
|
al@898
|
217 ss=$(echo $time | cut -d: -f3)
|
al@898
|
218 date_s=$(date -ud "$year$mon$day$hh$mm.$ss" +%s)
|
al@898
|
219 # if [ "$date_s" -ge "$(date -ur "$file" +%s)" ]; then
|
al@898
|
220 # echo -e 'HTTP/1.1 304 Not Modified\n'
|
al@898
|
221 # exit
|
al@898
|
222 # fi
|
al@898
|
223 # TODO: improve caching control
|
al@898
|
224 done
|
al@898
|
225 fi
|
al@898
|
226 echo "Last-Modified: $(date -Rur "$file" | sed 's|UTC|GMT|')"
|
al@898
|
227 echo "Cache-Control: public, max-age=3600"
|
al@898
|
228 }
|
al@898
|
229
|
al@898
|
230
|
al@898
|
231 # Query '?pct=<package>': update percentage
|
al@898
|
232
|
al@898
|
233 if [ -n "$(GET pct)" ]; then
|
al@898
|
234 pkg="$(GET pct)"
|
al@898
|
235 state="$(cat $command)"
|
al@898
|
236 if [ "$state" == "cook:$pkg" ]; then
|
al@898
|
237 set -- $(grep "^$state" $cooktime)
|
al@898
|
238 [ -n "$1" ] && pct=$(( ($(date +%s) - $3) * 100 / $2 ))
|
al@898
|
239 echo "${pct:-?}"
|
al@898
|
240 else
|
al@898
|
241 echo 'reload'
|
al@898
|
242 fi
|
al@898
|
243 exit 0
|
al@898
|
244 fi
|
al@898
|
245
|
al@898
|
246
|
al@898
|
247 # Query '?poke': poke cooker
|
al@898
|
248
|
al@898
|
249 if [ -n "$(GET poke)" ]; then
|
al@898
|
250 touch $CACHE/cooker-request
|
al@898
|
251 echo -e "Location: ${HTTP_REFERER:-${REQUEST_URI%\?*}}\n"
|
al@898
|
252 exit
|
al@898
|
253 fi
|
al@898
|
254
|
al@898
|
255
|
al@898
|
256 # Query '?recook=<package>': query to recook package
|
al@898
|
257
|
al@898
|
258 if [ -n "$(GET recook)" ]; then
|
al@898
|
259 pkg="$(GET recook)"
|
al@898
|
260 case "$HTTP_USER_AGENT" in
|
al@898
|
261 *SliTaz*)
|
al@898
|
262 grep -qs "^$pkg$" $CACHE/recook-packages ||
|
al@898
|
263 echo "$pkg" >> $CACHE/recook-packages
|
al@898
|
264 esac
|
al@898
|
265 echo -e "Location: ${HTTP_REFERER:-${REQUEST_URI%\?*}}\n"
|
al@898
|
266 exit
|
al@898
|
267 fi
|
al@898
|
268
|
al@898
|
269
|
al@898
|
270 # Query '/i/<log>/<pkg>': show indicator icon
|
al@898
|
271 # Can't use ?query - not able to change '+' to '%2B' in the sed rules (see log handler)
|
al@898
|
272
|
al@898
|
273 if [ "$pkg" == 'i' ]; then
|
al@898
|
274 echo -en "Content-Type: image/svg+xml\n\n<svg xmlns='http://www.w3.org/2000/svg' height='12' width='8'><path d='"
|
al@898
|
275 if [ $LOGS/$cmd -nt $PKGS/$arg.tazpkg ]; then
|
al@898
|
276 echo "m1 2-1 1v8l1 1h6l1-1v-8l-1-1z' fill='#090'/></svg>"
|
al@898
|
277 else
|
al@898
|
278 echo "m0 3v8l1 1h6l1-1v-8l-1-1h-6zm3 0h2v5h-2zm0 6h2v2h-2z' fill='#d00'/></svg>"
|
al@898
|
279 fi
|
al@898
|
280 exit
|
al@898
|
281 fi
|
al@898
|
282
|
al@898
|
283
|
al@982
|
284 # Query '/s/<pkg>': show status indicator icon
|
al@982
|
285 # Can't use ?query - not able to change '+' to '%2B' in the sed rules (see log handler)
|
al@982
|
286
|
al@982
|
287 if [ "$pkg" == 's' ]; then
|
al@982
|
288 # argument <pkg> is in $cmd variable
|
al@982
|
289 echo -en "Content-Type: image/svg+xml\n\n<svg xmlns='http://www.w3.org/2000/svg' height='12' width='8'><path d='"
|
al@1005
|
290 # packages.info updates with each new package, so we'll find actual info here
|
al@1005
|
291 if grep -q "^$cmd"$'\t' $PKGS/packages.info; then
|
al@982
|
292 echo "m1 2-1 1v8l1 1h6l1-1v-8l-1-1z' fill='#090'/></svg>"
|
al@982
|
293 else
|
al@982
|
294 echo "m0 3v8l1 1h6l1-1v-8l-1-1h-6zm3 0h2v5h-2zm0 6h2v2h-2z' fill='#d00'/></svg>"
|
al@982
|
295 fi
|
al@982
|
296 exit
|
al@982
|
297 fi
|
al@982
|
298
|
al@982
|
299
|
al@898
|
300 # Query '?theme[=<theme>]': change UI theme
|
al@898
|
301
|
al@898
|
302 if [ -n "$(GET theme)" ]; then
|
al@898
|
303 theme="$(GET theme)"
|
al@924
|
304 ref="$(echo "$HTTP_REFERER" | sed 's|:|%3A|g; s|/|%2F|g; s|\?|%3F|g; s|\+|%2B|g;')"
|
al@898
|
305 case $theme in
|
al@898
|
306 theme)
|
al@898
|
307 current=$(COOKIE theme)
|
al@898
|
308 page_header
|
al@898
|
309 cat <<EOT
|
al@898
|
310 <section>
|
al@898
|
311 <h2>Change theme</h2>
|
al@898
|
312 <p>Current theme: “${current:-default}”. Select other:</p>
|
al@898
|
313 <ul>
|
al@898
|
314 $(
|
al@903
|
315 for i in default emerald sky goldenrod midnight like2016 terminal; do
|
al@924
|
316 [ "$i" == "${current:-default}" ] || echo "<li><a href=\"$base/?theme=$i&ref=$ref\">$i</a></li>"
|
al@898
|
317 done
|
al@898
|
318 )
|
al@898
|
319 </ul>
|
al@898
|
320 </section>
|
al@898
|
321 EOT
|
al@898
|
322 page_footer
|
al@898
|
323 exit 0
|
al@898
|
324 ;;
|
al@903
|
325 default|emerald|sky|goldenrod|midnight|like2016|terminal)
|
al@924
|
326 ref="$(GET ref)"
|
al@924
|
327 [ -n "$ref" ] || ref="$base/"
|
al@898
|
328 # Expires in a year
|
al@898
|
329 expires=$(date -uRd @$(($(date +%s)+31536000)) | sed 's|UTC|GMT|')
|
al@924
|
330 echo -e "HTTP/1.1 302 Found\nLocation: $ref\nCache-Control: no-cache\nSet-Cookie: theme=$theme; expires=$expires\n\n"
|
al@898
|
331 exit 0
|
al@898
|
332 ;;
|
al@898
|
333 esac
|
al@898
|
334 fi
|
al@898
|
335
|
al@898
|
336
|
al@898
|
337 #case "$QUERY_STRING" in
|
al@898
|
338 # stuff*)
|
al@898
|
339 # file="$wok/$(GET stuff)"
|
al@898
|
340 # manage_modified "$file"
|
al@898
|
341 # ;;
|
al@898
|
342 #
|
al@898
|
343 # pkg=*|receipt=*|description=*|files=*|log=*|man=*|doc=*|info=*)
|
al@898
|
344 # type=${QUERY_STRING%%=*}
|
al@898
|
345 # pkg=$(GET $type)
|
al@898
|
346 # case "$type" in
|
al@898
|
347 # description)
|
al@898
|
348 # manage_modified "$wok/$pkg/receipt" 'no-last-modified'
|
al@898
|
349 # manage_modified "$wok/$pkg/description.txt" 'silently-absent'
|
al@898
|
350 # ;;
|
al@898
|
351 # log)
|
al@898
|
352 # manage_modified "$wok/${pkg%%.log*}/receipt" 'no-last-modified'
|
al@898
|
353 # manage_modified "$LOGS/$pkg"
|
al@898
|
354 # ;;
|
al@898
|
355 # *)
|
al@898
|
356 # manage_modified "$wok/$pkg/receipt" pkg
|
al@898
|
357 # ;;
|
al@898
|
358 # esac
|
al@898
|
359 # ;;
|
al@898
|
360 #esac
|
al@898
|
361
|
al@898
|
362
|
al@898
|
363 # RSS feed generator
|
al@898
|
364 # URI: ?rss[&limit={1..100}]
|
al@898
|
365
|
al@898
|
366 if [ -n "$(GET rss)" ]; then
|
al@898
|
367 limit=$(GET limit); limit="${limit:-12}"; [ "$limit" -gt 100 ] && limit='100'
|
al@898
|
368 pubdate=$(date -Rur$(ls -t $FEEDS/*.xml | head -n1) | sed 's|UTC|GMT|')
|
al@898
|
369 cooker_url="http://$HTTP_HOST$base/"
|
al@898
|
370 cat <<EOT
|
al@898
|
371 Content-Type: application/rss+xml
|
al@898
|
372
|
al@898
|
373 <?xml version="1.0" encoding="utf-8" ?>
|
al@898
|
374 <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
al@898
|
375 <channel>
|
al@898
|
376 <title>$title</title>
|
al@898
|
377 <description>The SliTaz packages cooker feed</description>
|
al@898
|
378 <link>$cooker_url</link>
|
al@898
|
379 <lastBuildDate>$pubdate</lastBuildDate>
|
al@898
|
380 <pubDate>$pubdate</pubDate>
|
al@898
|
381 <atom:link href="$cooker_url?rss" rel="self" type="application/rss+xml" />
|
al@898
|
382 EOT
|
al@898
|
383 for rss in $(ls -t $FEEDS/*.xml | head -n$limit); do
|
al@898
|
384 sed "s|http[^=]*=|$cooker_url|; s|<guid|& isPermaLink=\"false\"|g; s|</pubDate| GMT&|g" $rss
|
al@898
|
385 done
|
al@898
|
386 cat <<EOT
|
al@898
|
387 </channel>
|
al@898
|
388 </rss>
|
al@898
|
389 EOT
|
al@898
|
390 exit 0
|
al@898
|
391 fi
|
al@898
|
392
|
al@898
|
393
|
al@903
|
394 ### OpenSearch ###
|
al@903
|
395
|
al@903
|
396 # Query '/os.xml': get OpenSearch Description
|
al@903
|
397
|
al@903
|
398 if [ "$pkg" == 'os.xml' ]; then
|
al@903
|
399 cat <<EOT
|
al@903
|
400 Content-Type: application/xml; charset=UTF-8
|
al@903
|
401
|
al@903
|
402 <?xml version="1.0" encoding="UTF-8"?>
|
al@903
|
403 <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
al@903
|
404 <ShortName>$title</ShortName>
|
al@903
|
405 <Description>SliTaz packages search</Description>
|
al@903
|
406 <Image width="16" height="16" type="image/png">http://$HTTP_HOST/images/logo.png</Image>
|
al@903
|
407 <Url type="text/html" method="GET" template="http://$HTTP_HOST$base/{searchTerms}"/>
|
al@903
|
408 <Url type="application/x-suggestions+json" method="GET" template="http://$HTTP_HOST$base/">
|
al@903
|
409 <Param name="oss" value="{searchTerms}"/>
|
al@903
|
410 </Url>
|
al@903
|
411 <SearchForm>http://$HTTP_HOST$base/</SearchForm>
|
al@903
|
412 <InputEncoding>UTF-8</InputEncoding>
|
al@903
|
413 </OpenSearchDescription>
|
al@903
|
414 EOT
|
al@903
|
415 exit 0
|
al@903
|
416 fi
|
al@903
|
417
|
al@903
|
418 # Query '?oss[=<term>]': OpenSearch suggestions
|
al@903
|
419
|
al@903
|
420 if [ -n "$(GET oss)" ]; then
|
al@903
|
421 term="$(GET oss | tr -cd '[:alnum:]+-')"
|
al@903
|
422 echo -e 'Content-Type: application/x-suggestions+json; charset=UTF-8\n'
|
al@903
|
423 cd $wok
|
al@903
|
424 ls | fgrep "$term" | head -n10 | awk -vterm="$term" '
|
al@903
|
425 BEGIN{printf("[\"%s\",[", term)}
|
al@903
|
426 {printf("%s\"%s\"", NR != 1 ? "," : "", $0)}
|
al@903
|
427 END {printf("]]")}
|
al@903
|
428 '
|
al@903
|
429 exit 0
|
al@903
|
430 fi
|
al@903
|
431
|
al@903
|
432
|
al@898
|
433
|
al@898
|
434
|
al@898
|
435 #
|
al@898
|
436 # Functions
|
al@898
|
437 #
|
al@898
|
438
|
al@898
|
439
|
al@898
|
440 # Unpack to stdout
|
al@898
|
441
|
al@898
|
442 docat() {
|
al@898
|
443 case "$1" in
|
al@898
|
444 *gz) zcat ;;
|
al@898
|
445 *bz2) bzcat ;;
|
al@898
|
446 *xz) xzcat ;;
|
al@898
|
447 *) cat
|
al@898
|
448 esac < $1
|
al@898
|
449 }
|
al@898
|
450
|
al@898
|
451
|
al@898
|
452 # Tiny texinfo converter
|
al@898
|
453
|
al@898
|
454 info2html() {
|
al@898
|
455 sed \
|
al@898
|
456 -e 's|&|\&|g; s|<|\<|g; s|>|\>|g' \
|
al@898
|
457 -e 's|^\* \(.*\)::|* <a href="#\1">\1</a> |' \
|
al@898
|
458 -e 's|\*note \(.*\)::|<a href="#\1">\1</a>|' \
|
al@898
|
459 -e '/^File: / s|(dir)|Top|g' \
|
al@898
|
460 -e '/^File: / s|Next: \([^,]*\)|<a class="button" href="#\1">Next: \1</a>|' \
|
al@898
|
461 -e '/^File: / s|Prev: \([^,]*\)|<a class="button" href="#\1">Prev: \1</a>|' \
|
al@898
|
462 -e '/^File: / s|Up: \([^,]*\)|<a class="button" href="#\1">Up: \1</a>|' \
|
al@898
|
463 -e '/^File: / s|^.* Node: \([^,]*\), *\(.*\)$|<pre id="\1">\2|' \
|
al@898
|
464 -e '/^<pre id=/ s|^\([^>]*>\)\(<a[^>]*>Next: [^,]*\), *\(<a[^>]*>Prev: [^,]*\), *\(<a[^>]*>Up: .*\)|\1 \3 \4 \2|' \
|
al@898
|
465 -e '/^Tag Table:$/,/^End Tag Table$/d' \
|
al@898
|
466 -e '/INFO-DIR/,/^END-INFO-DIR/d' \
|
al@898
|
467 -e "s|https*://[^>),'\"\`’ ]*|<a href=\"&\">&</a>|g" \
|
al@898
|
468 -e "s|ftp://[^>),\"\` ]*|<a href=\"&\">&</a>|g" \
|
al@898
|
469 -e 's|^\* Menu:|<b>Menu:</b>|' \
|
al@898
|
470 -e "s|^|</pre>|"
|
al@898
|
471 }
|
al@898
|
472
|
al@898
|
473
|
al@898
|
474 # Put some colors into log and DB files.
|
al@898
|
475
|
al@898
|
476 syntax_highlighter() {
|
al@898
|
477 case $1 in
|
al@898
|
478 log)
|
al@898
|
479 # If variables not defined - define them with some rare values
|
al@898
|
480 : ${_src=#_#_#}
|
al@898
|
481 : ${_install=#_#_#}
|
al@898
|
482 : ${_fs=#_#_#}
|
al@898
|
483 : ${_stuff=#_#_#}
|
al@898
|
484 # Use one-letter html tags to save some bytes :)
|
al@998
|
485 # <b>is error (red)</b> <u>is warning (orange)</u> <i>is informative (green)</i>
|
al@1002
|
486 sed \
|
al@1002
|
487 -e 's/&/\&/g; s/</\</g; s/>/\>/g' \
|
al@898
|
488 -e 's#OK$#<i>OK</i>#' \
|
al@898
|
489 -e 's#\([Dd]one\)$#<i>\1</i>#' \
|
al@898
|
490 -e 's#Success$#<i>Success</i>#' \
|
al@898
|
491 -e 's#\([^a-z]\)ok$#\1<i>ok</i>#' \
|
al@898
|
492 -e 's#\([^a-z]\)yes$#\1<i>yes</i>#' \
|
al@912
|
493 -e 's#\([^a-z]\)ON$#\1<i>ON</i>#' \
|
al@898
|
494 -e 's#\([^a-z]\)no$#\1<u>no</u>#' \
|
al@898
|
495 -e 's#\([^a-z]\)none$#\1<u>none</u>#' \
|
al@898
|
496 -e 's#\([^a-z]\)false$#\1<u>false</u>#' \
|
al@912
|
497 -e 's#\([^a-z]\)OFF$#\1<u>OFF</u>#' \
|
al@898
|
498 -e 's#\(^checking .*\.\.\. \)\(.*\)$#\1<i>\2</i>#' \
|
al@898
|
499 \
|
al@898
|
500 -e 's#\( \[Y[nm/]\?\] n\)$# <u>\1</u>#' \
|
al@898
|
501 -e 's#\( \[N[ym/]\?\] y\)$# <i>\1</i>#' \
|
al@898
|
502 -e 's# y$# <i>y</i>#' \
|
al@898
|
503 -e 's# n$# <u>n</u>#' \
|
al@898
|
504 -e 's#(NEW) *$#<b>(NEW)</b>#' \
|
al@898
|
505 \
|
al@898
|
506 -e 's#.*(pkg/local).*#<i>\0</i>#' \
|
al@898
|
507 -e 's#.*(web/cache).*#<u>\0</u>#' \
|
al@898
|
508 \
|
al@898
|
509 -e 's#\([^a-zA-Z]\)\([Ee]rror\)$#\1<b>\2</b>#' \
|
al@898
|
510 -e 's#ERROR:#<b>ERROR:</b>#g' \
|
al@898
|
511 \
|
al@909
|
512 -e 's#^.*[Ff][Aa][Ii][Ll][Ee][Dd].*#<b>\0</b>#' \
|
al@898
|
513 -e 's#^.*[Ff]atal.*#<b>\0</b>#' \
|
al@989
|
514 -e '/non-fatal/ s|</*b>||g' \
|
al@898
|
515 -e 's#^.*[Nn]ot found.*#<b>\0</b>#' \
|
al@898
|
516 -e 's#^.*[Nn]o such file.*#<b>\0</b>#' \
|
al@898
|
517 -e 's#^.*No package .* found.*#<b>\0</b>#' \
|
al@898
|
518 -e 's#^.*Unable to find.*#<b>\0</b>#' \
|
al@938
|
519 -e 's#[^a-zA-Z-][Ii]nvalid.*#<b>\0</b>#' \
|
al@914
|
520 -e 's#\([Nn][Oo][Tt] found\.*\)$#<b>\1</b>#' \
|
al@914
|
521 -e 's#\(found\.*\)$#<i>\1</i>#' \
|
al@898
|
522 \
|
al@898
|
523 -e 's#^.*WARNING:.*#<u>\0</u>#' \
|
al@898
|
524 -e 's#^.*warning:.*#<u>\0</u>#' \
|
al@898
|
525 -e 's#^.* [Ee]rror:* .*#<b>\0</b>#' \
|
al@898
|
526 -e 's#^.*terminated.*#<b>\0</b>#' \
|
al@898
|
527 -e 's#\(missing\)#<b>\1</b>#g' \
|
al@898
|
528 -e 's#^.*[Cc]annot find.*#<b>\0</b>#' \
|
al@898
|
529 -e 's#^.*unrecognized options.*#<u>\0</u>#' \
|
al@898
|
530 -e 's#^.*does not.*#<u>\0</u>#' \
|
al@898
|
531 -e 's#^.*[Ii]gnoring.*#<u>\0</u>#' \
|
al@898
|
532 -e 's#^.*note:.*#<u>\0</u>#' \
|
al@898
|
533 \
|
al@898
|
534 -e 's#^.* will not .*#<u>\0</u>#' \
|
al@898
|
535 -e 's!^Hunk .* succeeded at .*!<u>\0</u>!' \
|
al@898
|
536 -e 's#^.* Warning: .*#<u>\0</u>#' \
|
al@898
|
537 \
|
al@898
|
538 -e "s#^Executing:\([^']*\).#<em>\0</em>#" \
|
al@898
|
539 -e "s#^Making.*#<em>\0</em>#" \
|
al@898
|
540 -e "s#^Scanning dependencies of target .*#<em>\0</em>#" \
|
al@898
|
541 -e "s#^====\([^']*\).#<span class='span-line'>\0</span>#g" \
|
al@898
|
542 -e "s#^[a-zA-Z0-9]\([^']*\) :: #<span class='span-sky'>\0</span>#g" \
|
al@898
|
543 -e "s#[fh]tt*ps*://[^ '\"]*#<a href='\0'>\0</a>#g" \
|
al@898
|
544 \
|
al@941
|
545 -e 's|^<u>\(.*libtool: warning: relinking.*\)</u>|\1|' \
|
al@941
|
546 -e 's|^<u>\(.*libtool: warning: .* has not been installed in .*\)</u>|\1|' \
|
al@941
|
547 -e 's|^<u>\(.*checking for a sed.*\)</u>|\1|' \
|
al@941
|
548 \
|
al@941
|
549 -e "s|$_src|<var>\${src}</var>|g;
|
al@941
|
550 s|$_install|<var>\${install}</var>|g;
|
al@941
|
551 s|$_fs|<var>\${fs}</var>|g;
|
al@941
|
552 s|$_stuff|<var>\${stuff}</var>|g" \
|
al@1002
|
553 \
|
al@1017
|
554 -e "s|\[\([01]\)m\[3\([1-7]\)m|<span class='c\2\1'>|g;
|
al@1017
|
555 s|\[\([01]\);3\([1-7]\)m|<span class='c\2\1'>|g;
|
al@1022
|
556 s|\[3\([1-7]\)m|<span class='c\10'>|g;
|
al@1002
|
557 s|\[\([01]\);0m|<span class='c0\1'>|g;
|
al@1016
|
558 s|\[0m|</span>|g;
|
al@1017
|
559 s|\[m|</span>|g;
|
al@1022
|
560 s|\[0;10m|</span>|g;
|
al@1022
|
561 s|\[K||g;" \
|
al@1002
|
562 \
|
al@913
|
563 -e "s|\[9\([1-6]\)m|<span class='c\10'>|;
|
al@942
|
564 s|\[39m|</span>|;
|
al@1022
|
565 #s|\[1m|<span class='c01'>|g;
|
al@1022
|
566 s|\[1m|<span style='font-weight:bold'>|g; s|(B|</span>|g;
|
al@1022
|
567 s|\[m||g;
|
al@1022
|
568 " \
|
al@1002
|
569 -e "s!^|\(+.*\)!|<span class='c20'>\1</span>!;
|
al@1002
|
570 s!^|\(-.*\)!|<span class='c10'>\1</span>!;
|
al@1002
|
571 s!^|\(@@.*@@\)\$!|<span class='c30'>\1</span>!;"
|
al@1002
|
572 \
|
al@1002
|
573
|
al@898
|
574 ;;
|
al@898
|
575
|
al@898
|
576 files)
|
al@898
|
577 # Highlight the Busybox's `ls` output
|
al@898
|
578 awk '{
|
al@898
|
579 part1 = substr($0, 0, 16);
|
al@898
|
580 part2 = substr($0, 17, 9);
|
al@898
|
581 part3 = substr($0, 26, 9);
|
al@898
|
582 part4 = substr($0, 35);
|
al@898
|
583 if (part2 != "root ") part2 = "<span class=\"c11\">" part2 "</span>";
|
al@898
|
584 if (part3 != "root ") part3 = "<span class=\"c11\">" part3 "</span>";
|
al@898
|
585 print part1 part2 part3 part4;
|
al@898
|
586 }' | \
|
al@924
|
587 sed "s|\[0m/|/\[0m|g;
|
al@924
|
588 s|\[\([01]\);3\([1-7]\)m|<a class='c\2\1'>|g;
|
al@898
|
589 s|\[\([01]\);0m|<a class='c0\1'>|g;
|
al@898
|
590 s|\[0m|</a>|g;
|
al@898
|
591 s|^\(lrwxrwxrwx\)|<span class='c61'>\1</span>|;
|
al@898
|
592 s|^\(-rwxr-xr-x\)|<span class='c21'>\1</span>|;
|
al@898
|
593 s|^\(-rw-r--r--\)|<span class='c31'>\1</span>|;
|
al@924
|
594 s|^\(drwxr-xr-x\)|<span class='c41'>\1</span>|;
|
al@1010
|
595 s|^\([lrwxs-][lrwxs-]*\)|<span class='c11'>\1</span>|;
|
al@898
|
596 "
|
al@898
|
597 ;;
|
al@898
|
598 esac
|
al@898
|
599 }
|
al@898
|
600
|
al@898
|
601
|
al@898
|
602 show_code() {
|
al@898
|
603 echo -n "<pre><code class=\"language-$1\">"
|
al@898
|
604 sed 's|&|\&|g; s|<|\<|g; s|>|\>|g'
|
al@898
|
605 echo '</code></pre>'
|
al@898
|
606 }
|
al@898
|
607
|
al@898
|
608
|
al@898
|
609 datalist() {
|
al@940
|
610 cut -d$'\t' -f2 $splitdb | tr ' ' '\n' | sort -u | awk '
|
al@898
|
611 BEGIN{printf("<datalist id=\"packages\">")}
|
al@940
|
612 {printf("<option>%s",$1)}
|
al@898
|
613 END {printf("</datalist>")}
|
al@898
|
614 '
|
al@898
|
615 }
|
al@898
|
616
|
al@898
|
617
|
al@898
|
618 mklog() {
|
al@898
|
619 awk '
|
al@898
|
620 BEGIN { printf("<pre class=\"log dog\">\n") }
|
al@898
|
621 { print }
|
al@898
|
622 END { print "</pre>" }'
|
al@898
|
623 }
|
al@898
|
624
|
al@898
|
625
|
al@898
|
626 summary() {
|
al@898
|
627 log="$1"
|
al@898
|
628 pkg="$(basename ${log%%.log*})"
|
al@898
|
629
|
al@898
|
630 if [ -f "$log" ]; then
|
al@898
|
631 if grep -q "cook:$pkg$" $command; then
|
al@898
|
632 show_note i "The Cooker is currently building $pkg"
|
al@898
|
633 elif fgrep -q "Summary for:" $log; then
|
al@904
|
634 sed '/^Summary for:/,$!d' $log | awk '
|
al@898
|
635 BEGIN { print "<section>" }
|
al@904
|
636 function row(line) {
|
al@904
|
637 split(line, s, " : ");
|
al@904
|
638 printf("\t<tr><td>%s</td><td>%s</td></tr>\n", s[1], s[2]);
|
al@904
|
639 }
|
al@904
|
640 function row2(line, rowNum) {
|
al@904
|
641 split(line, s, " : ");
|
al@938
|
642 if (rowNum == 1) {
|
al@938
|
643 print "<thead>";
|
al@904
|
644 printf("\t<tr><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th></tr>\n", s[1], s[2], s[3], s[4], s[5]);
|
al@938
|
645 print "</thead><tbody>";
|
al@938
|
646 }
|
al@904
|
647 else
|
al@904
|
648 printf("\t<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>\n", s[1], s[2], s[3], s[4], s[5]);
|
al@904
|
649 }
|
al@898
|
650 {
|
al@904
|
651 if (NR==1) { printf("<h3>%s</h3>\n<table>\n", $0); next }
|
al@904
|
652 if ($0 ~ "===") { seen++; if (seen == 1) next; else exit; }
|
al@904
|
653 if ($0 ~ "---") {
|
al@904
|
654 seen2++;
|
al@938
|
655 if (seen2 == 1) print "</table>\n\n<table class=\"pkgslist\">"
|
al@904
|
656 next
|
al@898
|
657 }
|
al@904
|
658 if (seen2) row2($0, seen2); else row($0);
|
al@898
|
659 }
|
al@938
|
660 END { print "</tbody></table></section>" }
|
al@898
|
661 '
|
al@898
|
662 elif fgrep -q "Debug information" $log; then
|
al@898
|
663 echo -e '<section>\n<h3>Debug information</h3>'
|
al@898
|
664 sed -e '/^Debug information/,$!d; /^===/d; /^$/d' $log | sed -n '1!p' | \
|
al@898
|
665 if [ -n "$2" ]; then
|
al@979
|
666 syntax_highlighter log | sed 's|\([^0-9 ]\)\([0-9][0-9]*\):|\1<a href="#l\2">\2</a>:|'
|
al@898
|
667 else
|
al@898
|
668 sed 's|^[0-9][0-9]*:||' | syntax_highlighter log
|
al@898
|
669 fi | mklog
|
al@898
|
670 echo '</section>'
|
al@898
|
671 fi
|
al@898
|
672 else
|
al@898
|
673 [ -n "$pkg" -a -d "$wok/$pkg" ] && show_note e "No log for $pkg"
|
al@898
|
674 fi
|
al@898
|
675 }
|
al@898
|
676
|
al@898
|
677
|
al@898
|
678 active() {
|
al@898
|
679 [ "$cmd" == "$1" -o "$cmd" == "${2:-$1}" ] && echo -n ' active'
|
al@898
|
680 }
|
al@898
|
681
|
al@898
|
682
|
al@898
|
683 pkg_info() {
|
al@998
|
684 local log active bpkg short_desc=''
|
al@898
|
685 log="$LOGS/$pkg.log"
|
al@898
|
686
|
al@996
|
687 echo -n "<h2><a href=\"$base/${requested_pkg:-$pkg}\">${requested_pkg:-$pkg}</a>"
|
al@998
|
688 # Get short description for existing packages
|
al@998
|
689 [ -f $PKGS/packages.info ] &&
|
al@998
|
690 short_desc="$(awk -F$'\t' -vp="${requested_pkg:-$pkg}" '{if ($1 == p) { printf("%s", $4); exit; }}' $PKGS/packages.info)"
|
paul@1006
|
691 # If package does not exist (not created yet or broken), get short description
|
al@998
|
692 # (but only for "main" package) from receipt
|
al@998
|
693 [ -n "$short_desc" ] || short_desc="$(. $wok/$pkg/receipt; echo "$SHORT_DESC")"
|
al@998
|
694 echo ": $short_desc</h2>"
|
al@898
|
695 echo '<div id="info">'
|
al@898
|
696 echo "<a class='button icon receipt$(active receipt stuff)' href='$base/$pkg/receipt'>receipt & stuff</a>"
|
al@898
|
697
|
al@1003
|
698 # In the receipts $EXTRAVERSION is defined using $kvers, get it here [copy from 'cook' set_paths()]
|
al@1003
|
699 if [ -f "$wok/linux/receipt" ]; then
|
al@1003
|
700 kvers=$(. $wok/linux/receipt; echo $VERSION)
|
al@1003
|
701 kbasevers=$(echo $kvers | cut -d. -f1,2)
|
al@1003
|
702 elif [ -f "$INSTALLED/linux-api-headers/receipt" ]; then
|
al@1003
|
703 kvers=$(. $INSTALLED/linux-api-headers/receipt; echo $VERSION)
|
al@1003
|
704 kbasevers=$(echo $kvers | cut -d. -f1,2)
|
al@1003
|
705 fi
|
al@1003
|
706
|
al@898
|
707 unset WEB_SITE WANTED
|
al@898
|
708 . $wok/$pkg/receipt
|
al@898
|
709
|
al@898
|
710 [ -n "$WEB_SITE" ] &&
|
al@898
|
711 echo "<a class='button icon website' href='$WEB_SITE' target='_blank' rel='noopener noreferrer'>web site</a>"
|
al@898
|
712
|
al@1003
|
713 [ -f "$wok/$pkg/taz/$PACKAGE-$VERSION$EXTRAVERSION/receipt" ] &&
|
al@898
|
714 echo "<a class='button icon files$(active files)' href='$base/$pkg/files'>files</a>"
|
al@898
|
715
|
al@925
|
716 [ -n "$(ls $wok/$pkg/description*.txt)" ] &&
|
al@925
|
717 echo "<a class='button icon desc$(active description)' href='$base/$pkg/description'>description</a>"
|
al@898
|
718
|
al@925
|
719 [ -n "$TARBALL" -a -s "$SRC/$TARBALL" -o -d "$wok/$pkg/taz" ] &&
|
al@925
|
720 echo "<a class='button icon download' href='$base/$pkg/download'>download</a>"
|
al@898
|
721
|
al@898
|
722 echo "<a class='button icon browse' href='$base/$pkg/browse/'>browse</a>"
|
al@898
|
723
|
al@1002
|
724 [ -x ./man2html.bin -a -d "$wok/$pkg/install/usr/share/man" ] &&
|
al@898
|
725 echo "<a class='button icon doc$(active man)' href='$base/$pkg/man/'>man</a>"
|
al@898
|
726
|
al@898
|
727 [ -d "$wok/$pkg/install/usr/share/doc" -o -d "$wok/$pkg/install/usr/share/gtk-doc" ] &&
|
al@898
|
728 echo "<a class='button icon doc$(active doc)' href='$base/$pkg/doc/'>doc</a>"
|
al@898
|
729
|
al@898
|
730 [ -d "$wok/$pkg/install/usr/share/info" ] &&
|
al@898
|
731 echo "<a class='button icon doc$(active info)' href='$base/$pkg/info/#Top'>info</a>"
|
al@898
|
732
|
al@989
|
733 if [ -n "$LFS" ]; then
|
al@989
|
734 printf "<a class='button icon doc' href='%s' target='_blank' rel='noopener noreferrer'>" "$LFS"
|
al@989
|
735 [ "${LFS/blfs/}" != "$LFS" ] && printf "B"
|
al@989
|
736 printf "LFS</a>\n"
|
al@989
|
737 fi
|
al@981
|
738
|
al@898
|
739 [ -s "$log" ] &&
|
al@898
|
740 echo "<a class='button icon log$(active log)' href='$base/$pkg/log/'>logs</a>"
|
al@898
|
741
|
al@898
|
742 echo '</div>'
|
al@898
|
743 }
|
al@898
|
744
|
al@898
|
745
|
al@898
|
746 mktable() {
|
al@898
|
747 sed 's# : #|#' | awk -vc="$1" '
|
al@898
|
748 BEGIN { printf("<table class=\"%s\">\n", c); FS="|" }
|
al@898
|
749 { printf("<tr><td>%s</td>", $1);
|
al@898
|
750 if (NF == 2) printf("<td>%s</td>", $2);
|
al@898
|
751 printf("</tr>\n", $2) }
|
al@898
|
752 END { print "</table>" }'
|
al@898
|
753 }
|
al@898
|
754
|
al@898
|
755
|
al@898
|
756 section() {
|
al@898
|
757 local i=$(basename "$1")
|
al@898
|
758 echo -e '\n\n<section>'
|
al@898
|
759 [ $(wc -l < $1) -gt $2 ] && echo "<a class='button icon more r' href='?$i'>${3#*|}</a>"
|
al@898
|
760 echo "<h2>${3%|*}</h2>"
|
al@898
|
761 mktable "$i"
|
al@898
|
762 echo '</section>'
|
al@898
|
763 }
|
al@898
|
764
|
al@898
|
765
|
al@908
|
766 show_desc() {
|
al@908
|
767 echo "<section><h3>Description of “$1”</h3>"
|
al@908
|
768 if [ -n "$md2html" ]; then
|
al@908
|
769 $md2html $2
|
al@908
|
770 else
|
al@908
|
771 show_code markdown < $2
|
al@908
|
772 fi
|
al@908
|
773 echo "</section>"
|
al@908
|
774 }
|
al@908
|
775
|
al@908
|
776
|
al@924
|
777 # Return all the names of packages bundled in this receipt
|
al@924
|
778
|
al@924
|
779 all_names() {
|
al@1022
|
780 # Get package names from $SPLIT variable
|
al@1022
|
781 local split=$(echo $SPLIT \
|
al@1022
|
782 | awk '
|
al@1022
|
783 BEGIN { RS = " "; FS = ":"; }
|
al@1022
|
784 { print $1; }' \
|
al@1022
|
785 | tr '\n' ' ')
|
al@1022
|
786 local split_space=" $split "
|
al@1022
|
787 if ! head -n1 $WOK/$pkg/receipt | fgrep -q 'v2'; then
|
al@1022
|
788 # For receipts v1: $SPLIT may present in the $WANTED package,
|
al@1022
|
789 # but split packages have their own receipts
|
al@1022
|
790 echo $PACKAGE
|
al@1022
|
791 elif [ "${split_space/ $PACKAGE /}" != "$split_space" ]; then
|
al@924
|
792 # $PACKAGE included somewhere in $SPLIT (probably in the end).
|
al@924
|
793 # We should build packages in the order defined in the $SPLIT.
|
al@1022
|
794 echo $split
|
al@924
|
795 else
|
al@924
|
796 # We'll build the $PACKAGE, then all defined in the $SPLIT.
|
al@1022
|
797 echo $PACKAGE $split
|
al@924
|
798 fi
|
al@924
|
799 }
|
al@924
|
800
|
al@924
|
801
|
al@924
|
802 toolchain_version() {
|
al@1007
|
803 echo "<tr><td><a href='$base/$1'>$1</a></td>"
|
al@1007
|
804 awk -F$'\t' -vpkg="$1" '
|
al@1007
|
805 BEGIN { version = description = "---"; }
|
al@1007
|
806 {
|
al@1007
|
807 if ($1 == pkg) { version = $2; description = $4; }
|
al@1007
|
808 }
|
al@1007
|
809 END { printf("<td>%s</td><td>%s</td></tr>", version, description); }
|
al@1007
|
810 ' $PKGS/packages.info
|
al@924
|
811 }
|
al@924
|
812
|
al@924
|
813
|
al@924
|
814 files_header() {
|
al@924
|
815 echo '<section><h3>Available downloads:</h3>'
|
al@924
|
816 echo '<table><thead><tr><th>File</th><th>Size</th><th>Description</th></tr></thead><tbody>'
|
al@924
|
817 }
|
al@924
|
818
|
al@924
|
819
|
al@933
|
820 # Update statistics used in web interface.
|
al@933
|
821 # There is no need to recalculate the statistics every time the page is displayed.
|
al@940
|
822 # Note, $webstat file must be owned by www, otherwise this function will not be able to do the job.
|
al@933
|
823
|
al@933
|
824 update_webstat() {
|
al@938
|
825 echo '<div id="waitme">'
|
al@938
|
826 show_note i 'Please wait while statistics are being collected.'
|
al@938
|
827 echo "</div>"
|
al@938
|
828
|
al@933
|
829 # for receipts:
|
al@933
|
830 rtotal=$(ls $WOK/*/arch.$ARCH | wc -l)
|
al@933
|
831 rcooked=$(ls -d $WOK/*/taz | wc -l)
|
al@933
|
832 runbuilt=$(($rtotal - $rcooked))
|
al@933
|
833 rblocked=$(wc -l < $blocked)
|
al@933
|
834 rbroken=$(wc -l < $broken)
|
al@933
|
835
|
al@933
|
836 # for packages:
|
al@936
|
837 ptotal=$(cut -d$'\t' -f2 $CACHE/split.db | tr ' ' '\n' | sort -u | wc -l)
|
al@933
|
838 pcooked=$(ls $PKGS/*.tazpkg | wc -l)
|
al@933
|
839 punbuilt=$(($ptotal - $pcooked))
|
al@933
|
840 pblocked=$(
|
al@933
|
841 while read i; do
|
al@933
|
842 sed "/^$i\t/!d" $CACHE/split.db
|
al@933
|
843 done < $blocked | cut -d$'\t' -f2 | tr ' ' '\n' | wc -l)
|
al@933
|
844 pbroken=$(
|
al@933
|
845 while read i; do
|
al@933
|
846 sed "/^$i\t/!d" $CACHE/split.db
|
al@933
|
847 done < $broken | cut -d$'\t' -f2 | tr ' ' '\n' | wc -l)
|
al@933
|
848
|
al@933
|
849 cat > $webstat <<EOT
|
al@933
|
850 rtotal="$rtotal"; rcooked="$rcooked"; runbuilt="$runbuilt"; rblocked="$rblocked"; rbroken="$rbroken"
|
al@933
|
851 ptotal="$ptotal"; pcooked="$pcooked"; punbuilt="$punbuilt"; pblocked="$pblocked"; pbroken="$pbroken"
|
al@933
|
852 EOT
|
al@938
|
853
|
al@938
|
854 echo '<script>document.getElementById("waitme").remove();</script>'
|
al@933
|
855 }
|
al@933
|
856
|
al@933
|
857
|
al@898
|
858
|
al@898
|
859
|
al@898
|
860 #
|
al@898
|
861 # Load requested page
|
al@898
|
862 #
|
al@898
|
863
|
al@898
|
864 if [ -z "$pkg" ]; then
|
al@898
|
865
|
al@898
|
866 page_header
|
al@898
|
867 if [ -n "$QUERY_STRING" -a "$QUERY_STRING" != 'debug' ]; then
|
al@898
|
868
|
al@898
|
869 for list in activity cooknotes cooklist; do
|
al@898
|
870 [ -n "$(GET $list)" ] || continue
|
al@898
|
871 [ "$list" == 'cooklist' ] && nb="- Packages: $(wc -l < $cooklist)"
|
al@898
|
872 echo '<section id="content2">'
|
al@898
|
873 echo "<h2>DB: $list $nb</h2>"
|
al@905
|
874 tac $CACHE/$list | sed 's|cooker.cgi?pkg=||; s|%2B|+|g;
|
al@898
|
875 s|\[ Done|<span class="r c20">Done|;
|
al@898
|
876 s|\[ Failed|<span class="r c10">Failed|;
|
al@1027
|
877 s|\[ -Failed|<span class="r c10"><del>Failed</del>|;
|
al@898
|
878 s| \]|</span>|' | mktable $list
|
al@898
|
879 echo '</section>'
|
al@898
|
880 done
|
al@898
|
881
|
al@898
|
882 if [ -n "$(GET broken)" ]; then
|
al@938
|
883 echo '<section id="content2">'
|
al@898
|
884 echo "<h2>DB: broken - Packages: $(wc -l < $broken)</h2>"
|
al@898
|
885 sort $CACHE/broken | sed "s|^[^']*|<a href='$base/\0'>\0</a>|g" | mktable
|
al@938
|
886 echo '</section>'
|
al@898
|
887 fi
|
al@898
|
888
|
al@898
|
889 case "$QUERY_STRING" in
|
al@898
|
890 *.log)
|
al@898
|
891 log=$LOGS/$QUERY_STRING
|
al@898
|
892 name=$(basename $log)
|
al@898
|
893 if [ -f "$log" ]; then
|
al@898
|
894 echo "<h2>Log for: ${name%.log}</h2>"
|
al@898
|
895 if fgrep -q "Summary" $log; then
|
al@898
|
896 echo '<pre class="log">'
|
al@942
|
897 grep -A 20 'Summary' $log | syntax_highlighter log
|
al@898
|
898 echo '</pre>'
|
al@898
|
899 fi
|
al@898
|
900 echo '<pre class="log">'
|
al@898
|
901 syntax_highlighter log < $log
|
al@898
|
902 echo '</pre>'
|
al@986
|
903 if [ "$QUERY_STRING" == 'pkgdb.log' ]; then
|
al@985
|
904 # Display button only for SliTaz web browser
|
al@985
|
905 case "$HTTP_USER_AGENT" in
|
al@985
|
906 *SliTaz*)
|
al@985
|
907 if [ -f $CACHE/cooker-request -a -n "$HTTP_REFERER" ]; then
|
al@985
|
908 if grep -qs '^pkgdb$' $CACHE/recook-packages; then
|
al@985
|
909 show_note i "The package database has been requested for re-creation"
|
al@985
|
910 else
|
al@985
|
911 echo "<a class='button' href='$base/?recook=pkgdb'>Re-create the DB</a>"
|
al@985
|
912 fi
|
al@985
|
913 fi
|
al@985
|
914 ;;
|
al@985
|
915 esac
|
al@985
|
916 fi
|
al@898
|
917 else
|
al@898
|
918 show_note e "No log file: $log"
|
al@898
|
919 fi
|
al@898
|
920 ;;
|
al@924
|
921 toolchain)
|
al@924
|
922 cat <<EOT
|
al@924
|
923 <div id="content2">
|
al@924
|
924 <section>
|
al@924
|
925 <h2>SliTaz GNU/Linux toolchain</h2>
|
al@924
|
926
|
al@924
|
927 <table>
|
al@924
|
928 <tr><td>Build date</td> <td colspan="2">$(sed -n '/^Cook date/s|[^:]*: \(.*\)|\1|p' $LOGS/slitaz-toolchain.log)</td></tr>
|
al@924
|
929 <tr><td>Build duration</td> <td colspan="2">$(sed -n '/^Cook time/s|[^:]*: \(.*\)|\1|p' $LOGS/slitaz-toolchain.log)</td></tr>
|
al@924
|
930 <tr><td>Architecture</td> <td colspan="2">$ARCH</td></tr>
|
al@1024
|
931 <tr><td>Host system</td> <td colspan="2">$BUILD_SYSTEM</td></tr>
|
al@1024
|
932 <tr><td>Target system</td> <td colspan="2">$HOST_SYSTEM</td></tr>
|
al@924
|
933 <tr><th>Package</th><th>Version</th><th>Description</th></tr>
|
al@924
|
934 $(toolchain_version slitaz-toolchain)
|
al@924
|
935 $(toolchain_version binutils)
|
al@924
|
936 $(toolchain_version linux-api-headers)
|
al@924
|
937 $(toolchain_version gcc)
|
al@924
|
938 $(toolchain_version glibc)
|
al@924
|
939 </table>
|
al@924
|
940
|
al@924
|
941 <p>Toolchain documentation: <a target="_blank" rel="noopener noreferrer"
|
al@924
|
942 href="http://doc.slitaz.org/en:cookbook:toolchain">http://doc.slitaz.org/en:cookbook:toolchain</a>
|
al@924
|
943 </p>
|
al@924
|
944
|
al@924
|
945 </section>
|
al@924
|
946 </div>
|
al@924
|
947 EOT
|
al@924
|
948 ;;
|
al@898
|
949 esac
|
al@898
|
950 page_footer
|
al@898
|
951 exit 0
|
al@898
|
952 fi
|
al@898
|
953
|
al@898
|
954
|
al@898
|
955 # We may have a toolchain.cgi script for cross cooker's
|
al@898
|
956 if [ -f "toolchain.cgi" ]; then
|
al@898
|
957 toolchain="toolchain.cgi"
|
al@898
|
958 else
|
al@924
|
959 toolchain="?toolchain"
|
al@898
|
960 fi
|
al@933
|
961
|
paul@900
|
962 # Main page with summary. Count only packages included in ARCH,
|
al@898
|
963 # use 'cooker arch-db' to manually create arch.$ARCH files.
|
al@933
|
964
|
al@898
|
965 cat <<EOT
|
al@898
|
966 <div id="content2">
|
al@898
|
967
|
al@898
|
968 <section>
|
al@898
|
969 <form method="get" action="" class="search r">
|
al@898
|
970 <input type="hidden" name="search" value="pkg"/>
|
al@898
|
971 <button type="submit" title="Search">Search</button>
|
al@898
|
972 <input type="search" name="q" placeholder="Package" list="packages" autocorrect="off" autocapitalize="off"/>
|
al@898
|
973 </form>
|
al@898
|
974
|
al@898
|
975 <h2>Summary</h2>
|
al@898
|
976 EOT
|
al@898
|
977
|
al@898
|
978 mktable <<EOT
|
al@898
|
979 Cooker state : $(running_command)
|
al@898
|
980 Wok revision : <a href='$WOK_URL' target='_blank' rel='noopener noreferrer'>$(cat $wokrev)</a>
|
al@898
|
981 Commits to cook : $(wc -l < $commits)
|
al@898
|
982 Current cooklist : $(wc -l < $cooklist)
|
al@898
|
983 Architecture : $ARCH, <a href="$toolchain">toolchain</a>
|
al@898
|
984 Server date : <span id='date'>$(date -u '+%F %R %Z')</span>
|
al@898
|
985 EOT
|
al@898
|
986
|
al@898
|
987 # If command is "cook:*", update gauge and percentage periodically.
|
al@898
|
988 # If different package is cooking, reload the page (with new settings)
|
al@898
|
989 cmd="$(cat $command)"
|
al@898
|
990 case "$cmd" in
|
al@898
|
991 cook:*)
|
al@898
|
992 pkg=${cmd#*:}
|
al@898
|
993 echo "<script>updatePkg = '${pkg//+/%2B}';</script>"
|
al@898
|
994 ;;
|
al@898
|
995 esac
|
al@898
|
996
|
al@933
|
997 # Do we need to update the statistics?
|
al@933
|
998 [ "$webstat" -nt "$activity" ] || update_webstat
|
al@933
|
999 . $webstat
|
al@933
|
1000
|
al@933
|
1001 pct=0; [ "$rtotal" -gt 0 ] && pct=$(( ($rcooked * 100) / $rtotal ))
|
al@933
|
1002
|
al@933
|
1003 cat <<EOT
|
al@933
|
1004 <div class="meter"><progress max="100" value="$pct">${pct}%</progress><span>${pct}%</span></div>
|
al@933
|
1005
|
al@933
|
1006 <table class="webstat"><thead>
|
al@933
|
1007 <tr><th> </th><th>Total </th><th>Cooked </th><th>Unbuilt </th><th>Blocked </th><th>Broken </th></tr>
|
al@933
|
1008 </thead><tbody>
|
al@933
|
1009 <tr><td>Receipts</td><td>$rtotal</td><td>$rcooked</td><td>$runbuilt</td><td>$rblocked</td><td>$rbroken</td></tr>
|
al@933
|
1010 <tr><td>Packages</td><td>$ptotal</td><td>$pcooked</td><td>$punbuilt</td><td>$pblocked</td><td>$pbroken</td></tr>
|
al@933
|
1011 </tbody></table>
|
al@933
|
1012 EOT
|
al@933
|
1013
|
al@898
|
1014 if [ -e "$CACHE/cooker-request" -a ! -s $command ]; then
|
al@898
|
1015 if [ "$activity" -nt "$CACHE/cooker-request" ]; then
|
al@898
|
1016 echo '<a class="button icon bell r" href="?poke">Wake up</a>'
|
al@898
|
1017 else
|
al@898
|
1018 show_note i 'Cooker will be launched in the next 5 minutes.'
|
al@898
|
1019 fi
|
al@898
|
1020 fi
|
al@898
|
1021
|
al@898
|
1022 cat <<EOT
|
al@898
|
1023 <p>
|
al@898
|
1024 Service logs:
|
al@898
|
1025 <a href="?cookorder.log">cookorder</a> ·
|
al@898
|
1026 <a href="?commits.log">commits</a> ·
|
al@898
|
1027 <a href="?pkgdb.log">pkgdb</a>
|
al@898
|
1028 </p>
|
al@898
|
1029 </section>
|
al@898
|
1030 EOT
|
al@898
|
1031
|
al@898
|
1032 tac $activity | head -n12 | sed 's|cooker.cgi?pkg=||;
|
al@898
|
1033 s|\[ Done|<span class="r c20">Done|;
|
al@898
|
1034 s|\[ Failed|<span class="r c10">Failed|;
|
al@1027
|
1035 s|\[ -Failed|<span class="r c10"><del>Failed</del>|;
|
al@898
|
1036 s| \]|</span>|;
|
al@898
|
1037 s|%2B|\+|g' | \
|
al@898
|
1038 section $activity 12 "Activity|More activity"
|
al@898
|
1039
|
al@898
|
1040 [ -s "$cooknotes" ] && tac $cooknotes | head -n12 | \
|
al@898
|
1041 section $cooknotes 12 "Cooknotes|More notes"
|
al@898
|
1042
|
al@898
|
1043 [ -s "$commits" ] &&
|
al@898
|
1044 section $commits 20 "Commits|More commits" < $commits
|
al@898
|
1045
|
al@898
|
1046 [ -s "$cooklist" ] && head -n 20 $cooklist | \
|
al@898
|
1047 section $cooklist 20 "Cooklist|Full cooklist"
|
al@898
|
1048
|
al@898
|
1049 [ -s "$broken" ] && head -n20 $broken | sed "s|^[^']*|<a href='\0'>\0</a>|g" | \
|
al@898
|
1050 section $broken 20 "Broken|All broken packages"
|
al@898
|
1051
|
al@898
|
1052 [ -s "$blocked" ] && sed "s|^[^']*|<a href='\0'>\0</a>|g" $blocked | \
|
al@898
|
1053 section $blocked 12 "Blocked|All blocked packages"
|
al@898
|
1054
|
al@898
|
1055 cd $PKGS
|
al@1025
|
1056 # About BusyBox's `ls`
|
al@1025
|
1057 # On the Tank server: BusyBox v1.18.4 (2012-03-14 03:32:25 CET) multi-call binary.
|
paul@1030
|
1058 # It supported the option `-e`, output with `-let` options like this:
|
al@1025
|
1059 # -rw-r--r-- 1 user group 100000 Fri Nov 3 10:00:00 2017 filename
|
al@1025
|
1060 # 1 2 3 4 5 6 7 8 9 10 11
|
paul@1030
|
1061 # Newer BusyBox v1.27.2 doesn't support option `-e` and has no configs to
|
al@1025
|
1062 # configure it or return the option back. It supported the long option
|
al@1025
|
1063 # `--full-time` instead, but output is different:
|
al@1025
|
1064 # -rw-r--r-- 1 user group 100000 2017-11-03 10:00:00 +0200 filename
|
al@1025
|
1065 # 1 2 3 4 5 6 7 8 9
|
al@1025
|
1066 if ls -let >/dev/null 2>&1; then
|
al@1025
|
1067 ls -let *.tazpkg \
|
al@1025
|
1068 | awk '
|
al@1025
|
1069 (NR<=20){
|
al@1025
|
1070 sub(/:[0-9][0-9]$/, "", $9);
|
al@1025
|
1071 mon = index(" JanFebMarAprMayJunJulAugSepOctNovDec", $7) / 3;
|
al@1025
|
1072 printf("%d-%02d-%02d %s : <a href=\"get/%s\">%s</a>\n", $10, mon, $8, $9, $11, $11);
|
al@1025
|
1073 }' \
|
al@1025
|
1074 | section $activity 1000 "Latest cook"
|
al@1025
|
1075 else
|
al@1025
|
1076 ls -lt --full-time *.tazpkg \
|
al@1025
|
1077 | awk '
|
al@1025
|
1078 (NR<=20){
|
al@1025
|
1079 sub(/:[0-9][0-9]$/, "", $7);
|
al@1025
|
1080 printf("%s %s : <a href=\"get/%s\">%s</a>\n", $6, $7, $9, $9);
|
al@1025
|
1081 }' \
|
al@1025
|
1082 | section $activity 1000 "Latest cook"
|
al@1025
|
1083 fi
|
al@898
|
1084
|
al@898
|
1085 echo '</div>'
|
al@898
|
1086 datalist
|
al@898
|
1087 page_footer
|
al@898
|
1088 exit 0
|
al@898
|
1089 fi
|
al@898
|
1090
|
al@898
|
1091
|
al@1007
|
1092 # show tag
|
al@1007
|
1093
|
al@1007
|
1094 if [ "$pkg" == '~' -a -n "$cmd" ]; then
|
al@1007
|
1095 tag="$cmd"
|
al@1007
|
1096 page_header
|
al@1007
|
1097 cat <<EOT
|
al@1007
|
1098 <div id="content2">
|
al@1007
|
1099 <section>
|
al@1007
|
1100 <h2>Tag “$tag”</h2>
|
al@1007
|
1101
|
al@1007
|
1102 <table>
|
al@1007
|
1103 <thead>
|
al@1007
|
1104 <tr><th>Name</th><th>Description</th><th>Category</th></tr>
|
al@1007
|
1105 </thead>
|
al@1007
|
1106 <tbody>
|
al@1007
|
1107 EOT
|
al@1029
|
1108 sort $PKGS/packages.info \
|
al@1029
|
1109 | awk -F$'\t' -vtag=" $tag " -vbase="$base" '{
|
al@1007
|
1110 if (index(" " $6 " ", tag)) {
|
al@1007
|
1111 url = base "/" $1 "/";
|
al@1007
|
1112 gsub("+", "%2B", url);
|
al@1029
|
1113 printf("<tr><td><img src=\"%s/s/%s\"> ", base, $1);
|
al@1029
|
1114 printf("<a href=\"%s\">%s</a></td><td>%s</td><td>%s</td></tr>\n", url, $1, $4, $3);
|
al@1007
|
1115 }
|
al@1029
|
1116 }'
|
al@1029
|
1117 echo '</tbody></table></section></div>'
|
al@1007
|
1118 page_footer
|
al@1007
|
1119 exit 0
|
al@1007
|
1120 fi
|
al@1007
|
1121
|
al@1007
|
1122
|
al@898
|
1123 case "$cmd" in
|
al@898
|
1124 '')
|
al@898
|
1125 page_header
|
al@898
|
1126
|
al@989
|
1127 requested_pkg="$pkg"
|
al@898
|
1128 # Package info.
|
al@940
|
1129 if [ ! -f "$wok/$pkg/receipt" ]; then
|
al@940
|
1130 # Let's look at the cases when the package was not found
|
al@940
|
1131
|
al@940
|
1132 # Maybe query is the exact name of split package? -> proceed to main package
|
al@940
|
1133 mainpkg=$(awk -F$'\t' -vpkg=" $pkg " '{
|
al@940
|
1134 if (index(" " $2 " ", pkg)) {print $1; exit}
|
al@940
|
1135 }' $splitdb)
|
al@940
|
1136
|
al@940
|
1137 # No, so let's find any matches among packages names (both main and split)
|
al@940
|
1138 if [ -z "$mainpkg" ]; then
|
al@940
|
1139 pkgs=$(cut -d$'\t' -f2 $splitdb | tr ' ' '\n' | fgrep "$pkg")
|
al@940
|
1140 # Nothing matched
|
al@940
|
1141 if [ -z "$pkgs" ]; then
|
al@940
|
1142 echo "<h2>Not Found</h2>"
|
al@940
|
1143 show_note e "The requested package <b>$pkg</b> was not found on this server."
|
al@940
|
1144 page_footer; exit 0
|
al@940
|
1145 fi
|
al@940
|
1146 # Search results page
|
al@898
|
1147 echo "<section><h2>Package names matching “$pkg”</h2>"
|
al@898
|
1148 echo "<table><thead><tr><th>Name</th><th>Description</th><th>Category</th></tr></thead><tbody>"
|
al@940
|
1149 query="$pkg"
|
al@940
|
1150 for pkg in $pkgs; do
|
al@940
|
1151 # Find main package
|
al@940
|
1152 mainpkg=$(awk -F$'\t' -vpkg=" $pkg " '{
|
al@940
|
1153 if (index(" " $2 " ", pkg)) {print $1; exit}
|
al@940
|
1154 }' $splitdb)
|
al@940
|
1155 unset SHORT_DESC CATEGORY; . $wok/$mainpkg/receipt
|
al@940
|
1156
|
al@898
|
1157 unset SHORT_DESC CATEGORY
|
al@940
|
1158 [ -e "$wok/$mainpkg/taz/$PACKAGE-$VERSION/receipt" ] &&
|
al@940
|
1159 . $wok/$mainpkg/taz/$PACKAGE-$VERSION/receipt
|
al@940
|
1160
|
al@940
|
1161 echo -n "<tr><td><a href="$base/$pkg">${pkg//$query/<mark>$query</mark>}</a>"
|
al@940
|
1162 [ "$pkg" == "$mainpkg" ] || echo -n " (${mainpkg//$query/<mark>$query</mark>})"
|
al@940
|
1163 echo -n "</td><td>$SHORT_DESC</td><td>$CATEGORY</td></tr>"
|
al@898
|
1164 done
|
al@898
|
1165 echo '</tbody></table></section>'
|
al@940
|
1166 page_footer; exit 0
|
al@898
|
1167 fi
|
al@940
|
1168 pkg="$mainpkg"
|
al@898
|
1169 fi
|
al@898
|
1170
|
al@940
|
1171 log=$LOGS/$pkg.log
|
al@940
|
1172 pkg_info
|
al@940
|
1173
|
al@898
|
1174 # Check for a log file and display summary if it exists.
|
al@898
|
1175 summary "$log"
|
al@898
|
1176
|
al@994
|
1177
|
al@1007
|
1178 # Show tag list
|
al@1007
|
1179 taglist=$(
|
al@1007
|
1180 for i in $pkg $(awk -F$'\t' -vp="$pkg" '{if ($1 == p) print $2}' $splitdb); do
|
al@1007
|
1181 [ -s "$PKGS/packages.info" ] &&
|
al@1007
|
1182 awk -F$'\t' -vpkg="$i" '{
|
al@1007
|
1183 if ($1 == pkg) { print $6; exit; }
|
al@1007
|
1184 }' "$PKGS/packages.info"
|
al@1007
|
1185 done \
|
al@1007
|
1186 | tr ' ' '\n' \
|
al@1007
|
1187 | sort -u
|
al@1007
|
1188 )
|
al@1007
|
1189 if [ -n "$taglist" ]; then
|
al@1007
|
1190 echo -n '<section><h3>Tags</h3><p>'
|
al@1007
|
1191 lasttag=$(echo "$taglist" | tail -n1)
|
al@1007
|
1192 for tag in $taglist; do
|
al@1007
|
1193 echo -n "<a href=\"$base/~/${tag//+/%2B}\">$tag</a>"
|
al@1007
|
1194 [ "$tag" != "$lasttag" ] && echo -n " · "
|
al@1007
|
1195 done
|
al@1007
|
1196 echo '</p></section>'
|
al@1007
|
1197 fi
|
al@994
|
1198
|
al@994
|
1199
|
al@1007
|
1200 # Informational table with dependencies
|
al@989
|
1201 pkg="$requested_pkg"
|
al@994
|
1202 inf="$(mktemp -d)"
|
al@994
|
1203
|
al@995
|
1204 # 1/3: Build dependencies (from receipt and pkgdb)
|
al@997
|
1205 for i in $WANTED $BUILD_DEPENDS $(awk -F$'\t' -vp=" $pkg " '{if (index(" " $2 " ", p) && (" " $1 " " != p)) print $1}' $splitdb); do
|
al@994
|
1206 echo "$i" >> $inf/a
|
al@994
|
1207 done
|
al@994
|
1208
|
al@994
|
1209 # 2/3: Runtime dependencies (from pkgdb)
|
al@994
|
1210 {
|
al@994
|
1211 [ -s "$PKGS/packages.info" ] &&
|
al@994
|
1212 awk -F$'\t' -vp="$pkg" '{
|
al@994
|
1213 if ($1 == p) print $8
|
al@994
|
1214 }' "$PKGS/packages.info"
|
al@994
|
1215 } | tr ' ' '\n' | sort -u > $inf/b
|
al@994
|
1216
|
al@994
|
1217 # 3/3: Required by (from pkgdb)
|
al@994
|
1218 {
|
al@995
|
1219 for i in $pkg $(awk -F$'\t' -vp="$pkg" '{if ($1 == p) print $2}' $splitdb); do
|
al@994
|
1220 [ -s "$PKGS/packages.info" ] &&
|
al@994
|
1221 awk -F$'\t' -vp=" $i " '{
|
al@994
|
1222 if (index(" " $8 " ", p)) print $1
|
al@994
|
1223 }' "$PKGS/packages.info"
|
al@994
|
1224
|
al@994
|
1225 [ -s "$PKGS/bdeps.txt" ] &&
|
al@994
|
1226 awk -F$'\t' -vp=" $i " '{
|
al@994
|
1227 if (index(" " $2 " ", p)) print $1
|
al@994
|
1228 }' $PKGS/bdeps.txt
|
al@994
|
1229 done
|
al@994
|
1230 } | sort -u > $inf/c
|
al@994
|
1231
|
al@982
|
1232 cat <<EOT
|
al@982
|
1233 <section>
|
al@989
|
1234 <h3>Related packages</h3>
|
al@989
|
1235 <table class="third">
|
al@982
|
1236 <thead>
|
al@982
|
1237 <tr>
|
al@982
|
1238 <th>Build dependencies</th>
|
al@989
|
1239 <th>Runtime dependencies</th>
|
al@982
|
1240 <th>Required by</th>
|
al@982
|
1241 </tr>
|
al@982
|
1242 </thead>
|
al@982
|
1243 <tbody>
|
al@989
|
1244 EOT
|
al@989
|
1245
|
al@994
|
1246 awk -vinf="$inf" -vbase="$base" '
|
al@994
|
1247 function linki(i) {
|
al@994
|
1248 if (i) return sprintf("<img src=\"%s/s/%s\"> <a href=\"%s/%s\">%s</a>", base, i, base, i, i);
|
al@994
|
1249 }
|
al@994
|
1250 BEGIN{
|
al@994
|
1251 do {
|
al@994
|
1252 a = b = c = "";
|
al@994
|
1253 getline a < inf "/a";
|
al@994
|
1254 getline b < inf "/b";
|
al@994
|
1255 getline c < inf "/c";
|
al@994
|
1256 printf("<tr><td>%s </td><td>%s </td><td>%s </td></tr>", linki(a), linki(b), linki(c));
|
al@994
|
1257 } while ( a b c )
|
al@994
|
1258 }'
|
al@982
|
1259 cat <<EOT
|
al@982
|
1260 </tbody>
|
al@982
|
1261 </table>
|
al@982
|
1262 </section>
|
al@982
|
1263 EOT
|
al@994
|
1264 # Clean
|
al@994
|
1265 rm -r $inf
|
al@994
|
1266
|
al@994
|
1267
|
al@994
|
1268
|
al@982
|
1269
|
al@898
|
1270 # Display <Recook> button only for SliTaz web browser
|
al@971
|
1271 case "$HTTP_USER_AGENT" in
|
al@971
|
1272 *SliTaz*)
|
al@971
|
1273 if [ -f $CACHE/cooker-request -a -n "$HTTP_REFERER" ]; then
|
al@971
|
1274 if grep -qs "^$pkg$" $CACHE/recook-packages; then
|
al@971
|
1275 show_note i "The package “$pkg” has been requested for recook"
|
al@971
|
1276 else
|
al@971
|
1277 echo "<a class='button' href='$base/?recook=${pkg//+/%2B}'>Recook $pkg</a>"
|
al@898
|
1278 fi
|
al@971
|
1279 fi
|
al@971
|
1280 ;;
|
al@971
|
1281 esac
|
al@898
|
1282 ;;
|
al@898
|
1283
|
al@898
|
1284 receipt)
|
al@898
|
1285 page_header
|
al@898
|
1286 pkg_info
|
al@898
|
1287 echo "<a class='button receipt' href='$base/$pkg/receipt'>receipt</a>"
|
al@898
|
1288 ( cd $wok/$pkg; find stuff -type f 2>/dev/null ) | sort | \
|
al@898
|
1289 awk -vb="$base/$pkg" '{printf("<a class=\"button\" href=\"%s/%s\">%s</a>\n", b, $0, $0)}'
|
al@898
|
1290
|
al@898
|
1291 show_code bash < $wok/$pkg/receipt
|
al@898
|
1292 ;;
|
al@898
|
1293
|
al@898
|
1294 stuff)
|
al@898
|
1295 page_header
|
al@898
|
1296 pkg_info
|
al@898
|
1297 file="$pkg/stuff/$arg"
|
al@898
|
1298 echo "<a class='button' href='$base/$pkg/receipt'>receipt</a>"
|
al@898
|
1299 ( cd $wok/$pkg; find stuff -type f 2>/dev/null ) | sort | \
|
al@898
|
1300 awk -vb="$base/$pkg" -va="stuff/$arg" '{
|
al@898
|
1301 printf("<a class=\"button%s\" href=\"%s/%s\">%s</a>\n", a==$0 ? " receipt" : "", b, $0, $0)
|
al@898
|
1302 }'
|
al@898
|
1303
|
al@898
|
1304 if [ -f "$wok/$file" ]; then
|
al@898
|
1305 case $file in
|
al@898
|
1306 *.desktop|*.theme) class="ini" ;;
|
al@898
|
1307 *.patch|*.diff|*.u) class="diff" ;;
|
al@898
|
1308 *.sh) class="bash" ;;
|
al@898
|
1309 *.conf*|*.ini)
|
al@898
|
1310 class="bash"
|
al@898
|
1311 [ -n "$(cut -c1 < $wok/$file | fgrep '[')" ] && class="ini"
|
al@898
|
1312 ;;
|
al@898
|
1313 *.pl) class="perl" ;;
|
al@898
|
1314 *.c|*.h|*.awk) class="clike" ;;
|
al@898
|
1315 *.svg) class="svg" ;;
|
al@898
|
1316 *Makefile*) class="makefile" ;;
|
al@898
|
1317 *.po|*.pot) class="bash" ;;
|
al@898
|
1318 *.css) class="css" ;;
|
al@898
|
1319 *.htm|*.html) class="html" ;;
|
al@898
|
1320 *.js) class="js" ;;
|
al@898
|
1321 *.txt) class="asciidoc" ;;
|
al@898
|
1322 *)
|
al@898
|
1323 case $(head -n1 $wok/$file) in
|
al@898
|
1324 *!/bin/sh*|*!/bin/bash*) class="bash" ;;
|
al@898
|
1325 esac
|
al@898
|
1326 if [ -z "$class" -a "$(head -n1 $wok/$file | cut -b1)" == '#' ]; then
|
al@898
|
1327 class="bash"
|
al@898
|
1328 fi
|
al@898
|
1329 if [ -z "$class" ]; then
|
al@898
|
1330 # Follow Busybox restrictions. Search for non-printable chars
|
al@898
|
1331 if [ $(tr -d '[:alnum:][:punct:][:blank:][:cntrl:]' < "$wok/$file" | wc -c) -gt 0 ]; then
|
al@898
|
1332 raw="true"
|
al@898
|
1333 fi
|
al@898
|
1334 fi
|
al@898
|
1335 ;;
|
al@898
|
1336 esac
|
al@898
|
1337
|
al@898
|
1338 # Display image
|
al@898
|
1339 case $file in
|
al@898
|
1340 *.png|*.svg|*.jpg|*.jpeg|*.ico)
|
al@898
|
1341 echo "<img src='$base/$pkg/browse/stuff/$arg' style='display: block; max-width: 100%; margin: auto'/>"
|
al@898
|
1342 ;;
|
al@898
|
1343 esac
|
al@898
|
1344
|
al@898
|
1345 # Display colored listing for all text-based documents (also for *.svg)
|
al@898
|
1346 case $file in
|
al@898
|
1347 *.png|*.jpg|*.jpeg|*.ico) ;;
|
al@898
|
1348 *)
|
al@898
|
1349 if [ -z "$raw" ]; then
|
al@898
|
1350 cat $wok/$file | show_code $class
|
al@898
|
1351 fi
|
al@898
|
1352 ;;
|
al@898
|
1353 esac
|
al@898
|
1354
|
al@898
|
1355 # Display hex dump for binary files
|
al@898
|
1356 if [ -n "$raw" ]; then
|
al@898
|
1357 hexdump -C $wok/$file | show_code #| sed 's|^\([0-9a-f][0-9a-f]*\)|<span class="c2">\1</span>|'
|
al@898
|
1358 fi
|
al@898
|
1359 else
|
al@898
|
1360 show_note e "File “$file” absent!"
|
al@898
|
1361 fi
|
al@898
|
1362 ;;
|
al@898
|
1363
|
al@898
|
1364 files)
|
al@898
|
1365 page_header
|
al@898
|
1366 pkg_info
|
al@898
|
1367
|
al@898
|
1368 # find main package
|
al@898
|
1369 wanted=$(. $wok/$pkg/receipt; echo $WANTED)
|
al@898
|
1370 main=${wanted:-$pkg}
|
al@1010
|
1371 devpkg=''; [ -d "$wok/$main-dev" ] && devpkg="$main-dev"
|
al@915
|
1372
|
al@1010
|
1373 splitsets=$(echo $SPLIT" " \
|
al@1010
|
1374 | awk '
|
al@1010
|
1375 BEGIN { RS = " "; FS = ":"; }
|
al@1010
|
1376 { print $2; }' \
|
al@1010
|
1377 | sort -u \
|
al@1010
|
1378 | tr '\n' ' ' \
|
al@1010
|
1379 | sed 's|^ *||; s| *$||')
|
al@915
|
1380
|
al@1010
|
1381 splitpkgs=$(echo $SPLIT" " \
|
al@1010
|
1382 | awk '
|
al@1010
|
1383 BEGIN { RS = " "; FS = ":"; }
|
al@1010
|
1384 { print $1; }' \
|
al@1010
|
1385 | tr '\n' ' ' \
|
al@1010
|
1386 | sed 's|^ *||; s| *$||')
|
al@1010
|
1387
|
al@1010
|
1388 # we need the version
|
al@915
|
1389 if [ -f "$WOK/linux/receipt" ]; then
|
al@915
|
1390 kvers=$(. $WOK/linux/receipt; echo $VERSION)
|
al@915
|
1391 kbasevers=$(echo $kvers | cut -d. -f1,2)
|
al@915
|
1392 elif [ -f "$INSTALLED/linux-api-headers/receipt" ]; then
|
al@915
|
1393 kvers=$(. $INSTALLED/linux-api-headers/receipt; echo $VERSION)
|
al@915
|
1394 kbasevers=$(echo $kvers | cut -d. -f1,2)
|
al@915
|
1395 fi
|
al@898
|
1396 ver=$(. $wok/$main/receipt; echo $VERSION$EXTRAVERSION)
|
al@898
|
1397
|
al@1010
|
1398 echo "<section><h3>Quick jump:</h3>"
|
al@924
|
1399
|
al@924
|
1400
|
al@1010
|
1401 for part in head body; do
|
al@898
|
1402
|
al@1010
|
1403 for set in '' $splitsets; do
|
al@1010
|
1404 pkgsofset=$(echo $SPLIT" " \
|
al@1010
|
1405 | awk -vset="$set" -vmain="$main" -vdev="$devpkg" '
|
al@1010
|
1406 BEGIN {
|
al@1010
|
1407 RS = " "; FS = ":";
|
al@1010
|
1408 if (!set) print main;
|
al@1010
|
1409 if (!set && dev) print dev;
|
al@1010
|
1410 }
|
al@1010
|
1411 {
|
al@1010
|
1412 if ($2 == set) print $1;
|
al@1010
|
1413 }' \
|
al@1010
|
1414 | sort -u)
|
al@898
|
1415
|
al@1010
|
1416 set_description=''
|
al@1010
|
1417 [ -n "$splitsets" ] &&
|
al@1010
|
1418 case "$set" in
|
al@1010
|
1419 '')
|
al@1010
|
1420 set_description=' (default set)'
|
al@1010
|
1421 set_title='Default set'
|
al@1010
|
1422 ;;
|
al@1010
|
1423 *)
|
al@1010
|
1424 set_description=" (set “$set”)"
|
al@1010
|
1425 set_title="Set “$set”"
|
al@1010
|
1426 ;;
|
al@1010
|
1427 esac
|
al@898
|
1428
|
al@1010
|
1429 install="$wok/$main/install"
|
al@1010
|
1430 [ -n "$set" ] && install="$install-$set"
|
al@898
|
1431
|
al@1010
|
1432 case $part in
|
al@1010
|
1433 head)
|
al@1010
|
1434 [ -n "$splitsets" ] &&
|
al@1010
|
1435 case "$set" in
|
al@1010
|
1436 '') echo "<ul><li>Default set:";;
|
al@1010
|
1437 *) echo "<li>Set “$set”:";;
|
al@1010
|
1438 esac
|
al@1010
|
1439 echo -e '\t<ul>'
|
al@1010
|
1440 echo "$pkgsofset" | sed 'p' | xargs printf "\t\t<li><a href='#%s'>%s</a></li>\n"
|
al@1010
|
1441 cat <<EOT
|
al@1010
|
1442 <li id='li-repeats$set' style='display:none'>
|
al@1010
|
1443 <a href='#repeats$set'>repeatedly packaged files</a></li>
|
al@1010
|
1444 <li id='li-empty$set' style='display:none'>
|
al@1010
|
1445 <a href='#empty$set'>unpackaged empty folders</a></li>
|
al@1010
|
1446 <li id='li-outoftree$set' style='display:none'>
|
al@1010
|
1447 <a href='#outoftree$set'>out-of-tree files</a></li>
|
al@1010
|
1448 <li id='li-orphans$set' style='display:none'>
|
al@1010
|
1449 <a href='#orphans$set'>unpackaged files</a>
|
al@1010
|
1450 <span id='orphansTypes$set'></span></li>
|
al@1010
|
1451 EOT
|
al@1010
|
1452 echo -e '\t</ul>'
|
al@1010
|
1453 [ -n "$splitsets" ] && echo "</li>"
|
al@1010
|
1454 ;;
|
al@1010
|
1455 body)
|
al@1010
|
1456 all_files=$(mktemp)
|
al@1010
|
1457 cd $install; find ! -type d | sed 's|\.||' > $all_files
|
al@964
|
1458
|
al@1010
|
1459 # ------------------------------------------------------
|
al@1010
|
1460 # Packages content
|
al@1010
|
1461 # ------------------------------------------------------
|
al@1010
|
1462 packaged=$(mktemp)
|
al@1010
|
1463 for p in $pkgsofset; do
|
al@1010
|
1464 namever="$p-$ver"
|
al@1010
|
1465 if [ -d "$wok/$p/taz/$p-$ver" ]; then
|
al@1010
|
1466 indir=$p
|
al@1010
|
1467 elif [ -d "$wok/$main/taz/$p-$ver" ]; then
|
al@1010
|
1468 indir=$main
|
al@1010
|
1469 fi
|
al@1010
|
1470 dir="$wok/$indir/taz/$p-$ver/fs"
|
al@912
|
1471
|
al@1010
|
1472 size=$(du -hs $dir | awk '{ sub(/\.0/, ""); print $1 }')
|
al@1010
|
1473
|
al@1010
|
1474 echo
|
al@1010
|
1475 echo "<section id='$p'>"
|
al@1010
|
1476 echo " <h3>Contents of package “$namever” (${size:-empty}):</h3>"
|
al@1010
|
1477 echo ' <pre class="files">'
|
al@1010
|
1478 if [ -s "$wok/$indir/taz/$p-$ver/files.list" ]; then
|
al@1010
|
1479 echo -en '<span class="underline">permissions·lnk·user ·group · size·date & time ·name\n</span>'
|
al@1010
|
1480 cd $dir
|
al@1010
|
1481 find . -print0 \
|
al@1010
|
1482 | sort -z \
|
al@1010
|
1483 | xargs -0 ls -ldp --color=always \
|
al@1010
|
1484 | syntax_highlighter files \
|
al@1010
|
1485 | sed "s|\([^>]*\)>\.\([^<]*\)\(<.*\)$|\1 href='$base/$indir/browse/taz/$p-$ver/fs\2'>\2\3|;" \
|
al@1010
|
1486 | awk 'BEGIN { FS="\""; }
|
al@1010
|
1487 { gsub("+", "%2B", $2); print; }'
|
al@1010
|
1488 else
|
al@1010
|
1489 echo 'No files'
|
al@1010
|
1490 fi
|
al@1010
|
1491 echo '</pre>'
|
al@1010
|
1492 echo '</section>'
|
al@1010
|
1493
|
al@1010
|
1494 cat $wok/$indir/taz/$p-$ver/files.list >> $packaged
|
al@1010
|
1495 done
|
al@1010
|
1496 # ------------------------------------------------------
|
al@1010
|
1497 # /Packages content
|
al@1010
|
1498 # ------------------------------------------------------
|
al@1010
|
1499
|
al@1010
|
1500 # ------------------------------------------------------
|
al@1010
|
1501 # Repeatedly packaged files
|
al@1010
|
1502 # ------------------------------------------------------
|
al@1010
|
1503 repeats=$(mktemp)
|
al@1010
|
1504 sort $packaged | uniq -d > $repeats
|
al@1010
|
1505 if [ -s "$repeats" ]; then
|
al@1010
|
1506 echo
|
al@1010
|
1507 echo "<script>document.getElementById('li-repeats$set').style.display = 'list-item'</script>"
|
al@1010
|
1508 echo "<section id='repeats$set'>"
|
al@1010
|
1509 echo " <h3>Repeatedly packaged files$set_description:</h3>"
|
al@1010
|
1510 cd $install
|
al@1010
|
1511
|
al@1010
|
1512 IFS=$'\n'
|
al@1010
|
1513 echo -n ' <pre class="files">'
|
al@1010
|
1514 echo -en '<span class="underline">permissions·lnk·user ·group · size·date & time ·name\n</span>'
|
al@1010
|
1515 while read i; do
|
al@1010
|
1516 find .$i -exec ls -ldp --color=always '{}' \; \
|
al@1010
|
1517 | syntax_highlighter files \
|
al@1010
|
1518 | sed 's|>\./|>/|'
|
al@1010
|
1519 done < $repeats
|
al@1010
|
1520 echo '</pre>'
|
al@1010
|
1521 echo '</section>'
|
al@1010
|
1522 unset IFS
|
al@1010
|
1523 fi
|
al@1010
|
1524 rm $repeats
|
al@1010
|
1525 # ------------------------------------------------------
|
al@1010
|
1526 # /Repeatedly packaged files
|
al@1010
|
1527 # ------------------------------------------------------
|
al@1010
|
1528
|
al@1010
|
1529 # ------------------------------------------------------
|
al@1010
|
1530 # Unpackaged empty folders
|
al@1010
|
1531 # ------------------------------------------------------
|
al@1010
|
1532 emptydirs=$(mktemp)
|
al@1010
|
1533 cd $install
|
al@1010
|
1534 IFS=$'\n'
|
al@1010
|
1535 find -type d \
|
al@1010
|
1536 | sed 's|\.||' \
|
al@1010
|
1537 | while read d; do
|
al@1010
|
1538 [ -z "$(ls "$wok/$main/install$d")" ] || continue
|
al@1010
|
1539 echo $d
|
al@1010
|
1540 done \
|
al@1010
|
1541 | while read d; do
|
al@1010
|
1542 notfound='yes'
|
al@1010
|
1543 for p in $(cd $wok/$main/taz; ls); do
|
al@1010
|
1544 if [ -d "$wok/$main/taz/$p/fs$d" ]; then
|
al@1010
|
1545 notfound=''
|
al@1010
|
1546 break
|
al@1010
|
1547 fi
|
al@1010
|
1548 done
|
al@1010
|
1549 [ -n "$notfound" ] &&
|
al@1010
|
1550 ls -ldp --color=always .$d \
|
al@1010
|
1551 | syntax_highlighter files \
|
al@1010
|
1552 | sed 's|>\./|>/|'
|
al@1010
|
1553 done > $emptydirs
|
al@1010
|
1554 unset IFS
|
al@1010
|
1555 if [ -s "$emptydirs" ]; then
|
al@1010
|
1556 echo
|
al@1010
|
1557 echo "<script>document.getElementById('li-empty$set').style.display = 'list-item'</script>"
|
al@1010
|
1558 echo "<section id='empty$set'>"
|
al@1010
|
1559 echo " <h3>Unpackaged empty folders$set_description:</h3>"
|
al@1010
|
1560 echo -n ' <pre class="files">'
|
al@1010
|
1561 echo -en '<span class="underline">permissions·lnk·user ·group · size·date & time ·name\n</span>'
|
al@1010
|
1562 cat $emptydirs
|
al@1010
|
1563 echo '</pre>'
|
al@1010
|
1564 echo '</section>'
|
al@1010
|
1565 fi
|
al@1010
|
1566 rm $emptydirs
|
al@1010
|
1567 # ------------------------------------------------------
|
al@1010
|
1568 # /Unpackaged empty folders
|
al@1010
|
1569 # ------------------------------------------------------
|
al@1010
|
1570
|
al@1010
|
1571 # ------------------------------------------------------
|
al@1010
|
1572 # Out-of-tree files
|
al@1010
|
1573 # ------------------------------------------------------
|
al@1010
|
1574 outoftree=$(mktemp)
|
al@1010
|
1575 awk -F$'\n' -vall="$all_files" '
|
al@1010
|
1576 {
|
al@1010
|
1577 if (FILENAME == all) files_all[$1] = "1";
|
al@1010
|
1578 else files_pkg[$1] = "1";
|
al@1010
|
1579 }
|
al@1010
|
1580 END {
|
al@1010
|
1581 for (i in files_pkg) {
|
al@1010
|
1582 if (! files_all[i]) print i;
|
al@1010
|
1583 }
|
al@1010
|
1584 }
|
al@1010
|
1585 ' "$all_files" "$packaged" > $outoftree
|
al@1010
|
1586
|
al@1010
|
1587 if [ -d "$install" -a -s "$outoftree" ]; then
|
al@1010
|
1588 echo
|
al@1010
|
1589 echo "<script>document.getElementById('li-outoftree$set').style.display = 'list-item'</script>"
|
al@1010
|
1590 echo "<section id='outoftree$set'>"
|
al@1010
|
1591 echo " <h3>Out-of-tree files$set_description:</h3>"
|
al@1010
|
1592 echo -n ' <pre class="files">'
|
al@1010
|
1593 echo -en '<span class="underline">permissions·lnk·user ·group · size·date & time ·name\n</span>'
|
al@1010
|
1594 IFS=$'\n'
|
al@1010
|
1595 while read outoftree_line; do
|
al@1010
|
1596 # Find the package out-of-tree file belongs to
|
al@1010
|
1597 for i in $pkgsofset; do
|
al@1010
|
1598 if grep -q "^$outoftree_line$" $wok/$main/taz/$i-$ver/files.list; then
|
al@1010
|
1599 cd $wok/$main/taz/$i-$ver/fs
|
al@1010
|
1600 ls -ldp --color=always ".$outoftree_line" \
|
al@1010
|
1601 | syntax_highlighter files \
|
al@1010
|
1602 | sed "s|\([^>]*\)>\.\([^<]*\)\(<.*\)$|\1 href='$base/$main/browse/taz/$i-$ver/fs\2'>\2\3|;" \
|
al@1010
|
1603 | awk 'BEGIN { FS="\""; }
|
al@1010
|
1604 { gsub("+", "%2B", $2); print; }'
|
al@1010
|
1605 fi
|
al@1010
|
1606 done
|
al@1010
|
1607 done < $outoftree
|
al@1010
|
1608 unset IFS
|
al@1010
|
1609 echo '</pre>'
|
al@1010
|
1610 echo '</section>'
|
al@1010
|
1611 fi
|
al@1010
|
1612 rm $outoftree
|
al@1010
|
1613 # ------------------------------------------------------
|
al@1010
|
1614 # /Out-of-tree files
|
al@1010
|
1615 # ------------------------------------------------------
|
al@1010
|
1616
|
al@1010
|
1617 # ------------------------------------------------------
|
al@1010
|
1618 # Unpackaged files
|
al@1010
|
1619 # ------------------------------------------------------
|
al@1010
|
1620 orphans=$(mktemp)
|
al@1011
|
1621 awk -F$'\n' -vall="$all_files" '
|
al@1010
|
1622 {
|
al@1010
|
1623 if (FILENAME == all) files_all[$1] = "1";
|
al@1010
|
1624 else files_pkg[$1] = "1";
|
al@1010
|
1625 }
|
al@1010
|
1626 END {
|
al@1010
|
1627 for (i in files_all) {
|
al@1010
|
1628 if (! files_pkg[i]) print i;
|
al@1010
|
1629 }
|
al@1010
|
1630 }
|
al@1019
|
1631 ' "$all_files" "$packaged" | sort > $orphans
|
al@1010
|
1632 if [ -d "$install" -a -s "$orphans" ]; then
|
al@1010
|
1633 echo
|
al@1010
|
1634 echo "<script>document.getElementById('li-orphans$set').style.display = 'list-item'</script>"
|
al@1010
|
1635 echo "<section id='orphans$set'>"
|
al@1010
|
1636 echo " <h3>Unpackaged files$set_description:</h3>"
|
al@1010
|
1637 table=$(mktemp)
|
al@1010
|
1638 awk '
|
al@1010
|
1639 function tag(text, color) {
|
al@1010
|
1640 printf("<span class=\"c%s1\">%s</span> ", color, text);
|
al@1010
|
1641 printf("%s\n", $0);
|
al@1010
|
1642 }
|
al@1010
|
1643 /\/perllocal.pod$/ || /\/\.packlist$/ || /\/share\/bash-completion\// ||
|
al@1010
|
1644 /\/lib\/systemd\// || /\.pyc$/ || /\.pyo$/ || /\/fonts\.scale$/ || /\/fonts\.dir$/ {
|
al@1010
|
1645 tag("---", 0); next }
|
al@1010
|
1646 /\.pod$/ { tag("pod", 5); next }
|
al@1010
|
1647 /\/share\/man\// { tag("man", 5); next }
|
al@1010
|
1648 /\/share\/doc\// || /\/share\/gtk-doc\// || /\/share\/info\// ||
|
al@1010
|
1649 /\/share\/devhelp\// { tag("doc", 5); next }
|
al@1010
|
1650 /\/share\/icons\// { tag("ico", 2); next }
|
al@1010
|
1651 /\/share\/locale\// { tag("loc", 4); next }
|
al@1010
|
1652 /\.h$/ || /\.a$/ || /\.la$/ || /\.pc$/ || /\/bin\/.*-config$/ ||
|
al@1010
|
1653 /\/Makefile.*$/ { tag("dev", 3); next }
|
al@1010
|
1654 /\/share\/help\// || /\/share\/appdata\// { tag("gnm", 6); next }
|
al@1010
|
1655 { tag("???", 1) }
|
al@1010
|
1656 ' "$orphans" > $table
|
al@1010
|
1657
|
al@1010
|
1658 # Summary table
|
al@1010
|
1659 orphans_types='()'
|
al@1010
|
1660 for i in head body; do
|
al@1010
|
1661 case $i in
|
al@1010
|
1662 head) echo -n '<table class="summary"><tr>';;
|
al@1010
|
1663 body) echo -n '<th> </th></tr><tr>';;
|
al@1010
|
1664 esac
|
al@1010
|
1665 for j in '???1' dev3 loc4 ico2 doc5 man5 pod5 gnm6 '---0'; do
|
al@1010
|
1666 tag=${j:0:3}; class="c${j:3:1}0"; [ "$class" == 'c00' ] && class='c01'
|
al@1010
|
1667 case $i in
|
al@1010
|
1668 head) echo -n "<th class='$class'>$tag</th>";;
|
al@1010
|
1669 body)
|
al@1010
|
1670 tagscount="$(grep ">$tag<" $table | wc -l)"
|
al@1010
|
1671 printf '<td>%s</td>' "$tagscount"
|
al@1010
|
1672 [ "$tagscount" -gt 0 ] && orphans_types="${orphans_types/)/ $tag)}"
|
al@1010
|
1673 ;;
|
al@1010
|
1674 esac
|
al@1010
|
1675 done
|
al@1010
|
1676 done
|
al@1010
|
1677 echo '<td> </td></tr></table>'
|
al@1010
|
1678 orphans_types="${orphans_types/( /(}"
|
al@1010
|
1679 [ "$orphans_types" != '()' ] &&
|
al@1010
|
1680 echo "<script>document.getElementById('orphansTypes$set').innerText = '${orphans_types// /, }';</script>"
|
al@1010
|
1681
|
al@1011
|
1682 suffix=''; [ -n "$set" ] && suffix="-$set"
|
al@1010
|
1683 echo -n ' <pre class="files">'
|
al@1010
|
1684 echo -en '<span class="underline">tag·permissions·lnk·user ·group · size·date & time ·name\n</span>'
|
al@1010
|
1685 IFS=$'\n'
|
al@1010
|
1686 while read orphan_line; do
|
al@1010
|
1687 echo -n "${orphan_line/span> */span>} "
|
al@1011
|
1688 cd $install
|
al@1010
|
1689 ls -ldp --color=always ".${orphan_line#*</span> }" \
|
al@1010
|
1690 | syntax_highlighter files \
|
al@1010
|
1691 | sed "s|\([^>]*\)>\.\([^<]*\)\(<.*\)$|\1 href='$base/$main/browse/install$suffix\2'>\2\3|;" \
|
al@1010
|
1692 | awk 'BEGIN { FS="\""; }
|
al@1010
|
1693 { gsub("+", "%2B", $2); print; }'
|
al@1010
|
1694 done < $table
|
al@1010
|
1695 unset IFS
|
al@1010
|
1696 echo '</pre>'
|
al@1010
|
1697 echo '</section>'
|
al@1010
|
1698 rm $table
|
al@1010
|
1699 fi
|
al@1010
|
1700 rm $orphans
|
al@1010
|
1701 # ------------------------------------------------------
|
al@1010
|
1702 # /Unpackaged files
|
al@1010
|
1703 # ------------------------------------------------------
|
al@1010
|
1704
|
al@1010
|
1705 rm $all_files $packaged
|
al@1010
|
1706 ;;
|
al@912
|
1707 esac
|
al@1010
|
1708 done # /set
|
al@912
|
1709
|
al@1010
|
1710 case "$part" in
|
al@1010
|
1711 head)
|
al@1010
|
1712 [ -n "$splitsets" ] && echo "</ul>"
|
al@1010
|
1713 echo "</section>"
|
al@1010
|
1714 ;;
|
al@1010
|
1715 esac
|
al@1010
|
1716 done # /part
|
al@1010
|
1717
|
al@898
|
1718 ;;
|
al@898
|
1719
|
al@898
|
1720 description)
|
al@898
|
1721 page_header
|
al@898
|
1722 pkg_info
|
al@908
|
1723 descs="$(ls $WOK/$pkg/description*.txt)"
|
al@908
|
1724 if [ -n "$descs" ]; then
|
al@898
|
1725 echo '<div id="content2">'
|
al@908
|
1726 [ -f "$WOK/$pkg/description.txt" ] && show_desc "$pkg" "$WOK/$pkg/description.txt"
|
al@908
|
1727 for i in $descs; do
|
al@908
|
1728 case $i in
|
al@908
|
1729 */description.txt) continue ;;
|
al@908
|
1730 *) package=$(echo $i | cut -d. -f2) ;;
|
al@908
|
1731 esac
|
al@908
|
1732 show_desc "$package" "$i"
|
al@908
|
1733 done
|
al@898
|
1734 echo '</div>'
|
al@898
|
1735 else
|
al@898
|
1736 show_note w "No description of $pkg"
|
al@898
|
1737 fi
|
al@898
|
1738 ;;
|
al@898
|
1739
|
al@898
|
1740 log)
|
al@898
|
1741 page_header
|
al@898
|
1742 pkg_info
|
al@898
|
1743 [ -z "$arg" ] && arg=$(stat -c %Y $LOGS/$pkg.log)
|
al@898
|
1744
|
al@898
|
1745 echo '<div class="btnList">'
|
al@924
|
1746 acc='l' # access key for the latest log is 'L'
|
al@898
|
1747 while read log; do
|
al@924
|
1748 # for all $pkg.log, $pkg.log.0 .. $pkg.log.9, $pkg-pack.log (if any)
|
al@898
|
1749 timestamp=$(stat -c %Y $log)
|
al@898
|
1750 class=''
|
al@898
|
1751 if [ "$arg" == "$timestamp" ]; then
|
al@898
|
1752 class=' log'
|
al@898
|
1753 logfile="$log"
|
al@898
|
1754 fi
|
al@924
|
1755 case $log in *-pack.log) acc='p';; esac # access key for the packing log is 'P'
|
al@898
|
1756 echo -n "<a class='button$class' data-acc='$acc' accesskey='$acc' href='$base/$pkg/log/$timestamp'>"
|
al@898
|
1757 echo "$(stat -c %y $log | cut -d: -f1,2)</a>"
|
al@898
|
1758 case $acc in
|
al@898
|
1759 l) acc=0;;
|
al@898
|
1760 *) acc=$((acc+1));;
|
al@898
|
1761 esac
|
al@898
|
1762 done <<EOT
|
al@898
|
1763 $(find $LOGS -name "$pkg.log*" | sort)
|
al@924
|
1764 $(find $LOGS -name "$pkg-pack.log")
|
al@898
|
1765 EOT
|
al@898
|
1766 echo '</div>'
|
al@898
|
1767
|
al@898
|
1768 if [ -z "$logfile" ]; then
|
al@898
|
1769 show_note e "Requested log is absent"
|
al@898
|
1770 page_footer
|
al@898
|
1771 exit 0
|
al@898
|
1772 fi
|
al@898
|
1773
|
al@898
|
1774 # Define cook variables for syntax highlighter
|
al@898
|
1775 if [ -s "$WOK/$pkg/receipt" ]; then
|
al@898
|
1776 . "$WOK/$pkg/receipt"
|
al@898
|
1777 _wok='/home/slitaz/wok'
|
al@898
|
1778 _src="$_wok/$pkg/source/$PACKAGE-$VERSION"
|
al@898
|
1779 _install="$_wok/$pkg/install"
|
al@898
|
1780 _fs="$_wok/$pkg/taz/$PACKAGE-$VERSION/fs"
|
al@898
|
1781 _stuff="$_wok/$pkg/stuff"
|
al@898
|
1782 fi
|
al@898
|
1783
|
al@898
|
1784 # if [ ! -f "gzlog/$pkg.$arg" ]; then
|
al@898
|
1785 # {
|
al@898
|
1786 # summary "$logfile" links
|
al@898
|
1787 #
|
al@898
|
1788 # syntax_highlighter log < $logfile | awk '
|
al@898
|
1789 # BEGIN { print "<pre class=\"log\">"; }
|
al@898
|
1790 # { printf("<a name=\"l%d\" href=\"#l%d\">%5d</a> %s\n", NR, NR, NR, $0); }
|
al@898
|
1791 # END { print "</pre>"; }
|
al@898
|
1792 # '
|
al@898
|
1793 #
|
al@898
|
1794 # page_footer
|
al@898
|
1795 # } | gzip > gzlog/$pkg.$arg
|
al@898
|
1796 # fi
|
al@898
|
1797
|
al@898
|
1798 blog=$(basename $logfile)
|
al@898
|
1799 summary "$logfile" links
|
al@898
|
1800
|
al@898
|
1801 # disable next `sed` for the 'like2016' theme
|
al@898
|
1802 theme=$(COOKIE theme); theme=${theme:-default}; [ "$theme" != 'like2016' ] && theme=''
|
al@898
|
1803 cat $logfile | syntax_highlighter log | \
|
al@898
|
1804 sed -e "/(pkg\/local$theme):/ s|: \([^<]*\)|<img src='$base/i/$blog/\1'> \1|" | \
|
al@898
|
1805 awk '
|
al@898
|
1806 BEGIN { print "<pre class=\"log\">"; }
|
al@972
|
1807 { printf("<span id=\"l%d\">%s</span><a href=\"#l%d\"></a>\n", NR, $0, NR); }
|
al@898
|
1808 END { print "</pre>"; }
|
al@898
|
1809 '
|
al@898
|
1810 ;;
|
al@898
|
1811
|
al@898
|
1812
|
al@898
|
1813 man|doc|info)
|
al@898
|
1814 page_header
|
al@898
|
1815 pkg_info
|
al@898
|
1816 echo '<div style="max-height: 6.4em; overflow: auto; padding: 0 4px">'
|
al@898
|
1817
|
al@898
|
1818 dir="wok/$pkg/install/usr/share/$cmd"
|
al@898
|
1819 [ "$cmd" == 'doc' ] && dir="$dir wok/$pkg/install/usr/share/gtk-doc"
|
al@898
|
1820 if [ "$cmd" == 'doc' -a -z "$arg" ]; then
|
al@898
|
1821 try=$(for i in $dir; do find $i -name 'index.htm*'; done | sed q)
|
al@898
|
1822 [ -n "$try" ] && arg="$try"
|
al@898
|
1823 fi
|
al@898
|
1824 while read i; do
|
al@898
|
1825 [ -s "$i" ] || continue
|
al@898
|
1826 case "$i" in
|
al@898
|
1827 *.jp*g|*.png|*.gif|*.svg|*.css) continue
|
al@898
|
1828 esac
|
al@898
|
1829 i=${i#$dir/}
|
al@898
|
1830 [ -n "$arg" ] || arg="$i"
|
al@898
|
1831 class=''; [ "$arg" == "$i" ] && class=" doc"
|
al@898
|
1832 case "$cmd" in
|
al@898
|
1833 man)
|
al@898
|
1834 case $i in
|
al@898
|
1835 man*) lang='';;
|
al@898
|
1836 *) lang="${i%%/*}: ";;
|
al@898
|
1837 esac
|
al@898
|
1838 man=$(basename $i .gz)
|
al@898
|
1839 echo "<a class='button$class' href='$base/$pkg/man/$i'>$lang${man%.*} (${man##*.})</a>"
|
al@898
|
1840 ;;
|
al@898
|
1841 doc)
|
al@898
|
1842 echo "<a class='button$class' href='$base/$pkg/doc/$i'>$(basename $i .gz)</a>"
|
al@898
|
1843 ;;
|
al@898
|
1844 info)
|
al@898
|
1845 info=$(basename $i)
|
al@898
|
1846 echo "<a class='button$class' href='$base/$pkg/info/$i#Top'>${info/.info/}</a>"
|
al@898
|
1847 ;;
|
al@898
|
1848 esac
|
al@898
|
1849 done <<EOT
|
al@898
|
1850 $(for i in $dir; do find $i -type f; done | sort)
|
al@898
|
1851 EOT
|
al@898
|
1852 echo '</div>'
|
al@898
|
1853
|
al@898
|
1854 [ -f "$arg" ] || arg="$dir/$arg"
|
al@898
|
1855 if [ -f "$arg" ]; then
|
al@898
|
1856 tmp="$(mktemp)"
|
al@898
|
1857 docat "$arg" > $tmp
|
al@898
|
1858 [ -s "$tmp" ] &&
|
al@898
|
1859 case "$cmd" in
|
al@898
|
1860 info)
|
al@898
|
1861 echo '<div id="content2" class="texinfo"><pre class="first">'
|
al@898
|
1862 info2html < "$tmp"
|
al@898
|
1863 echo '</pre></div>'
|
al@898
|
1864 ;;
|
al@898
|
1865 doc)
|
al@898
|
1866 case "$arg" in
|
al@898
|
1867 *.sgml|*.devhelp2) class='xml';;
|
al@898
|
1868 *.py) class='python';; # pycurl package
|
al@898
|
1869 *.css) class='css';;
|
al@976
|
1870 *.sh) class='bash';;
|
al@976
|
1871 *)
|
al@976
|
1872 first=$(head -n1 "$tmp")
|
al@976
|
1873 if [ "${first:0:1}" == '#' ]; then
|
al@976
|
1874 class='bash' # first line begins with '#'
|
al@976
|
1875 else
|
al@976
|
1876 class='asciidoc'
|
al@976
|
1877 fi;;
|
al@898
|
1878 esac
|
al@898
|
1879 case "$arg" in
|
al@898
|
1880 *.htm*)
|
al@898
|
1881 case $arg in
|
al@898
|
1882 wok/*) page="${arg#wok/}"; page="$base/$pkg/browse/${page#*/}";;
|
al@898
|
1883 *) page="$base/$pkg/browse/install/usr/share/$cmd/$arg";;
|
al@898
|
1884 esac
|
paul@929
|
1885 # make the iframe height so long to contain its contents without scrollbar
|
al@898
|
1886 echo "<iframe id='idoc' src='$page' width='100%' onload='resizeIframe(this)'></iframe>"
|
al@898
|
1887 ;;
|
al@898
|
1888 *.pdf)
|
al@898
|
1889 case $arg in
|
al@898
|
1890 wok/*) page="${arg#wok/}"; page="$base/$pkg/browse/${page#*/}";;
|
al@898
|
1891 *) page="$base/$pkg/browse/install/usr/share/$cmd/$arg";;
|
al@898
|
1892 esac
|
al@898
|
1893 cat <<EOT
|
al@898
|
1894 <object id="idoc" data="$page" width="100%" height="100%" type="application/pdf" style="min-height: 600px">
|
al@898
|
1895 $(show_note w "Missing PDF plugin.<br/>Get the file <a href="$page">$(basename "$page")</a>.")
|
al@898
|
1896 </object>
|
al@898
|
1897 EOT
|
al@898
|
1898 ;;
|
al@958
|
1899 *.md|*.markdown)
|
al@958
|
1900 echo '<section>'
|
al@958
|
1901 $md2html "$tmp"
|
al@958
|
1902 echo '</section>'
|
al@958
|
1903 ;;
|
al@898
|
1904 *)
|
al@898
|
1905 show_code $class < "$tmp"
|
al@898
|
1906 ;;
|
al@898
|
1907 esac
|
al@898
|
1908 ;;
|
al@898
|
1909 man)
|
al@898
|
1910 #export TEXTDOMAIN='man2html'
|
al@898
|
1911 echo "<div id='content2'>"
|
al@898
|
1912
|
al@1002
|
1913 html=$(./man2html.bin "$tmp" | sed -e '1,/<header>/d' -e '/<footer>/,$d' \
|
al@898
|
1914 -e 's|<a href="file:///[^>]*>\([^<]*\)</a>|\1|g' \
|
al@898
|
1915 -e 's|<a href="?[1-9]\+[^>]*>\([^<]*\)</a>|\1|g')
|
al@898
|
1916
|
al@898
|
1917 if [ -n "$(echo "$html" | fgrep 'The requested file /tmp/tmp.')" ]; then
|
al@898
|
1918 # Process the pre-formatted man-cat page
|
al@912
|
1919 # (for example see sudo package without groff in build dependencies)
|
al@912
|
1920 sed -i '
|
al@898
|
1921 s|M-bM-^@M-^S|—|g;
|
al@898
|
1922 s|M-bM-^@M-^\\|<b>|g;
|
al@898
|
1923 s|M-bM-^@M-^]|</b>|g
|
al@898
|
1924 s|M-bM-^@M-^X|<u>|g;
|
al@898
|
1925 s|M-bM-^@M-^Y|</u>|g;
|
al@898
|
1926 s|M-BM-||g;
|
al@912
|
1927 s|++oo|•|g;
|
al@912
|
1928 s|&|\&|g; s|<|\<|g; s|>|\>|g;
|
al@898
|
1929 ' "$tmp"
|
al@912
|
1930 for i in a b c d e f g h i j k l m n o p q r s t u v w x y z \
|
al@912
|
1931 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z \
|
al@912
|
1932 0 1 2 3 4 5 6 7 8 9 _ - '\\+' '\.' /; do
|
al@912
|
1933 sed -i "s|$i$i|<b>$i</b>|g; s|_$i|<u>$i</u>|g" "$tmp"
|
al@912
|
1934 done
|
al@912
|
1935 echo '<pre class="catman">'
|
al@912
|
1936 sed 's|</b><b>||g; s|</u><u>||g; s|</u><b>_</b><u>|_|g; s|</b> <b>| |g;' "$tmp"
|
al@898
|
1937 echo '</pre>'
|
al@898
|
1938 else
|
al@898
|
1939 echo "$html"
|
al@898
|
1940 fi
|
al@898
|
1941 echo "</div>"
|
al@898
|
1942 ;;
|
al@898
|
1943 esac
|
al@898
|
1944 rm -f $tmp
|
al@898
|
1945 else
|
paul@1006
|
1946 show_note e "File “$arg” does not exist!"
|
al@898
|
1947 fi
|
al@898
|
1948 ;;
|
al@898
|
1949
|
al@924
|
1950 download)
|
al@924
|
1951 page_header
|
al@924
|
1952 pkg_info
|
al@924
|
1953 show=0
|
al@924
|
1954
|
al@924
|
1955 . $wok/$pkg/receipt
|
al@924
|
1956
|
al@924
|
1957 if [ -n "$TARBALL" -a -s "$SRC/$TARBALL" ]; then
|
al@924
|
1958 files_header
|
al@924
|
1959 echo "<tr><td><a href='$base/src/$TARBALL'>$TARBALL</a></td>"
|
al@924
|
1960 ls -lh "$SRC/$TARBALL" | awk '{printf("<td>%sB</td>", $5)}'
|
al@924
|
1961 echo "<td>Sources for building the package “$pkg”</td></tr>"
|
al@924
|
1962 show=1
|
al@924
|
1963 fi
|
al@924
|
1964
|
al@924
|
1965 if [ -d "$wok/$pkg/taz" ]; then
|
al@924
|
1966 [ "$show" -eq 1 ] || files_header
|
al@924
|
1967
|
al@924
|
1968 for i in $(all_names); do
|
al@924
|
1969 [ -e "$wok/$pkg/taz/$i-$VERSION$EXTRAVERSION/receipt" ] || continue
|
al@924
|
1970 . $wok/$pkg/taz/$i-$VERSION$EXTRAVERSION/receipt
|
al@924
|
1971
|
al@924
|
1972 for filename in "$PACKAGE-$VERSION$EXTRAVERSION.tazpkg" "$PACKAGE-$VERSION$EXTRAVERSION-$ARCH.tazpkg"; do
|
al@924
|
1973 [ -f "$PKGS/$filename" ] &&
|
al@924
|
1974 cat <<EOT
|
al@924
|
1975 <tr>
|
al@924
|
1976 <td><a href="$base/get/$filename">$filename</a></td>
|
al@924
|
1977 <td>$(ls -lh ./packages/$filename | awk '{printf("%sB", $5)}')</td>
|
al@924
|
1978 <td>$SHORT_DESC</td>
|
al@924
|
1979 </tr>
|
al@924
|
1980 EOT
|
al@924
|
1981 done
|
al@924
|
1982 done
|
al@924
|
1983 show=1
|
al@924
|
1984 fi
|
al@924
|
1985
|
al@924
|
1986 if [ "$show" -eq 1 ]; then
|
al@924
|
1987 echo '</tbody></table></section>'
|
al@924
|
1988 else
|
al@924
|
1989 show_note w "Sorry, there's nothing to download…"
|
al@924
|
1990 fi
|
al@924
|
1991 ;;
|
al@924
|
1992
|
al@898
|
1993 esac
|
al@898
|
1994
|
al@898
|
1995
|
al@898
|
1996 page_footer
|
al@898
|
1997 exit 0
|