cookutils annotate web/cooker.cgi @ rev 751

cooker.cgi: show cook progress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 20 13:00:39 2015 +0200 (2015-09-20)
parents d15a44a622f6
children 5ebf7a7f1bf4
rev   line source
pankso@5 1 #!/bin/sh
pankso@5 2 #
pankso@5 3 # SliTaz Cooker CGI/web interface.
pankso@5 4 #
pankso@5 5
pankso@5 6 [ -f "/etc/slitaz/cook.conf" ] && . /etc/slitaz/cook.conf
pankso@5 7 [ -f "cook.conf" ] && . ./cook.conf
pankso@5 8
pankso@5 9 # The same wok as cook.
pankso@5 10 wok="$WOK"
pankso@5 11
pankso@5 12 # Cooker DB files.
pankso@5 13 activity="$CACHE/activity"
pankso@5 14 commits="$CACHE/commits"
pankso@5 15 cooklist="$CACHE/cooklist"
pankso@5 16 cookorder="$CACHE/cookorder"
pankso@14 17 command="$CACHE/command"
pankso@5 18 blocked="$CACHE/blocked"
pankso@5 19 broken="$CACHE/broken"
pankso@22 20 cooknotes="$CACHE/cooknotes"
pankso@164 21 wokrev="$CACHE/wokrev"
pankso@5 22
paul@256 23 # We're not logged and want time zone to display correct server date.
pankso@249 24 export TZ=$(cat /etc/TZ)
pankso@249 25
al@728 26 if [ "${QUERY_STRING%%=*}" == 'download' ]; then
pascal@721 27 file=$(busybox httpd -d "$PKGS/${QUERY_STRING#*=}")
pascal@354 28 cat <<EOT
pascal@354 29 Content-Type: application/octet-stream
pascal@721 30 Content-Length: $(stat -c %s "$file")
pascal@721 31 Content-Disposition: attachment; filename="$(basename "$file")"
pascal@354 32
pascal@354 33 EOT
pascal@721 34 cat "$file"
pascal@354 35 exit
pascal@354 36 fi
pascal@354 37
al@695 38 echo -n "Content-Type: "
al@728 39 if [ "$QUERY_STRING" == 'rss' ]; then
al@728 40 echo 'application/rss+xml'
al@695 41 else
al@728 42 echo 'text/html; charset=utf-8'
al@695 43 fi
al@728 44 echo ''
pankso@5 45
pankso@310 46 # RSS feed generator
al@728 47 if [ "$QUERY_STRING" == 'rss' ]; then
al@695 48 pubdate=$(date -R)
al@728 49 cat <<EOT
pankso@310 50 <?xml version="1.0" encoding="utf-8" ?>
al@695 51 <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
pankso@310 52 <channel>
pankso@310 53 <title>SliTaz Cooker</title>
pankso@310 54 <description>The SliTaz packages cooker feed</description>
pankso@310 55 <link>$COOKER_URL</link>
pascal@618 56 <lastBuildDate>$pubdate</lastBuildDate>
pascal@618 57 <pubDate>$pubdate</pubDate>
al@695 58 <atom:link href="http://cook.slitaz.org/cooker.cgi?rss" rel="self" type="application/rss+xml" />
pankso@310 59 EOT
al@728 60 for rss in $(ls -lt $FEEDS/*.xml | head -n 12); do
al@695 61 cat $rss | sed 's|<guid|& isPermaLink="false"|g;s|</pubDate| GMT&|g'
pankso@310 62 done
al@728 63 cat <<EOT
pankso@310 64 </channel>
pankso@310 65 </rss>
pankso@310 66 EOT
pankso@310 67 exit 0
pankso@310 68 fi
pankso@310 69
al@728 70
pascal@354 71 #
pascal@354 72 # Functions
pascal@354 73 #
pascal@354 74
al@728 75
pankso@5 76 # Put some colors in log and DB files.
al@728 77
pankso@5 78 syntax_highlighter() {
pankso@17 79 case $1 in
pankso@17 80 log)
pascal@601 81 sed -e 's/&/\&amp;/g;s/</\&lt;/g;s/>/\&gt;/g' \
pascal@601 82 -e 's#OK$#<span class="span-ok">OK</span>#g' \
pascal@535 83 -e 's#Done$#<span class="span-ok">Done</span>#g' \
pankso@17 84 -e 's#yes$#<span class="span-ok">yes</span>#g' \
pankso@17 85 -e 's#no$#<span class="span-no">no</span>#g' \
pankso@129 86 -e 's#error$#<span class="span-red">error</span>#g' \
pankso@129 87 -e 's#ERROR:#<span class="span-red">ERROR:</span>#g' \
pankso@129 88 -e 's#WARNING:#<span class="span-red">WARNING:</span>#g' \
pankso@65 89 -e s"#^Executing:\([^']*\).#<span class='sh-val'>\0</span>#"g \
pankso@17 90 -e s"#^====\([^']*\).#<span class='span-line'>\0</span>#"g \
pankso@29 91 -e s"#^[a-zA-Z0-9]\([^']*\) :: #<span class='span-sky'>\0</span>#"g \
pascal@507 92 -e s"#ftp://[^ '\"]*#<a href='\0'>\0</a>#"g \
pascal@507 93 -e s"#http://[^ '\"]*#<a href='\0'>\0</a>#"g ;;
al@728 94
pankso@17 95 receipt)
pascal@603 96 sed -e s'|&|\&amp;|g' -e 's|<|\&lt;|g' -e 's|>|\&gt;|'g \
pankso@258 97 -e s"#^\#\([^']*\)#<span class='sh-comment'>\0</span>#"g \
pankso@17 98 -e s"#\"\([^']*\)\"#<span class='sh-val'>\0</span>#"g ;;
al@728 99
pankso@129 100 diff)
pankso@129 101 sed -e 's|&|\&amp;|g' -e 's|<|\&lt;|g' -e 's|>|\&gt;|g' \
pankso@129 102 -e s"#^-\([^']*\).#<span class='span-red'>\0</span>#"g \
pankso@129 103 -e s"#^+\([^']*\).#<span class='span-ok'>\0</span>#"g \
pankso@129 104 -e s"#@@\([^']*\)@@#<span class='span-sky'>@@\1@@</span>#"g ;;
al@728 105
pankso@129 106 activity)
pankso@129 107 sed s"#^\([^']* : \)#<span class='log-date'>\0</span>#"g ;;
pankso@17 108 esac
pankso@5 109 }
pankso@5 110
al@728 111
pankso@5 112 # Latest build pkgs.
al@728 113
pankso@5 114 list_packages() {
pankso@5 115 cd $PKGS
pankso@5 116 ls -1t *.tazpkg | head -20 | \
al@728 117 while read file; do
pankso@5 118 echo -n $(stat -c '%y' $PKGS/$file | cut -d . -f 1 | sed s/:[0-9]*$//)
pankso@5 119 echo " : $file"
pankso@5 120 done
pankso@5 121 }
pankso@5 122
al@728 123
pascal@605 124 # Optional full list button
al@728 125
pascal@605 126 more_button() {
pascal@607 127 [ $(wc -l < ${3:-$CACHE/$1}) -gt ${4:-12} ] &&
pascal@605 128 echo "<a class=\"button\" href=\"cooker.cgi?file=$1\">$2</a>"
pascal@605 129 }
pascal@605 130
al@728 131
pascal@751 132 # Show the running command and its progression
pascal@751 133
pascal@751 134 running_command()
pascal@751 135 {
pascal@751 136 local state="Not running"
pascal@751 137 if [ -s "$command" ]; then
pascal@751 138 state="$(cat $command)"
pascal@751 139 if grep -q "^$state" $cooktime ; then
pascal@751 140 set -- $(cat $cooktime)
pascal@751 141 state="$state $((($(date +%s)-$3)*100/$2))%"
pascal@751 142 fi
pascal@751 143 fi
pascal@751 144 echo $state
pascal@751 145 }
pascal@751 146
pascal@751 147
pankso@253 148 # xHTML header. Pages can be customized with a separated html.header file.
al@728 149
pankso@253 150 if [ -f "header.html" ]; then
pankso@253 151 cat header.html
pankso@253 152 else
al@728 153 cat <<EOT
pankso@5 154 <!DOCTYPE html>
al@728 155 <html lang="en">
pankso@5 156 <head>
al@728 157 <meta charset="utf-8"/>
pankso@5 158 <title>SliTaz Cooker</title>
al@728 159 <link rel="shortcut icon" href="favicon.ico"/>
al@728 160 <link rel="stylesheet" type="text/css" href="style.css"/>
pankso@5 161 </head>
pankso@5 162 <body>
pankso@5 163
pankso@5 164 <div id="header">
pankso@253 165 <div id="logo"></div>
pankso@5 166 <h1><a href="cooker.cgi">SliTaz Cooker</a></h1>
pankso@5 167 </div>
pankso@5 168
pankso@5 169 <!-- Content -->
pankso@5 170 <div id="content">
pankso@5 171 EOT
pankso@253 172 fi
pankso@5 173
al@728 174
pankso@5 175 #
pankso@5 176 # Load requested page
pankso@5 177 #
pankso@5 178
pankso@5 179 case "${QUERY_STRING}" in
pankso@16 180 pkg=*)
pankso@16 181 pkg=${QUERY_STRING#pkg=}
pankso@16 182 log=$LOGS/$pkg.log
pankso@16 183 echo "<h2>Package: $pkg</h2>"
pankso@16 184
pankso@18 185 # Package info.
pankso@18 186 echo '<div id="info">'
pankso@16 187 if [ -f "$wok/$pkg/receipt" ]; then
pankso@16 188 echo "<a href='cooker.cgi?receipt=$pkg'>receipt</a>"
pascal@275 189 unset WEB_SITE
pascal@275 190 . $wok/$pkg/receipt
al@728 191
pascal@301 192 [ -n "$WEB_SITE" ] && # busybox wget -s $WEB_SITE &&
pascal@275 193 echo "<a href='$WEB_SITE'>home</a>"
al@728 194
pascal@354 195 if [ -f "$wok/$pkg/taz/$PACKAGE-$VERSION/receipt" ]; then
pascal@355 196 echo "<a href='cooker.cgi?files=$pkg'>files</a>"
pascal@354 197 unset EXTRAVERSION
pascal@354 198 . $wok/$pkg/taz/$PACKAGE-$VERSION/receipt
pascal@490 199 if [ -f $wok/$pkg/taz/$PACKAGE-$VERSION/description.txt ]; then
slaxemulator@491 200 echo "<a href='cooker.cgi?description=$pkg'>description</a>"
pascal@490 201 fi
pascal@354 202 if [ -f $PKGS/$PACKAGE-$VERSION$EXTRAVERSION.tazpkg ]; then
pascal@354 203 echo "<a href='cooker.cgi?download=$PACKAGE-$VERSION$EXTRAVERSION.tazpkg'>download</a>"
pascal@354 204 fi
pascal@439 205 if [ -f $PKGS/$PACKAGE-$VERSION$EXTRAVERSION-$ARCH.tazpkg ]; then
pascal@439 206 echo "<a href='cooker.cgi?download=$PACKAGE-$VERSION$EXTRAVERSION-$ARCH.tazpkg'>download</a>"
pascal@439 207 fi
pascal@694 208 echo "<a href='ftp://${HTTP_HOST%:*}/$pkg/'>browse</a>"
pascal@354 209 fi
pankso@16 210 else
pascal@703 211 if [ $(ls $wok/*$pkg*/receipt 2> /dev/null | wc -l) -eq 0 ]; then
pascal@703 212 echo "No package named: $pkg"
pascal@703 213 else
pascal@703 214 ls $wok/$pkg/receipt >/dev/null 2>&1 || pkg="*$pkg*"
pascal@703 215 echo '<table style="width:100%">'
pascal@703 216 for i in $(cd $wok ; ls $pkg/receipt); do
pascal@703 217 pkg=$(dirname $i)
pascal@703 218 unset SHORT_DESC CATEGORY
pascal@703 219 . $wok/$pkg/receipt
pascal@703 220 cat <<EOT
pascal@703 221 <tr>
pascal@703 222 <td><a href="cooker.cgi?pkg=$pkg">$pkg</a></td>
pascal@703 223 <td>$SHORT_DESC</td>
pascal@703 224 <td>$CATEGORY</td>
pascal@703 225 </tr>
pascal@704 226 EOT
pascal@703 227 done
pascal@703 228 echo '</table>'
pascal@703 229 unset pkg
pascal@703 230 fi
pankso@16 231 fi
pankso@18 232 echo '</div>'
pankso@16 233
paul@62 234 # Check for a log file and display summary if it exists.
pankso@16 235 if [ -f "$log" ]; then
pankso@87 236 if grep -q "cook:$pkg$" $command; then
pankso@88 237 echo "<pre>The Cooker is currently building: $pkg</pre>"
pankso@87 238 fi
pankso@149 239 if fgrep -q "Summary for:" $LOGS/$pkg.log; then
al@728 240 echo '<h3>Cook summary</h3>'
pankso@87 241 echo '<pre>'
pankso@640 242 grep -A 12 "^Summary for:" $LOGS/$pkg.log | sed /^$/d | \
pankso@87 243 syntax_highlighter log
pankso@87 244 echo '</pre>'
pankso@14 245 fi
pankso@149 246 if fgrep -q "Debug information" $LOGS/$pkg.log; then
al@728 247 echo '<h3>Cook failed</h3>'
pankso@17 248 echo '<pre>'
pankso@149 249 grep -A 8 "^Debug information" $LOGS/$pkg.log | sed /^$/d | \
pankso@17 250 syntax_highlighter log
pankso@17 251 echo '</pre>'
pankso@16 252 fi
al@728 253 echo '<h3>Cook log</h3>'
pankso@16 254 echo '<pre>'
pascal@601 255 cat $log | syntax_highlighter log
pankso@16 256 echo '</pre>'
pankso@5 257 else
pascal@703 258 [ "$pkg" ] && echo "<pre>No log: $pkg</pre>"
pankso@16 259 fi ;;
al@728 260
pankso@65 261 file=*)
al@728 262 # Don't allow all files on the system for security reasons.
pankso@65 263 file=${QUERY_STRING#file=}
pankso@65 264 case "$file" in
pankso@90 265 activity|cooknotes|cooklist)
pankso@91 266 [ "$file" == "cooklist" ] && \
pankso@93 267 nb="- Packages: $(cat $cooklist | wc -l)"
pankso@91 268 echo "<h2>DB: $file $nb</h2>"
pankso@18 269 echo '<pre>'
pankso@129 270 tac $CACHE/$file | syntax_highlighter activity
pankso@65 271 echo '</pre>' ;;
al@728 272
pankso@66 273 broken)
pankso@66 274 nb=$(cat $broken | wc -l)
pankso@93 275 echo "<h2>DB: broken - Packages: $nb</h2>"
pankso@66 276 echo '<pre>'
pankso@129 277 cat $CACHE/$file | sort | \
pankso@66 278 sed s"#^[^']*#<a href='cooker.cgi?pkg=\0'>\0</a>#"g
pankso@66 279 echo '</pre>' ;;
al@728 280
pankso@129 281 *.diff)
pankso@129 282 diff=$CACHE/$file
pankso@129 283 echo "<h2>Diff for: ${file%.diff}</h2>"
pankso@129 284 [ "$file" == "installed.diff" ] && echo \
pankso@129 285 "<p>This is the latest diff between installed packages \
pankso@130 286 and installed build dependencies to cook.</p>"
pankso@129 287 echo '<pre>'
pankso@129 288 cat $diff | syntax_highlighter diff
pankso@129 289 echo '</pre>' ;;
al@728 290
pankso@65 291 *.log)
pankso@71 292 log=$LOGS/$file
pankso@71 293 name=$(basename $log)
pankso@65 294 echo "<h2>Log for: ${name%.log}</h2>"
pankso@71 295 if [ -f "$log" ]; then
pankso@71 296 if fgrep -q "Summary" $log; then
pankso@65 297 echo '<pre>'
pankso@73 298 grep -A 20 "^Summary" $log | sed /^$/d | \
pankso@65 299 syntax_highlighter log
pankso@65 300 echo '</pre>'
pankso@65 301 fi
pankso@65 302 echo '<pre>'
pankso@71 303 cat $log | syntax_highlighter log
pankso@65 304 echo '</pre>'
pankso@65 305 else
pankso@71 306 echo "<pre>No log file: $log</pre>"
pankso@65 307 fi ;;
pankso@65 308 esac ;;
al@728 309
pascal@509 310 stuff=*)
pascal@509 311 file=${QUERY_STRING#stuff=}
pascal@509 312 echo "<h2>$file</h2>"
pascal@509 313 echo '<pre>'
pascal@601 314 cat $wok/$file | sed 's/&/\&amp;/g;s/</\&lt;/g;s/>/\&gt;/g'
pascal@509 315 echo '</pre>' ;;
al@728 316
pankso@16 317 receipt=*)
pankso@16 318 pkg=${QUERY_STRING#receipt=}
pankso@17 319 echo "<h2>Receipt for: $pkg</h2>"
pankso@16 320 if [ -f "$wok/$pkg/receipt" ]; then
pascal@509 321 ( cd $wok/$pkg ; find stuff -type f 2> /dev/null ) | \
pascal@509 322 while read file ; do
pascal@509 323 echo "<a href=\"?stuff=$pkg/$file\">$file</a>"
pascal@509 324 done
pankso@16 325 echo '<pre>'
pascal@601 326 cat $wok/$pkg/receipt | \
pascal@601 327 syntax_highlighter receipt
pankso@16 328 echo '</pre>'
pankso@16 329 else
pascal@301 330 echo "<pre>No receipt for: $pkg</pre>"
pascal@301 331 fi ;;
al@728 332
pascal@301 333 files=*)
pascal@301 334 pkg=${QUERY_STRING#files=}
pascal@301 335 dir=$(ls -d $WOK/$pkg/taz/$pkg-*)
pascal@301 336 if [ -d "$dir/fs" ]; then
pascal@703 337 echo "<h2>Installed files by: $pkg ($(du -hs $dir/fs | awk '{ print $1 }'))</h2>"
pascal@301 338 echo '<pre>'
pascal@720 339 find $dir/fs -not -type d -print0 | xargs -0 ls -ld | \
pascal@602 340 sed "s|\(.*\) /.*\(${dir#*wok}/fs\)\(.*\)|\1 <a href=\"?download=../wok\2\3\">\3</a>|;s|^\([^-].*\)\(<a.*\)\">\(.*\)</a>|\1\3|"
pascal@301 341 echo '</pre>'
pascal@301 342 else
pascal@301 343 echo "<pre>No files list for: $pkg</pre>"
pankso@5 344 fi ;;
al@728 345
pascal@490 346 description=*)
pascal@490 347 pkg=${QUERY_STRING#description=}
pascal@490 348 echo "<h2>Description of $pkg</h2>"
pascal@490 349 dir=$(ls -d $WOK/$pkg/taz/$pkg-*)
pascal@493 350 if [ -s "$dir/description.txt" ]; then
pascal@490 351 echo '<pre>'
pascal@601 352 cat $dir/description.txt | \
pascal@601 353 sed 's/&/\&amp;/g;s/</\&lt;/g;s/>/\&gt;/g'
pascal@490 354 echo '</pre>'
pascal@490 355 else
pascal@490 356 echo "<pre>No description for: $pkg</pre>"
pascal@490 357 fi ;;
al@728 358
pankso@5 359 *)
pankso@383 360 # We may have a toolchain.cgi script for cross cooker's
pankso@383 361 if [ -f "toolchain.cgi" ]; then
pankso@383 362 toolchain='toolchain.cgi'
pankso@383 363 else
pankso@383 364 toolchain='cooker.cgi?pkg=slitaz-toolchain'
pankso@383 365 fi
pankso@383 366 # Main page with summary. Count only package include in ARCH,
pankso@679 367 # use 'cooker arch-db' to manually create arch.$ARCH files.
pankso@679 368 inwok=$(ls $WOK/*/arch.$ARCH | wc -l)
pankso@75 369 cooked=$(ls $PKGS/*.tazpkg | wc -l)
pankso@106 370 unbuilt=$(($inwok - $cooked))
pankso@245 371 pct=0
pankso@245 372 [ $inwok -gt 0 ] && pct=$(( ($cooked * 100) / $inwok ))
al@728 373 cat <<EOT
pankso@5 374 <div style="float: right;">
pankso@5 375 <form method="get" action="$SCRIPT_NAME">
pankso@16 376 Package:
pankso@16 377 <input type="text" name="pkg" />
pankso@5 378 </form>
pankso@5 379 </div>
pankso@5 380
pankso@5 381 <h2>Summary</h2>
pankso@75 382
pankso@5 383 <pre>
pascal@751 384 Running command : $(running_command)
pascal@301 385 Wok revision : <a href="$WOK_URL">$(cat $wokrev)</a>
pankso@5 386 Commits to cook : $(cat $commits | wc -l)
pankso@65 387 Current cooklist : $(cat $cooklist | wc -l)
pankso@5 388 Broken packages : $(cat $broken | wc -l)
pankso@95 389 Blocked packages : $(cat $blocked | wc -l)
pankso@5 390 </pre>
pankso@5 391
pankso@383 392 <p class="info">
al@728 393 Packages: $inwok in the wok | $cooked cooked | $unbuilt unbuilt |
al@728 394 Server date: $(date -u '+%F %R %Z')
pankso@75 395 </p>
pankso@75 396 <div class="pctbar">
pankso@75 397 <div class="pct" style="width: ${pct}%;">${pct}%</div>
pankso@14 398 </div>
pankso@14 399
pankso@75 400 <p>
pankso@129 401 Latest:
pankso@129 402 <a href="cooker.cgi?file=cookorder.log">cookorder.log</a>
pankso@129 403 <a href="cooker.cgi?file=commits.log">commits.log</a>
al@742 404 <a href="cooker.cgi?file=pkgdb.log">pkgdb.log</a>
pankso@129 405 <a href="cooker.cgi?file=installed.diff">installed.diff</a>
pankso@188 406 - Architecture $ARCH:
pankso@383 407 <a href="$toolchain">toolchain</a>
pankso@75 408 </p>
pankso@75 409
al@728 410
al@728 411 <h2 id="activity">Activity</h2>
pankso@5 412 <pre>
pankso@129 413 $(tac $CACHE/activity | head -n 12 | syntax_highlighter activity)
pankso@5 414 </pre>
pascal@605 415 $(more_button activity "More activity" $CACHE/activity 12)
pankso@5 416
al@728 417
al@728 418 <h2 id="cooknotes">Cooknotes</h2>
pankso@23 419 <pre>
pankso@129 420 $(tac $cooknotes | head -n 12 | syntax_highlighter activity)
pankso@23 421 </pre>
pascal@605 422 $(more_button cooknotes "More notes" $cooknotes 12)
pankso@23 423
al@728 424
al@728 425 <h2 id="commits">Commits</h2>
pankso@5 426 <pre>
pankso@5 427 $(cat $commits)
pankso@5 428 </pre>
pankso@5 429
al@728 430
al@728 431 <h2 id="cooklist">Cooklist</h2>
pankso@18 432 <pre>
pankso@90 433 $(cat $cooklist | head -n 20)
pankso@18 434 </pre>
pascal@605 435 $(more_button cooklist "Full cooklist" $cooklist 20)
pankso@18 436
al@728 437
al@728 438 <h2 id="broken">Broken</h2>
pankso@5 439 <pre>
pankso@66 440 $(cat $broken | head -n 20 | sed s"#^[^']*#<a href='cooker.cgi?pkg=\0'>\0</a>#"g)
pankso@5 441 </pre>
pascal@605 442 $(more_button broken "All broken packages" $broken 20)
pankso@5 443
al@728 444
al@728 445 <h2 id="blocked">Blocked</h2>
pankso@14 446 <pre>
pankso@23 447 $(cat $blocked | sed s"#^[^']*#<a href='cooker.cgi?pkg=\0'>\0</a>#"g)
pankso@14 448 </pre>
pankso@14 449
al@728 450
al@728 451 <h2 id="lastcook">Latest cook</h2>
pankso@5 452 <pre>
pankso@20 453 $(list_packages | sed s"#^\([^']*\).* : #<span class='log-date'>\0</span>#"g)
pankso@5 454 </pre>
pankso@5 455 EOT
pankso@5 456 ;;
pankso@5 457 esac
pankso@5 458
al@728 459
pankso@5 460 # Close xHTML page
al@728 461
al@728 462 cat <<EOT
pankso@5 463 </div>
pankso@5 464
pankso@5 465 <div id="footer">
pankso@116 466 <a href="http://www.slitaz.org/">SliTaz Website</a>
pankso@116 467 <a href="cooker.cgi">Cooker</a>
pankso@116 468 <a href="http://hg.slitaz.org/cookutils/raw-file/tip/doc/cookutils.en.html">
pankso@116 469 Documentation</a>
pankso@5 470 </div>
pankso@5 471
pankso@5 472 </body>
pankso@5 473 </html>
pankso@5 474 EOT
pankso@5 475
pankso@5 476 exit 0