cookutils diff README @ rev 261

mv cooker web to /var/www/cooker
author Christophe Lincoln <pankso@slitaz.org>
date Tue Jun 07 12:06:02 2011 +0200 (2011-06-07)
parents db0df9e1b946
children 779cbebd653e
line diff
     1.1 --- a/README	Sun May 29 21:00:54 2011 +0100
     1.2 +++ b/README	Tue Jun 07 12:06:02 2011 +0200
     1.3 @@ -68,7 +68,7 @@
     1.4  is not to have a bloated script so please Keep It Short and Simple.
     1.5  
     1.6  Cmdline tool  : /usr/bin/cooker
     1.7 -Web interface : /var/www/cgi-bin/cooker
     1.8 +Web interface : /var/www/cooker
     1.9  Cache folder  : /home/slitaz/cache
    1.10  
    1.11  The web interface consists of one CGI script and one CSS style. Cook logs can
    1.12 @@ -120,10 +120,10 @@
    1.13      * Cook uses gettext for messages, not the cooker
    1.14      * If you add a feature, add also the doc to explain it
    1.15      * Use clean case with space before case end ;;
    1.16 -        case "$pkg" in
    1.17 -	      a) echo "Hello World" ;;
    1.18 -	      *) continue ;;
    1.19 -        esac
    1.20 +      case "$pkg" in
    1.21 +	    a) echo "Hello World" ;;
    1.22 +	    *) continue ;;
    1.23 +      esac
    1.24      * Make commands and options as short as possible
    1.25      * Think to log everything to help debug
    1.26      * Quote variables if used in a test: [ "$var" ]