123ee8 Update centos-art.sh script.

Authored and Committed by areguera 11 years ago
44 files changed. 617 lines added. 243 lines removed.
Scripts/Bash/Functions/Commons/cli_checkRepoDirSource.sh
file modified
+10 -0
Scripts/Bash/Functions/Commons/cli_getConfigLines.sh
file modified
+1 -1
Scripts/Bash/Functions/Commons/cli_parseArgumentsReDef.sh
file modified
+6 -5
Scripts/Bash/Functions/Help/Texinfo/texinfo.sh
file modified
+1 -1
Scripts/Bash/Functions/Help/Texinfo/texinfo_checkEntrySrcDst.sh
file modified
+1 -1
Scripts/Bash/Functions/Help/Texinfo/texinfo_createChapter.sh
file modified
+17 -13
Scripts/Bash/Functions/Help/Texinfo/texinfo_createStructure.sh
file modified
+1 -1
Scripts/Bash/Functions/Help/Texinfo/texinfo_createStructureChapters.sh
file modified
+2 -6
Scripts/Bash/Functions/Help/Texinfo/texinfo_deleteCrossReferences.sh
file modified
+5 -5
Scripts/Bash/Functions/Help/Texinfo/texinfo_deleteEntry.sh
file modified
+0 -3
Scripts/Bash/Functions/Help/Texinfo/texinfo_deleteEntryChapter.sh
file modified
+11 -9
Scripts/Bash/Functions/Help/Texinfo/texinfo_deleteEntryManual.sh
file modified
+2 -5
Scripts/Bash/Functions/Help/Texinfo/texinfo_deleteEntrySection.sh
file modified
+4 -0
Scripts/Bash/Functions/Help/Texinfo/texinfo_editEntry.sh
file modified
+2 -2
Scripts/Bash/Functions/Help/Texinfo/texinfo_makeSeeAlso.sh
file modified
+3 -3
Scripts/Bash/Functions/Help/Texinfo/texinfo_restoreCrossReferences.sh
file modified
+2 -2
Scripts/Bash/Functions/Help/Texinfo/texinfo_updateChapterMenu.sh
file modified
+1 -1
Scripts/Bash/Functions/Help/Texinfo/texinfo_updateChapterNodes.sh
file modified
+2 -2
Scripts/Bash/Functions/Help/Texinfo/texinfo_updateLicenseLink.sh
file added
+54
Scripts/Bash/Functions/Help/Texinfo/texinfo_updateOutputFilePdf.sh
file modified
+6 -0
Scripts/Bash/Functions/Help/Texinfo/texinfo_updateOutputFileXhtml.sh
file modified
+5 -0
Scripts/Bash/Functions/Help/Texinfo/texinfo_updateOutputFiles.sh
file modified
+11 -3
Scripts/Bash/Functions/Help/Texinfo/texinfo_updateSectionMenu.sh
file modified
+3 -3
Scripts/Bash/Functions/Help/Texinfo/texinfo_updateSectionNodes.sh
file modified
+20 -17
Scripts/Bash/Functions/Help/Texinfo/texinfo_updateStructureSection.sh
file modified
+25 -25
Scripts/Bash/Functions/Help/help.sh
file modified
+1 -1
Scripts/Bash/Functions/Prepare/Config/bash_profile.conf
file modified
+0 -0
Scripts/Bash/Functions/Prepare/prepare_updateEnvironment.sh
file modified
+1 -1
Scripts/Bash/Functions/Tuneup/Sh/Config/topcomment.sed
file modified
+0 -0
Scripts/Bash/Functions/Tuneup/Svg/Config/metadata.sed
file modified
+0 -0
Scripts/Bash/Functions/Tuneup/Xhtml/Config/toc.awk
file modified
+0 -0
Scripts/Bash/Functions/Vcs/Git/git.sh
file modified
+0 -4
Scripts/Bash/Functions/Vcs/Git/git_commitRepoChanges.sh
file added
+153
Scripts/Bash/Functions/Vcs/Git/git_copyRepoFile.sh
file added
+52
Scripts/Bash/Functions/Vcs/Git/git_deleteRepoFile.sh
file added
+58
Scripts/Bash/Functions/Vcs/Git/git_getRepoStatus.sh
file added
+49
Scripts/Bash/Functions/Vcs/Git/git_isVersioned.sh
file added
+47
Scripts/Bash/Functions/Vcs/Git/git_mkRepoDirectory.sh
file added
+37
Scripts/Bash/Functions/Vcs/Subversion/subversion_commitRepoChanges.sh
file modified
+1 -1
Scripts/Bash/Functions/Vcs/Subversion/subversion_getOptions.sh
file removed
-116
Scripts/Bash/Functions/Vcs/Subversion/subversion_syncRepoChanges.sh
file modified
+1 -1
Scripts/Bash/Functions/Vcs/vcs_getOptions.sh
file modified
+5 -4
Scripts/Bash/centos-art.conf
file modified
+4 -1
Scripts/Bash/centos-art.sh
file modified
+13 -6
    Update centos-art.sh script.
    
     - Functions/Commons/cli_checkRepoDirSource.sh: Remove any dot from
       arguments passed to centos-art.sh script.
    
     - Functions/Commons/cli_getConfigLines.sh: Fix regular expression
       that matches variables inside configuration files. Consider spaces
       between variable and equal sign optionals.
    
     - Functions/Commons/cli_parseArgumentsReDef.sh: Use `-z' instead of
       `== ""' construction while testing empty value.
    
     - Functions/Help/Texinfo/: Add support for the following document
       structure:
    
        ${LANG}
            |-- Chapter
            |   |-- section-1.texinfo
            |   |-- section-2.texinfo
            |   `-- section-n.texinfo
            |-- Chapter-menu.texinfo
            |-- Chapter-nodes.texinfo
            |-- Chapter.texinfo
            |-- Licenses -> ${TCAR_WORKDIR}/Documentation/Models/Texinfo/Default/${LANG}/Licenses
            |-- Licenses-menu.texinfo -> ${TCAR_WORKDIR}/Documentation/Models/Texinfo/Default/${LANG}/Licenses-menu.texinfo
            |-- Licenses-nodes.texinfo -> ${TCAR_WORKDIR}/Documentation/Models/Texinfo/Default/${LANG}/Licenses-nodes.texinfo
            |-- Licenses.texinfo -> ${TCAR_WORKDIR}/Documentation/Models/Texinfo/Default/${LANG}/Licenses.texinfo
            |-- tcar-fs-index.texinfo
            |-- tcar-fs-menu.texinfo
            |-- tcar-fs-nodes.texinfo
            |-- tcar-fs.conf
            `-- tcar-fs.texinfo
    
     - Functions/Prepare/Config/bash_profile.conf: Fix sed translation.
       Remove slash from final translation.
    
     - Functions/Vcs/vcs_getOptions.sh: Rename option from `--get-status'
       to `--status'.
    
        
file modified
+4 -1
file modified
+13 -6