slitaz-base-files rev 166

Edit docs
author Paul Issott <paul@slitaz.org>
date Sat May 12 21:08:08 2012 +0100 (2012-05-12)
parents 36f0fc63720c
children 1db99ad848a8
files doc/httphelper.txt doc/libpkg.txt doc/libtaz.txt rootfs/etc/slitaz/slitaz.conf rootfs/lib/libtaz.sh
line diff
     1.1 --- a/doc/httphelper.txt	Fri May 11 21:24:32 2012 -0500
     1.2 +++ b/doc/httphelper.txt	Sat May 12 21:08:08 2012 +0100
     1.3 @@ -4,8 +4,8 @@
     1.4  	function
     1.5  
     1.6  DESCRIPTION
     1.7 -	Httphelper is a CGI SHell helper providing PHP a like syntax and
     1.8 -	usefull functions to encode or crypt strings. Httphelper let you
     1.9 +	Httphelper is a CGI SHell helper providing PHP-like syntax and
    1.10 +	useful functions to encode or encrypt strings. Httphelper lets you
    1.11  	easily parse QUERY_STRING and work on any webserver supporting CGI.
    1.12  	
    1.13  FUNCTIONS
    1.14 @@ -31,5 +31,5 @@
    1.15  		echo "Input name has a value: $value"
    1.16  	fi
    1.17  	
    1.18 -AUTHOR
    1.19 +AUTHORS
    1.20  	Written by Pascal Bellard and Christophe Lincoln
     2.1 --- a/doc/libpkg.txt	Fri May 11 21:24:32 2012 -0500
     2.2 +++ b/doc/libpkg.txt	Sat May 12 21:08:08 2012 +0100
     2.3 @@ -4,8 +4,8 @@
     2.4  	function
     2.5  
     2.6  DESCRIPTION
     2.7 -	Libpkg provide base functions to handle SliTaz Packages archives and
     2.8 -	receipt. It is used by Spk, the Cookutils and all tools dealing with
     2.9 +	Libpkg provides base functions to handle SliTaz Packages archives and
    2.10 +	receipts. It is used by Spk, the Cookutils and all tools dealing with
    2.11  	packages and receipts.
    2.12  
    2.13  FUNCTIONS
    2.14 @@ -16,6 +16,6 @@
    2.15  
    2.16  OPTIONS
    2.17  
    2.18 -AUTHOR
    2.19 +AUTHORS
    2.20  	Written by Christophe Lincoln and Christian Mesh
    2.21  
     3.1 --- a/doc/libtaz.txt	Fri May 11 21:24:32 2012 -0500
     3.2 +++ b/doc/libtaz.txt	Sat May 12 21:08:08 2012 +0100
     3.3 @@ -5,9 +5,9 @@
     3.4  
     3.5  DESCRIPTION
     3.6  	LibTaz is the base SliTaz SHell library used by almost all tools and
     3.7 -	utilities. It provide common SHell script functions, parse the cmdline
     3.8 +	utilities. It provides common SHell script functions, parses the cmdline
     3.9  	options and store values in a variable. The output messages can be
    3.10 -	formated for raw/text, gtk, html and by default they are formated for
    3.11 +	formatted for raw/text, gtk, html and by default they are formatted for
    3.12  	a standard terminal supporting colors. LibTaz is in the directory
    3.13  	/lib/libtaz.sh since it is used when /usr may not be mounted.
    3.14  
    3.15 @@ -15,10 +15,10 @@
    3.16  	status             Return command status [Done|Failed]
    3.17  	separator          Display a line separator
    3.18  	newline            Echo a new line if gettext or echo -n is used
    3.19 -	boldify [string]   Usae bold font for term, html or GTK output
    3.20 -	indent             Ident text in term mode
    3.21 +	boldify [string]   Use a bold font for term, html or GTK output
    3.22 +	indent             Indent text in term mode
    3.23  	check_root         Check if user is logged as root
    3.24 -	confirm            Read anser to confirm an action
    3.25 +	confirm            Read answer to confirm an action
    3.26  	log [string]       Log activity, $activity must be set
    3.27  
    3.28  OPTIONS
    3.29 @@ -29,6 +29,6 @@
    3.30  	log "Message"
    3.31  	check_root
    3.32  
    3.33 -AUTHOR
    3.34 +AUTHORS
    3.35  	Written by Christophe Lincoln
    3.36  
     4.1 --- a/rootfs/etc/slitaz/slitaz.conf	Fri May 11 21:24:32 2012 -0500
     4.2 +++ b/rootfs/etc/slitaz/slitaz.conf	Sat May 12 21:08:08 2012 +0100
     4.3 @@ -54,7 +54,7 @@
     4.4  non-free"
     4.5  
     4.6  #
     4.7 -# OLD variables for compatibility purpose.
     4.8 +# OLD variables for compatibility purposes.
     4.9  #
    4.10  
    4.11  SLITAZ_VERSION="$SLITAZ_RELEASE"
     5.1 --- a/rootfs/lib/libtaz.sh	Fri May 11 21:24:32 2012 -0500
     5.2 +++ b/rootfs/lib/libtaz.sh	Sat May 12 21:08:08 2012 +0100
     5.3 @@ -3,7 +3,7 @@
     5.4  # SliTaz Base functions used from boot scripts to end user tools. Use
     5.5  # gettext and not echo for messages. Keep output suitable for GTK boxes
     5.6  # and Ncurses dialog. LibTaz should not depend on any configuration file.
     5.7 -# No bloated code here, function must be used by at least 3-4 tools.
     5.8 +# No bloated code here, functions must be used by at least 3-4 tools.
     5.9  #
    5.10  # Documentation: man libtaz or /usr/share/doc/slitaz/libtaz.txt
    5.11  #