Blame Automation/Modules/Render/Docbook/docbook_setConversionText.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# svg_convertToText.sh -- This function takes the XHTML file produced
Alain Reguera Delgado 8f60cb
# by docbook_setConversionXhtml and produces one plain-text file (i.e.,
Alain Reguera Delgado 8f60cb
# without markup inside).
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 8f60cb
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 8f60cb
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 8f60cb
# your option) any later version.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 8f60cb
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 8f60cb
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 8f60cb
# General Public License for more details.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 8f60cb
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 8f60cb
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
# $Id$
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
function docbook_setConversionText {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify existence of HTML file. If `.xhtml' file doesn't exist
Alain Reguera Delgado 8f60cb
    # don't create text file. The `.xhtml' file is required in order
Alain Reguera Delgado 8f60cb
    # to create the `.txt' file.
Alain Reguera Delgado 8f60cb
    if [[ ! -f ${FILE}.xhtml ]];then
Alain Reguera Delgado 8f60cb
       return 
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    local COMMAND=''
Alain Reguera Delgado 8f60cb
    local OPTIONS=''
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define the command path to text-based web browser and options
Alain Reguera Delgado 8f60cb
    # used to produce plain-text files. Most of these programs have a
Alain Reguera Delgado 8f60cb
    # dump option that print formatted plain-text versions of given
Alain Reguera Delgado 8f60cb
    # HTML file to stdout.
Alain Reguera Delgado 8f60cb
    if [[ -x '/usr/bin/lynx' ]];then
Alain Reguera Delgado 8f60cb
        COMMAND='/usr/bin/lynx'
Alain Reguera Delgado 8f60cb
        OPTIONS='-force_html -nolist -width 70 -dump'
Alain Reguera Delgado 8f60cb
    elif [[ -x '/usr/bin/elinks' ]];then
Alain Reguera Delgado 8f60cb
        COMMAND='/usr/bin/elinks'
Alain Reguera Delgado 8f60cb
        OPTIONS='-force_html -no-numbering -no-references -width 70 -dump'
Alain Reguera Delgado 8f60cb
    elif [[ -x '/usr/bin/w3m' ]];then
Alain Reguera Delgado 8f60cb
        COMMAND='/usr/bin/w3m'
Alain Reguera Delgado 8f60cb
        OPTIONS='-dump'
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    if [[ $COMMAND != '' ]];then
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Print action message.
Alain Reguera Delgado 8f60cb
        if [[ -f ${FILE}.txt ]];then
Alain Reguera Delgado 8f60cb
            cli_printMessage "${FILE}.txt" --as-updating-line
Alain Reguera Delgado 8f60cb
        else
Alain Reguera Delgado 8f60cb
            cli_printMessage "${FILE}.txt" --as-creating-line
Alain Reguera Delgado 8f60cb
        fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Convert from HTML to plain-text without markup.
Alain Reguera Delgado 8f60cb
        ${COMMAND} ${OPTIONS} ${FILE}.xhtml > ${FILE}.txt
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    else
Alain Reguera Delgado 8f60cb
        cli_printMessage "`gettext "No way to convert from XHTML to plain-text found."`" --as-error-line
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}