2b2258 Update render module of centos-art.sh script.

Authored and Committed by Alain Reguera Delgado 10 years ago
18 files changed. 85 lines added. 106 lines removed.
Automation/Modules/Render/Modules/Directories/directories.sh
file modified
+2 -2
Automation/Modules/Render/Modules/Files/Modules/Archive/archive.sh
file modified
+2 -2
Automation/Modules/Render/Modules/Files/Modules/Asciidoc/Modules/Manpage/manpage.sh
file modified
+2 -2
Automation/Modules/Render/Modules/Files/Modules/Asciidoc/asciidoc.sh
file modified
+0 -6
Automation/Modules/Render/Modules/Files/Modules/Asciidoc/asciidoc_setBaseRendition.sh
file modified
+5 -0
Automation/Modules/Render/Modules/Files/Modules/Asciidoc/asciidoc_setBaseRenditionCommand.sh
file modified
+2 -1
Automation/Modules/Render/Modules/Files/Modules/Asciidoc/asciidoc_setFormatsRendition.sh
file modified
+1 -1
Automation/Modules/Render/Modules/Files/Modules/Asciidoc/asciidoc_setXhtmlRendition.sh
file modified
+8 -8
Automation/Modules/Render/Modules/Files/Modules/Compress/compress.sh
file modified
+1 -1
Automation/Modules/Render/Modules/Files/Modules/Images/images.sh
file modified
+4 -4
Automation/Modules/Render/Modules/Files/Modules/Palette/palette.sh
file modified
+6 -6
Automation/Modules/Render/Modules/Files/Modules/Svg/Modules/Extended/extended_setBaseRendition.sh
file modified
+6 -12
Automation/Modules/Render/Modules/Files/Modules/Svg/svg_setBaseRendition.sh
file modified
+5 -9
Automation/Modules/Render/Modules/Files/Modules/Svg/svg_setBrandInformation.sh
file modified
+1 -1
Automation/Modules/Render/Modules/Files/files.sh
file modified
+12 -37
Automation/Modules/Render/render.sh
file modified
+4 -0
Automation/Modules/Render/render_getOptions.sh
file modified
+6 -1
Automation/Modules/Render/render_setLocalizedXml.sh
file modified
+18 -13
    Update render module of centos-art.sh script.
    
    - Previously, render module was using the TARGET variable name to
      store the final location where files will be stored in. This update
      change the variable name from TARGET to RENDER_TARGET to make it
      clear it refers to render module.
    
    - Add missing tcar_checkRepoDirSources verification when assigning
      positional parameters.
    
    - Previously, when producing content through extended rendition, final
      files in English language are stored inside the Images directory and
      files in non-English languages are stored inside a language-specific
      directory inside the Images directory. This update uses the
      Final/${TCAR_SCRIPT_LANG_LC} directory structure for final files in
      both English and non-English languages.
    
    - Add --no-locale-dir option. This option let you control whether
      final content is produced inside language-specific directories or
      not. By default final content is stored inside language-specific
      directories.
    
    - Previously, the render_setLocalizedXml function was using SOURCES
      name variable instead of SOURCE variable name. This made the whole
      localization process to fail because no file was found for
      processing. This update changes the render_setLocalizedXml function
      to use SOURCE variable name instead of SOURCES.
    
    - Previously, the render_setLocalizedXml function didn't verify
      existence of the translation files it works with. This update
      changes render_setLocalizedXml to verify existence of translation
      files before processing them.
    
    - Previously, the render_setLocalizedXml function moved into
      directory holding localization files at the exact time of producing
      the localized xml with the intention of finding the files relatively
      referred inside the xml file. However those files aren't stored in
      the localziation directory but inside the final render location.
      This update changes the render_setLocalizedXml function to move into
      final render location instead of localization location.