5f643d Update centos-art.sh script's locale module.

Authored and Committed by Alain Reguera Delgado 10 years ago
24 files changed. 614 lines added. 47 lines removed.
Automation/Modules/Locale/Modules/Actions/Modules/Delete/delete.sh
file modified
+25 -0
Automation/Modules/Locale/Modules/Actions/Modules/Edit/edit.sh
file modified
+25 -0
Automation/Modules/Locale/Modules/Actions/Modules/Update/Modules/Asciidoc/asciidoc.sh
file modified
+27 -4
Automation/Modules/Locale/Modules/Actions/Modules/Update/Modules/Asciidoc/asciidoc_convertAsciidocToDocbook.sh
file modified
+27 -1
Automation/Modules/Locale/Modules/Actions/Modules/Update/Modules/Sh/sh.sh
file modified
+26 -1
Automation/Modules/Locale/Modules/Actions/Modules/Update/Modules/Svg/svg.sh
file modified
+27 -5
Automation/Modules/Locale/Modules/Actions/Modules/Update/Modules/Svg/svg_createSvgInstance.sh
file modified
+26 -0
Automation/Modules/Locale/Modules/Actions/Modules/Update/update.conf.sh
file modified
+25 -1
Automation/Modules/Locale/Modules/Actions/Modules/Update/update.sh
file modified
+25 -0
Automation/Modules/Locale/Modules/Actions/Modules/Update/update_convertPoToMo.sh
file modified
+25 -0
Automation/Modules/Locale/Modules/Actions/Modules/Update/update_convertPotToPo.sh
file modified
+26 -0
Automation/Modules/Locale/Modules/Actions/Modules/Update/update_convertXmlToPot.sh
file modified
+26 -1
Automation/Modules/Locale/Modules/Actions/Modules/Update/update_getCountryName.sh
file modified
+25 -0
Automation/Modules/Locale/Modules/Actions/Modules/Update/update_getLanguageName.sh
file modified
+25 -0
Automation/Modules/Locale/Modules/Actions/Modules/Update/update_setPoMetadata.sh
file modified
+25 -0
Automation/Modules/Locale/Modules/Actions/actions.conf.sh
file modified
+25 -0
Automation/Modules/Locale/Modules/Actions/actions.sh
file modified
+25 -0
Automation/Modules/Locale/Modules/Directory/directory.sh
file modified
+25 -0
Automation/Modules/Locale/Modules/Directory/directory_getConfiguration.sh
file modified
+26 -0
Automation/Modules/Locale/Modules/File/file.sh
file modified
+51 -1
Automation/Modules/Locale/Modules/File/file_getConfiguration.sh
file removed
-22
Automation/Modules/Locale/locale.conf.sh
file modified
+27 -2
Automation/Modules/Locale/locale.sh
file modified
+25 -0
Automation/Modules/Locale/locale_getOptions.sh
file modified
+25 -9
    Update centos-art.sh script's locale module.
    
    - Previously, script files do not have a top comment. This was with
      the intention of reduce the size of files. There were files that the
      top comment was larger than the code itself. Nevertheless, using the
      top comment grantee consistency along the script files making them
      visually connected, they provide a place for quick notes about what
      each specific file intend to do. The GNU License also says that:
    
        Cite: It is safest to attach them to the start of each source file
              to most effectively convey the exclusion of warranty; and
              each file should have at least the "copyright" line and a
              pointer to where the full notice is found.
    
      In this commit add the top comment back with function description,
      writer, copyright and license information in it.
    
    - Previously, asciidoc_convertAsciidocToDocbook was passing an empty
      value through --doctype option because RENDER_FLOW variable is not
      previously defined.  This commit removes the --doctype option
      altogether and leaves asciidoc to use its default value.
    
    - Previsouly, file.sh was poorly documented. Add comments to it.
    
    - Previsouly, update_convertXmlToPot was using a cat pipe xml2po
      construction. This is not necessary becase xml2po accepts a file for
      processing in its command line. This commit removes the cat pipe
      construction leaving just xml2po.