slitaz-forge rev 500

cook: centralize all i486 version in a page
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 02 08:39:36 2014 +0200 (2014-04-02)
parents ae32eae3f479
children 36bb13e5f199
files cook/header.html cook/i486.cgi
line diff
     1.1 --- a/cook/header.html	Wed Apr 02 08:27:47 2014 +0200
     1.2 +++ b/cook/header.html	Wed Apr 02 08:39:36 2014 +0200
     1.3 @@ -35,15 +35,9 @@
     1.4  		<a href="http://pizza.slitaz.me/">Pizza</a>
     1.5  		<a href="http://tank.slitaz.org/">Tank</a>
     1.6  		|
     1.7 -		<!--
     1.8 -			We may handle cookiso link via CGI since it may
     1.9 -			not be present for all arch
    1.10 -		-->
    1.11  		<a href="/cross">Cross</a>
    1.12 +		<a href="/i486.cgi">i486</a>
    1.13  		<a href="/cookiso.cgi">ISO</a>
    1.14 -		<a href="/stable/">Stable</a>
    1.15 -		<a href="/backports/">Backports</a>
    1.16 -		<a href="/undigest/">Undigest</a>
    1.17  	</div>
    1.18  	<h1><a href="./">SliTaz Cooker</a></h1>
    1.19  </div>
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/cook/i486.cgi	Wed Apr 02 08:39:36 2014 +0200
     2.3 @@ -0,0 +1,38 @@
     2.4 +#!/bin/sh
     2.5 +#
     2.6 +#. /usr/lib/slitaz/httphelper.sh
     2.7 +#header
     2.8 +echo "Content-Type: text/html"
     2.9 +echo ""
    2.10 +
    2.11 +cat header.html
    2.12 +
    2.13 +cat << EOT
    2.14 +
    2.15 +<h2>SliTaz i486 platform</h2>
    2.16 +
    2.17 +<p>
    2.18 +	SliTaz i486: stable, cooking, undiguest + backport
    2.19 +</p>
    2.20 +<p>
    2.21 +	SliTaz i486: <a href="/cooker.cgi?pkg=slitaz-toolchain">toolchain</a>
    2.22 +</p>
    2.23 +
    2.24 +<pre>
    2.25 +Version  : <a href="stable">stable</a>
    2.26 +</pre>
    2.27 +
    2.28 +<pre>
    2.29 +Version  : <a href="cooker.cgi">cooking</a>
    2.30 +</pre>
    2.31 +
    2.32 +<pre>
    2.33 +Version  : <a href="undigest/">undigest</a>
    2.34 +</pre>
    2.35 +
    2.36 +</div>
    2.37 +</body>
    2.38 +</html>
    2.39 +EOT
    2.40 +
    2.41 +exit 0