6650f1 Fix path to manuals in Help/help_getEntry.sh.

Authored and Committed by areguera 13 years ago
    Fix path to manuals in Help/help_getEntry.sh.
    
        
Scripts/Functions/Help/help_getEntry.sh CHANGED
@@ -45,17 +45,16 @@ function help_getEntry {
45
45
46
46
# Verify the entry relative path to find out which documentation
47
47
# manual we are acting on. As convenction, whatever documentation
48
- # entry you provide outside trunk/Identity/Manuals/ directory
49
- # structure is considered as you are documenting the repository
50
- # directory structure. Otherwise, if an entry inside
51
- # trunk/Identity/Manuals/ is provided, the directory structure
52
- # provided is used as default documentation manual for actions
53
- # like `--create' and `--update' to take place on. Other options
54
- # like `--edit', `--delete' and `--read' cannot be applied to
55
- # paths provided inside trunk/Identity/Manuals/ such actions need
48
+ # entry you provide outside trunk/Manuals/ directory structure is
49
+ # considered as you are documenting the repository directory
50
+ # structure. Otherwise, if an entry inside trunk/Manuals/ is
51
+ # provided, the directory structure provided is used as default
52
+ # documentation manual for actions like `--create' and `--update'
53
+ # to take place on. Other options like `--edit', `--delete' and
54
+ # `--read' cannot be applied to paths provided inside
55
+ # trunk/Manuals/ such actions need to be performed manually.
56
- # to be performed manually.
57
56
if [[ ${ENTRY} =~ '\.texi$' ]];then
58
- ENTRY=$(echo ${ENTRY} | sed 's!trunk/Manual/!!')
57
+ ENTRY=$(echo ${ENTRY} | sed 's!trunk/Manuals/!!')
59
58
else
60
59
ENTRY=$(dirname Directories/${ENTRY})/$(basename $LOCATION).texi
61
60
fi