website rev 69

Fix *book typos
author Paul Issott <paul@slitaz.org>
date Sun Jun 15 13:46:00 2008 +0000 (2008-06-15)
parents f0c0c73578c0
children 78209e6be9d5
files en/doc/handbook/development.html en/doc/manuals/tazwok.en.html
line diff
     1.1 --- a/en/doc/handbook/development.html	Sat Jun 14 14:48:17 2008 +0000
     1.2 +++ b/en/doc/handbook/development.html	Sun Jun 15 13:46:00 2008 +0000
     1.3 @@ -28,7 +28,7 @@
     1.4  <div id="content">
     1.5  <div class="content-right"></div>
     1.6  
     1.7 -<h2><font color="#DF8F06">Developement</font></h2>
     1.8 +<h2><font color="#DF8F06">Development</font></h2>
     1.9  
    1.10  <ul>
    1.11      <li><a href="#about">About Development</a></li>
    1.12 @@ -37,7 +37,7 @@
    1.13      <li><a href="#geany">Geany</a> - IDE or Integrated Development Environment.
    1.14      </li>
    1.15      <li><a href="#perl">Perl or Microperl</a> - Code Perl scripts.</li>
    1.16 -    <li><a href="#python">Python</a> - The Python Language</li>
    1.17 +    <li><a href="#python">Python</a> - The Python Language.</li>
    1.18      <li><a href="#ruby">Ruby</a> - The Ruby Language.</li>
    1.19      <li><a href="#toolchain">Toolchain</a> - Libraries, C compiler and tools.</li>
    1.20  </ul>
    1.21 @@ -65,7 +65,7 @@
    1.22  Before starting a new SHell script, you must pay attention to the interpreter used. Most SHell 
    1.23  scripts use <code>/bin/sh</code>, because it's more portable, but there are scripts that rely on 
    1.24  <code>/bin/bash</code> and this must be installed on the system. For a SHell script to function it 
    1.25 -must be made executable by the current user, changing permissions on the command line can be 
    1.26 +must be made executable by the current user; changing permissions on the command line can be 
    1.27  made by using the <code>chmod</code> tool. To create a <code>script.sh</code> and make it executable:
    1.28  </p>
    1.29  <pre>
    1.30 @@ -151,7 +151,7 @@
    1.31  <p>
    1.32  On SliTaz you can use the powerful scripting language Perl
    1.33  via the <code>perl</code> or <code>microperl</code> binary. Microperl is a streamlined version of perl - 
    1.34 -compiled from official sources, Perl scripts running Microperl are compatible with the full version of Perl. 
    1.35 +compiled from official sources, Perl scripts running Microperl are compatible with the complete version of Perl. 
    1.36  One of Perl's strengths is it's portability, it can used on any system and it's an interpreted language, 
    1.37  this means that the code doesn't need to be compiled and can be used directly. On SliTaz Perl and Microperl 
    1.38  are not installed by default on LiveCD; you can either rebuild your ISO or install through the package 
    1.39 @@ -165,7 +165,7 @@
    1.40  
    1.41  <h4>Hello world!</h4>
    1.42  <p>
    1.43 -The purpose of this script is to display <em>Hello World</em>. You start
    1.44 +The purpose of this script is to display <em>Hello World</em>. You can start
    1.45  by creating the file and then making it executable on the command line and then editing with IDE Geany. 
    1.46  Note the script is called <code>hello.pl</code>, but you can name it as you see
    1.47  fit with or without the <code>.pl</code> extension:
    1.48 @@ -225,8 +225,8 @@
    1.49  The Python programming language is available as an installable package. Once installed, you can create your 
    1.50  own scripts/programs and use CGI applications with the LightTPD web server, taking care to 
    1.51  <a href="web-server.html#cgi-python">configure the server</a> properly. The official SliTaz Mercurial 
    1.52 -repositories are provided by a CGI/Python web interface - a solution best suited to a robust, reliable 
    1.53 -combination. To install the <code>python</code> package with tazpkg:
    1.54 +repositories are provided by a CGI/Python web interface - a solution best suited to a product that's
    1.55 +reliable and robust. To install the <code>python</code> package with tazpkg:
    1.56  </p>
    1.57  <pre>
    1.58   # tazpkg get-install python
    1.59 @@ -238,10 +238,8 @@
    1.60  The Ruby programming language is available as an installable package. Ruby is 
    1.61  (to quote the official website):- "A dynamic, open source programming language with a focus on simplicity 
    1.62  and productivity. It has an elegant syntax that is natural to read and easy to write".
    1.63 -</p>
    1.64 -<p>
    1.65 -Ruby supports Object-Orientated Programming (OOP), automatic memory management and is portable. 
    1.66 -To install Ruby:
    1.67 +Ruby handles exceptions, supports Object-Orientated Programming (OOP), automatic memory management and is 
    1.68 +highly portable. To install the <code>ruby</code> package with tazpkg:
    1.69  </p>
    1.70  <pre>
    1.71   # tazpkg get-install ruby
     2.1 --- a/en/doc/manuals/tazwok.en.html	Sat Jun 14 14:48:17 2008 +0000
     2.2 +++ b/en/doc/manuals/tazwok.en.html	Sun Jun 15 13:46:00 2008 +0000
     2.3 @@ -1,8 +1,8 @@
     2.4 -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     2.5 -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><title>Tazwok Manual</title>
     2.6 -
     2.7 -
     2.8 -	
     2.9 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    2.10 +	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    2.11 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    2.12 +<head>
    2.13 +	<title>Tazwok Manual</title>
    2.14  	<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
    2.15  	<meta name="description" content="" />
    2.16  	<meta name="expires" content="never" />
    2.17 @@ -19,7 +19,9 @@
    2.18  		border: 1px inset #333333; }
    2.19  	code { font-size: 100%; color: #669900; background: transparent; }
    2.20  	hr { color: white; background: white; height: 1px; border: 0; }
    2.21 -	--></style></head><body bgcolor="#ffffff">
    2.22 +	--></style>
    2.23 +</head>
    2.24 +<body bgcolor="#ffffff">
    2.25  <div id="header">
    2.26  <h1><font color="#3e1220">Tazwok Manual</font></h1>
    2.27  </div>
    2.28 @@ -179,4 +181,5 @@
    2.29  <!-- End content -->
    2.30  </div>
    2.31  
    2.32 -</body></html>
    2.33 +</body>
    2.34 +</html>