website view en/doc/index.php @ rev 1084

Update relnotes links (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 27 09:56:28 2012 +0200 (2012-07-27)
parents 637f8fe842b8
children 66964b8f0217
line source
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 <head>
5 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
6 <title>SliTaz - English documentation</title>
7 <meta name="description" content="SliTaz GNU/Linux English documentationx part livecd tazpkg packages" />
8 <meta name="keywords" lang="en" content="System, free, gnu, linux, opensource software, livecd in RAM" />
9 <meta name="author" content="Christophe Lincoln"/>
10 <?php include("../../lib/html/meta-link.html"); ?>
11 </head>
12 <body>
14 <?php include("../../lib/html/header.html"); ?>
16 <!-- Block -->
17 <div id="block">
18 <?php include("../../lib/html/nav.en.html"); ?>
19 <!-- Information/image -->
20 <div id="block_info">
21 <h4>English documentation</h4>
22 <p>
23 SliTaz official documentation is available on the community
24 Wiki site. Manuals and a getting started guide is provided
25 by each SliTaz LiveCD and available through the
26 "Documentation" menu.
27 </p>
28 <ul>
29 <li><a href="http://doc.slitaz.org/en:start">Community Wiki</a></li>
30 <li><a href="http://hg.slitaz.org/slitaz-doc/raw-file/tip/slitaz/index.en.html"
31 >Getting started guide</a></li>
32 </ul>
33 </div>
34 </div>
36 <?php include("../../lib/lang.php"); ?>
38 <!-- Content -->
39 <div id="content">
41 <h2>Handbook &amp; Cookbook</h2>
43 <p>
44 SliTaz <a href="http://doc.slitaz.org/en:handbook:start">Handbook</a> -
45 LiveCD usage, package management, network or system administration
46 and specific instructions. This Handbook is a community effort to provide
47 high quality documentation for SliTaz users. It will help you get started
48 with SliTaz GNU/Linux and show you how to configure the system to your own
49 needs and preferences. This is the documentation that we advise you to read,
50 learn and consult first.
51 </p>
52 <p>
53 SliTaz <a href="http://doc.slitaz.org/en:cookbook:start">Cookbook</a> -
54 Information regarding the management, operation and development of the distribution.
55 Instructions on how to use the wok and package receipts, descriptions of boot scripts
56 and rootcd files, and various tools.
57 </p>
59 <h2>Scratchbook</h2>
61 <p>
62 Historically, the Scratchbook was written when SliTaz was created and wasn't
63 made to be updated. But over time, some SliTaz contributors migrated the book
64 over to the Wiki and have made some updates:
65 <a href="http://doc.slitaz.org/en:scratchbook:start">Community Scratchbook</a>
66 </p>
67 <p>
68 SliTaz <a href="scratchbook/">Original Scratchbook</a> -
69 Describes the stages of creating the very first SliTaz distribution
70 commencing with instructions on compiling the Linux kernel, installing
71 the graphical server (Xvesa) and GTK applications, etc. It contains
72 techniques requiring time and motivation that enable you to build a
73 GNU/Linux system from source.
74 </p>
76 <h2>Manuals</h2>
78 <ul>
79 <li><a href="http://hg.slitaz.org/tazpkg/raw-file/tip/doc/tazpkg.en.html"
80 >Tazpkg manual</a> - SliTaz Package Manager.</li>
81 <li><a href="http://hg.slitaz.org/tazlito/raw-file/tip/doc/tazlito.en.html"
82 >Tazlito manual</a> - SliTaz LiveCD utility.</li>
83 <li><a href="http://hg.slitaz.org/tazusb/raw-file/tip/doc/tazusb.en.html"
84 >TazUSB manual</a> - SliTaz LiveUSB utility.</li>
85 <li><a href="http://hg.slitaz.org/cookutils/raw-file/tip/doc/cookutils.en.html"
86 >Cookutils manual</a> - SliTaz Package Cooker.</li>
87 </ul>
89 <h2>Release Notes</h2>
91 <p>
92 SliTaz Release Notes provide detailed information about the stable version
93 and give a few useful tips to help you start using the system. On the core
94 LiveCD, Release Notes are installed and available through the "Documentation"
95 menu.
96 </p>
98 <ul>
99 <?php
100 $relnotes = array();
101 for ($release = 1;; $release++) {
102 $file = "releases/".$release.".0/relnotes.en.html";
103 if (!file_exists($file))
104 break;
105 array_unshift($relnotes, array("release" => $release.".0", "file" => $file));
106 }
107 foreach ($relnotes as $release) {
108 print " <li><a href=\"".$release["file"]."\">SliTaz GNU/Linux ".$release["release"]." -\n";
109 print " Release Notes</a></li>\n";
110 }
111 ?>
112 </ul>
114 <!-- End of content -->
115 </div>
117 <?php include("../../lib/html/footer.html"); ?>
119 </body>
120 </html>