From 1edfab9081460bb3cbe4d8ef7ddf6c752cbce089 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Dec 07 2010 17:27:52 +0000 Subject: Update documentation manual. --- diff --git a/Manuals/en/Html/Repository/repository_40.html b/Manuals/en/Html/Repository/repository_40.html index 6be5263..3ecc0ab 100644 --- a/Manuals/en/Html/Repository/repository_40.html +++ b/Manuals/en/Html/Repository/repository_40.html @@ -1141,23 +1141,23 @@ message and ends its execution.

Output absolute path to temporal file NAME.

-

cli_getTemporalFile uses `/tmp' directory as source -location to store temporal files, the `centos-art.sh' script -name, and a random identification string to let you run more than one -`centos-art.sh' script simultaneously on the same user session. -For example, due the following temporal file defintion: +

The cli_getTemporalFile function uses `/tmp' directory as +source location to store temporal files, the `centos-art.sh' +script name, and a random identification string to let you run more +than one `centos-art.sh' script simultaneously on the same user +session. For example, due the following temporal file defintion:

cli_getTemporalFile $FILE
 
-

If FILE name is `instance.svg' and unique random string is -`f16f7b51-ac12-4b7f-9e66-72df847f12de', the final temporal file, -built from previous temporal file definition, would be: +

If FILE name is `instance.svg' and the unique random string +is `f16f7b51-ac12-4b7f-9e66-72df847f12de', the final temporal +file, built from previous temporal file definition, would be:

/tmp/centos-art.sh-f16f7b51-ac12-4b7f-9e66-72df847f12de-instance.svg
 
-

When you use cli_getTemporalFile function to create temporal -files, be sure to remove temporal files created once you've ended up -with them. For example, consider the following construction: +

When you use the cli_getTemporalFile function to create +temporal files, be sure to remove temporal files created once you've +ended up with them. For example, consider the following construction:

for FILE in $FILES;do
 
@@ -1173,8 +1173,8 @@ with them.  For example, consider the following construction:
 
 done
 
-

Use cli_getTemporalFile function whenever you need to create -temporal files inside `centos-art.sh' script. +

Use the cli_getTemporalFile function whenever you need to +create temporal files inside `centos-art.sh' script.

diff --git a/Manuals/en/Info/Repository/repository.info.bz2 b/Manuals/en/Info/Repository/repository.info.bz2 index 8ba0d2a..cb5366d 100644 Binary files a/Manuals/en/Info/Repository/repository.info.bz2 and b/Manuals/en/Info/Repository/repository.info.bz2 differ diff --git a/Manuals/en/Plaintext/Repository/repository.txt b/Manuals/en/Plaintext/Repository/repository.txt index 31d2143..8734a41 100644 --- a/Manuals/en/Plaintext/Repository/repository.txt +++ b/Manuals/en/Plaintext/Repository/repository.txt @@ -3758,23 +3758,23 @@ global functions you can use inside `centos-art.sh' script. -- Function: cli_getTemporalFile NAME Output absolute path to temporal file NAME. - `cli_getTemporalFile' uses `/tmp' directory as source location to - store temporal files, the `centos-art.sh' script name, and a - random identification string to let you run more than one + The `cli_getTemporalFile' function uses `/tmp' directory as source + location to store temporal files, the `centos-art.sh' script name, + and a random identification string to let you run more than one `centos-art.sh' script simultaneously on the same user session. For example, due the following temporal file defintion: cli_getTemporalFile $FILE - If FILE name is `instance.svg' and unique random string is + If FILE name is `instance.svg' and the unique random string is `f16f7b51-ac12-4b7f-9e66-72df847f12de', the final temporal file, built from previous temporal file definition, would be: /tmp/centos-art.sh-f16f7b51-ac12-4b7f-9e66-72df847f12de-instance.svg - When you use `cli_getTemporalFile' function to create temporal + When you use the `cli_getTemporalFile' function to create temporal files, be sure to remove temporal files created once you've ended up with them. For example, consider the following construction: @@ -3793,7 +3793,7 @@ global functions you can use inside `centos-art.sh' script. done - Use `cli_getTemporalFile' function whenever you need to create + Use the `cli_getTemporalFile' function whenever you need to create temporal files inside `centos-art.sh' script. -- Function: cli_getThemeName diff --git a/Manuals/en/Texinfo/Repository/trunk/Scripts/Bash/Functions.texi b/Manuals/en/Texinfo/Repository/trunk/Scripts/Bash/Functions.texi index b23c8e9..47886f3 100644 --- a/Manuals/en/Texinfo/Repository/trunk/Scripts/Bash/Functions.texi +++ b/Manuals/en/Texinfo/Repository/trunk/Scripts/Bash/Functions.texi @@ -1008,27 +1008,27 @@ Use this function to perform verifications based a repository @defun cli_getTemporalFile @var{NAME} Output absolute path to temporal file @var{NAME}. -@code{cli_getTemporalFile} uses @file{/tmp} directory as source -location to store temporal files, the @file{centos-art.sh} script -name, and a random identification string to let you run more than one -@file{centos-art.sh} script simultaneously on the same user session. -For example, due the following temporal file defintion: +The @code{cli_getTemporalFile} function uses @file{/tmp} directory as +source location to store temporal files, the @file{centos-art.sh} +script name, and a random identification string to let you run more +than one @file{centos-art.sh} script simultaneously on the same user +session. For example, due the following temporal file defintion: @verbatim cli_getTemporalFile $FILE @end verbatim -If @var{FILE} name is @file{instance.svg} and unique random string is -@samp{f16f7b51-ac12-4b7f-9e66-72df847f12de}, the final temporal file, -built from previous temporal file definition, would be: +If @var{FILE} name is @file{instance.svg} and the unique random string +is @samp{f16f7b51-ac12-4b7f-9e66-72df847f12de}, the final temporal +file, built from previous temporal file definition, would be: @verbatim /tmp/centos-art.sh-f16f7b51-ac12-4b7f-9e66-72df847f12de-instance.svg @end verbatim -When you use @code{cli_getTemporalFile} function to create temporal -files, be sure to remove temporal files created once you've ended up -with them. For example, consider the following construction: +When you use the @code{cli_getTemporalFile} function to create +temporal files, be sure to remove temporal files created once you've +ended up with them. For example, consider the following construction: @verbatim for FILE in $FILES;do @@ -1046,8 +1046,8 @@ for FILE in $FILES;do done @end verbatim -Use @code{cli_getTemporalFile} function whenever you need to create -temporal files inside @file{centos-art.sh} script. +Use the @code{cli_getTemporalFile} function whenever you need to +create temporal files inside @file{centos-art.sh} script. @end defun @defun cli_getThemeName