tinycm rev 22

Tiny edits
author Paul Issott <paul@slitaz.org>
date Sun Jan 05 08:51:16 2014 +0000 (2014-01-05)
parents 8dacfbea4e2f
children 558dc3b9d373
files content/wiki/en/help.txt index.cgi plugins/cloud/cloud.cgi
line diff
     1.1 --- a/content/wiki/en/help.txt	Sun Jan 05 03:37:54 2014 +0100
     1.2 +++ b/content/wiki/en/help.txt	Sun Jan 05 08:51:16 2014 +0000
     1.3 @@ -34,7 +34,7 @@
     1.4  [Help|en/help]
     1.5  </pre>
     1.6  <p>
     1.7 -You can also use a full URL. Thos time we separate the link name of the URL
     1.8 +You can also use a full URL. This time we separate the link name of the URL
     1.9  with an exclamation !
    1.10  </p>
    1.11  <pre>
     2.1 --- a/index.cgi	Sun Jan 05 03:37:54 2014 +0100
     2.2 +++ b/index.cgi	Sun Jan 05 08:51:16 2014 +0000
     2.3 @@ -535,7 +535,7 @@
     2.4  		else
     2.5  			public_people
     2.6  		fi
     2.7 -		# Each user can have personnal profile page
     2.8 +		# Each user can have personal profile page
     2.9  		if [ -f "$PEOPLE/$USER/profile.txt" ]; then
    2.10  			cat $PEOPLE/$USER/profile.txt | wiki_parser
    2.11  		fi
    2.12 @@ -613,7 +613,7 @@
    2.13  					gettext "Adding current content and committing"; echo
    2.14  					[ ! -f "$wiki/index.txt" ] && touch $wiki/$index.txt
    2.15  					hg add && hg commit -u "$NAME <$MAIL>" \
    2.16 -						-m "Initial commit with curent content"
    2.17 +						-m "Initial commit with current content"
    2.18  					echo '</pre>' && cd .. 
    2.19  				fi ;;
    2.20  		esac
     3.1 --- a/plugins/cloud/cloud.cgi	Sun Jan 05 03:37:54 2014 +0100
     3.2 +++ b/plugins/cloud/cloud.cgi	Sun Jan 05 08:51:16 2014 +0000
     3.3 @@ -1,6 +1,6 @@
     3.4  #!/bin/sh
     3.5  #
     3.6 -# TinyCM Plugin - Upload file to the Cloud
     3.7 +# TinyCM Plugin - Upload files to the Cloud
     3.8  #
     3.9  . /usr/lib/slitaz/httphelper
    3.10  
    3.11 @@ -20,7 +20,7 @@
    3.12  		# Sanity check
    3.13  		[ ! -d "$cloud" ] && mkdir -p ${cloud}
    3.14  		[ ! -f "$cloudlog" ] && touch ${cloudlog}
    3.15 -		# Move/Overwrite file to the cloud and set permissions
    3.16 +		# Move/Overwrite files to the cloud and set permissions
    3.17  		if ! mv -f ${tmpname} ${cloud}/${name}; then
    3.18  			echo "ERROR: ${name}" && exit 1
    3.19  		fi