From 1afa3c53083b7cb8832b48bb6a6e7f9ecc1264ad Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: May 26 2011 14:25:23 +0000 Subject: Update `help' functionality: - Update texinfo function names to match their file names. --- diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_copyEntry.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_copyEntry.sh index e4f9dcd..20c29cb 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_copyEntry.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_copyEntry.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_copyEntry.sh -- This function copies documentation entries and +# texinfo_copyEntry.sh -- This function copies documentation entries and # updates documentation structure to reflect changes. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_copyEntry { +function texinfo_copyEntry { # Print separator line. cli_printMessage '-' --as-separator-line @@ -70,12 +70,12 @@ function help_texinfo_copyEntry { # Update menu and node definitions from manual sections to # reflect the changes. - help_texinfo_updateMenu - help_texinfo_updateNodes + texinfo_updateMenu + texinfo_updateNodes # Update cross reference definitions from manual to reflect # the changes. - help_texinfo_restoreCrossReferences + texinfo_restoreCrossReferences done diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_deleteCrossReferences.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_deleteCrossReferences.sh index 1bb3be5..bf3b4d6 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_deleteCrossReferences.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_deleteCrossReferences.sh @@ -1,9 +1,9 @@ #!/bin/bash # -# help_texinfo_deleteCrossReferences.sh -- This function looks inside +# texinfo_deleteCrossReferences.sh -- This function looks inside # texinfo source files, from section level on, and removes all cross # referece definitions related to a documentation entry. Use this -# function in coordination with help_texinfo_deleteEntry function, in order +# function in coordination with texinfo_deleteEntry function, in order # to keep cross reference information, inside the documentation # manual, syncronized. # @@ -27,7 +27,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_deleteCrossReferences { +function texinfo_deleteCrossReferences { local -a PATTERN local -a REPLACE diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_deleteEntry.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_deleteEntry.sh index 2b77017..140796e 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_deleteEntry.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_deleteEntry.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_deleteEntry.sh -- This function removes a documentation entry +# texinfo_deleteEntry.sh -- This function removes a documentation entry # from documentation directory structure. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_deleteEntry { +function texinfo_deleteEntry { # Print separator line. cli_printMessage '-' --as-separator-line @@ -94,16 +94,16 @@ function help_texinfo_deleteEntry { # Update menu and node definitions from manual sections to # reflect the changes. - help_texinfo_updateMenu "remove-entry" - help_texinfo_updateNodes + texinfo_updateMenu "remove-entry" + texinfo_updateNodes # Update cross reference definitions from manual to reflect # the changes. - help_texinfo_deleteCrossReferences + texinfo_deleteCrossReferences done # Rebuild output files to propagate recent changes. - help_texinfo_updateOutputFiles + texinfo_updateOutputFiles } diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_editEntry.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_editEntry.sh index 18ae4a4..312682d 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_editEntry.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_editEntry.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_editEntry.sh -- This function implements the edition flow of +# texinfo_editEntry.sh -- This function implements the edition flow of # documentation entries inside the working copy. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_editEntry { +function texinfo_editEntry { # Print separator line. cli_printMessage '-' --as-separator-line @@ -37,14 +37,14 @@ function help_texinfo_editEntry { cli_printMessage "`gettext "Do you want to continue?"`" --as-yesornorequest-line # Update manual chapter related files. - help_texinfo_updateChaptersFiles + texinfo_updateChaptersFiles # Update manual chapter related menu. - help_texinfo_updateChaptersMenu + texinfo_updateChaptersMenu # Update manual chapter related nodes (based on chapter # related menu). - help_texinfo_updateChaptersNodes + texinfo_updateChaptersNodes fi @@ -57,11 +57,11 @@ function help_texinfo_editEntry { cli_printMessage "`gettext "Do you want to continue?"`" --as-yesornorequest-line # Update chapter section related menu. - help_texinfo_updateMenu + texinfo_updateMenu # Update chapter section related nodes (based on chapter # section related menu). - help_texinfo_updateNodes + texinfo_updateNodes # Update old missing cross references. If for some reason a # documentation entry is removed by mistake, and that mistake @@ -69,7 +69,7 @@ function help_texinfo_editEntry { # into the repository, rebuild the missing cross reference # message to use the correct link to the documentation # section. - help_texinfo_restoreCrossReferences + texinfo_restoreCrossReferences else @@ -82,6 +82,6 @@ function help_texinfo_editEntry { eval $EDITOR $ENTRY # Rebuild output files to propagate recent changes. - help_texinfo_updateOutputFiles + texinfo_updateOutputFiles } diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_getEntry.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_getEntry.sh index 5b5fa00..53a4ca2 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_getEntry.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_getEntry.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_getEntry.sh -- This function builds a documentation entry based +# texinfo_getEntry.sh -- This function builds a documentation entry based # on a location specified. Location specification can be both action # value (ACTIONVAL) variable or a value passed as first positional # parameter. @@ -25,7 +25,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_getEntry { +function texinfo_getEntry { # Define variables as local to avoid conflicts outside. local ENTRY='' diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_getNode.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_getNode.sh index 1cdb4c2..6773769 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_getNode.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_getNode.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_getNode.sh -- This function cleans up the action value +# texinfo_getNode.sh -- This function cleans up the action value # (ACTIONVAL) directory to make a node name from it. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_getNode { +function texinfo_getNode { local NODE=$(echo "$ACTIONVAL" \ | sed -r "s!^${HOME}/artwork/!!" \ diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_makeSeeAlso.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_makeSeeAlso.sh index f687add..b2e6b6e 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_makeSeeAlso.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_makeSeeAlso.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_makeSeeAlso.sh -- This function creates an itemized list +# texinfo_makeSeeAlso.sh -- This function creates an itemized list # of links to refer parent documentation entries. This list of links # is expanded wherever the =TEXINFO_SEEALSO= translation marker be # placed in the documentation entry. @@ -25,7 +25,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_makeSeeAlso { +function texinfo_makeSeeAlso { local FILE="$1" local NODE="$2" diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_renameCrossReferences.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_renameCrossReferences.sh index b325ac8..aa7767d 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_renameCrossReferences.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_renameCrossReferences.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_renameCrossReferences.sh -- This function replaces a node +# texinfo_renameCrossReferences.sh -- This function replaces a node # pattern with a node replacement and updates cross-reference # definitions to reflect the changes. # @@ -24,7 +24,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_renameCrossReferences { +function texinfo_renameCrossReferences { local NODE='' local COUNT=1 @@ -65,6 +65,6 @@ function help_texinfo_renameCrossReferences { # source to target documentation entry, but they are still # commented. So, uncomment them restoring target documentation # entries. - help_texinfo_restoreCrossReferences "${ENTRY_DST}" + texinfo_restoreCrossReferences "${ENTRY_DST}" } diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_renameEntry.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_renameEntry.sh index c9ef509..43bf04e 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_renameEntry.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_renameEntry.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_renameEntry.sh -- This function renames documentation entries +# texinfo_renameEntry.sh -- This function renames documentation entries # and updates documentation structure to reflect changes. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,20 +23,20 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_renameEntry { +function texinfo_renameEntry { # Copy source documentation entry. - help_texinfo_copyEntry + texinfo_copyEntry # Delete source documentation entry. The source documentation # entry has been copied already, so to create the rename effect # delete it from repository filesystem. - help_texinfo_deleteEntry + texinfo_deleteEntry # At this point, source documentation entry has been removed and # all menu, nodes and cross-references have been commented. So, # replace commented menu, nodes and cross-reference information # from source to target documentation entry. - help_texinfo_renameCrossReferences + texinfo_renameCrossReferences } diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_restoreCrossReferences.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_restoreCrossReferences.sh index c454fa4..4de5b34 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_restoreCrossReferences.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_restoreCrossReferences.sh @@ -1,14 +1,14 @@ #!/bin/bash # -# help_texinfo_restoreCrossReferences.sh -- This function looks inside +# texinfo_restoreCrossReferences.sh -- This function looks inside # texinfo source files, from section level on, and restores any cross # reference related to a documentation entry. This function is used in # those cases where documentation entries are created/recreated to # documentation structure. It is a verification that looks for # matching documentation entries previously defined as removed by -# help_texinfo_deleteCrossReferences function. The -# help_texinfo_restoreCrossReferences function relays in the removed -# message format produced by help_texinfo_deleteCrossReferences +# texinfo_deleteCrossReferences function. The +# texinfo_restoreCrossReferences function relays in the removed +# message format produced by texinfo_deleteCrossReferences # function, in order to return them back into the link format. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -31,7 +31,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_restoreCrossReferences { +function texinfo_restoreCrossReferences { local -a PATTERN local -a REPLACE diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_searchIndex.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_searchIndex.sh index b8acbc6..b701660 100644 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_searchIndex.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_searchIndex.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_searchIndex.sh -- This function does an index search inside the +# texinfo_searchIndex.sh -- This function does an index search inside the # info document. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_searchIndex { +function texinfo_searchIndex { # Print action message. cli_printMessage "${MANUAL_BASEFILE}.info.bz2" --as-reading-line diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_searchNode.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_searchNode.sh index b47a44f..abbc91f 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_searchNode.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_searchNode.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_searchNode.sh -- This function does a node search inside the +# texinfo_searchNode.sh -- This function does a node search inside the # info document. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_searchNode { +function texinfo_searchNode { # Print action message. cli_printMessage "${MANUAL_BASEFILE}.info.bz2" --as-reading-line @@ -32,9 +32,9 @@ function help_texinfo_searchNode { # exits use the info reader to open the info file at the # specified node. Otherwise, ask the user for create it. if [[ -f "$ENTRY" ]];then - /usr/bin/info --node="Directories $(help_texinfo_getNode)" --file=${MANUAL_BASEFILE}.info.bz2 + /usr/bin/info --node="Directories $(texinfo_getNode)" --file=${MANUAL_BASEFILE}.info.bz2 else - help_texinfo_editEntry + texinfo_editEntry fi } diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersFiles.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersFiles.sh index ada585f..6a62ec5 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersFiles.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersFiles.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_updateChaptersFiles.sh -- This function updates chapter related +# texinfo_updateChaptersFiles.sh -- This function updates chapter related # files. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_updateChaptersFiles { +function texinfo_updateChaptersFiles { # Define chapter's generic structure. local CHAPTERBODY="\ diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersMenu.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersMenu.sh index fe57b9a..20bf963 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersMenu.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersMenu.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_updateChaptersMenu.sh -- This function updates chapter menu. +# texinfo_updateChaptersMenu.sh -- This function updates chapter menu. # # Copyright (C) 2009, 2010, 2011 The CentOS Project # @@ -22,7 +22,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_updateChaptersMenu { +function texinfo_updateChaptersMenu { local ACTION=$1 local MENUCHAPTERS='' diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersNodes.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersNodes.sh index f222f0b..a28f904 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersNodes.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersNodes.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_updateChaptersNodes.sh -- This function updates nodes of +# texinfo_updateChaptersNodes.sh -- This function updates nodes of # chapters based on menu of chapters. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_updateChaptersNodes { +function texinfo_updateChaptersNodes { # Build list "nodes of chapters" based on menu of chapters. local CHAPTERNODES=$(cat ${MANUAL_BASEFILE}-menu.texi \ diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateMenu.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateMenu.sh index a127c58..e0b9561 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateMenu.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateMenu.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_updateMenu.sh -- This function updates menu lines inside +# texinfo_updateMenu.sh -- This function updates menu lines inside # texinfo chapters. If this function is called with the # 'remove-entry' string as first argument, then the menu line related # to the entry being processed is removed. If this function is called @@ -29,7 +29,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_updateMenu { +function texinfo_updateMenu { # Specify which action to do inside chapter's menu. local ACTION="$1" @@ -55,7 +55,7 @@ function help_texinfo_updateMenu { ;; 'update-entry' | * ) # Add menu line to chapter's menu. This is the default - # behaivour if no argument is passed to help_texinfo_updateMenu + # behaivour if no argument is passed to texinfo_updateMenu # function. MENU="$MENU $MENULINE" diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateNodes.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateNodes.sh index 6b23b39..d3c7a22 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateNodes.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateNodes.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_updateNodes.sh -- This function updates chapter's nodes +# texinfo_updateNodes.sh -- This function updates chapter's nodes # definition using the chapter's menu as reference. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_updateNodes { +function texinfo_updateNodes { local TEXINFO_TEMPLATE='' diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileInfo.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileInfo.sh index 72320e9..8407d95 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileInfo.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileInfo.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_updateOutputFileInfo.sh -- This function exports +# texinfo_updateOutputFileInfo.sh -- This function exports # documentation manual to info format. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_updateOutputFileInfo { +function texinfo_updateOutputFileInfo { # Output action message. cli_printMessage "${MANUAL_BASEFILE}.info.bz2" --as-updating-line diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFilePdf.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFilePdf.sh index 9e714cd..e4e4b99 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFilePdf.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFilePdf.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_updateOutputFilePdf.sh -- This function exports documentation +# texinfo_updateOutputFilePdf.sh -- This function exports documentation # manual to PDF format. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_updateOutputFilePdf { +function texinfo_updateOutputFilePdf { # Output action message. cli_printMessage "${MANUAL_BASEFILE}.pdf" --as-updating-line diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFilePlaintext.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFilePlaintext.sh index 34342dd..8601513 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFilePlaintext.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFilePlaintext.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_updateOutputFilePlaintext.sh -- This function exports +# texinfo_updateOutputFilePlaintext.sh -- This function exports # documentation manual to plain-text format. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_updateOutputFilePlaintext { +function texinfo_updateOutputFilePlaintext { # Output action message. cli_printMessage "${MANUAL_BASEFILE}.txt.bz2" --as-updating-line diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileXhtml.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileXhtml.sh index a290757..168b5c4 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileXhtml.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileXhtml.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_updateOutputFileXhtml.sh -- This function exports +# texinfo_updateOutputFileXhtml.sh -- This function exports # documentation manual to HTML format. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_updateOutputFileXhtml { +function texinfo_updateOutputFileXhtml { # Output action message. cli_printMessage "${MANUAL_BASEFILE}.xhtml.tar.bz2" --as-updating-line diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileXml.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileXml.sh index 47dc32b..acdc47b 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileXml.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFileXml.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_updateOutputFileXml.sh -- This function exports documentation +# texinfo_updateOutputFileXml.sh -- This function exports documentation # manual to XML format. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_updateOutputFileXml { +function texinfo_updateOutputFileXml { # Print action message. cli_printMessage "${MANUAL_BASEFILE}.xml" --as-updating-line diff --git a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFiles.sh b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFiles.sh index e126bff..9e44c62 100755 --- a/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFiles.sh +++ b/Scripts/Functions/Help/Modules/Texinfo/texinfo_updateOutputFiles.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# help_texinfo_updateOutputFiles.sh -- This function exports documentation +# texinfo_updateOutputFiles.sh -- This function exports documentation # manual to different output formats. # # Copyright (C) 2009, 2010, 2011 The CentOS Project @@ -23,7 +23,7 @@ # $Id$ # ---------------------------------------------------------------------- -function help_texinfo_updateOutputFiles { +function texinfo_updateOutputFiles { # Print separator line. cli_printMessage '-' --as-separator-line @@ -33,11 +33,11 @@ function help_texinfo_updateOutputFiles { # paths incorrectly. pushd ${HOME}/artwork > /dev/null - help_texinfo_updateOutputFileInfo - help_texinfo_updateOutputFileXhtml - help_texinfo_updateOutputFileXml - help_texinfo_updateOutputFilePdf - help_texinfo_updateOutputFilePlaintext + texinfo_updateOutputFileInfo + texinfo_updateOutputFileXhtml + texinfo_updateOutputFileXml + texinfo_updateOutputFilePdf + texinfo_updateOutputFilePlaintext # Remove the working copy root directory from directory stack. popd > /dev/null