|
Alain Reguera Delgado |
b29c5b |
#!/bin/bash
|
|
Alain Reguera Delgado |
b29c5b |
######################################################################
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# xhtml_setCleanUp.sh -- This function creates valid XHTML files
|
|
Alain Reguera Delgado |
b29c5b |
# from (probably malformed) HTML files.
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# Written by:
|
|
Alain Reguera Delgado |
b29c5b |
# * Alain Reguera Delgado <al@centos.org.cu>, 2009-2013
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# Copyright (C) 2009-2013 The CentOS Artwork SIG
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# This program is free software; you can redistribute it and/or modify
|
|
Alain Reguera Delgado |
b29c5b |
# it under the terms of the GNU General Public License as published by
|
|
Alain Reguera Delgado |
b29c5b |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
Alain Reguera Delgado |
b29c5b |
# your option) any later version.
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# This program is distributed in the hope that it will be useful, but
|
|
Alain Reguera Delgado |
b29c5b |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Alain Reguera Delgado |
b29c5b |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Alain Reguera Delgado |
b29c5b |
# General Public License for more details.
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# You should have received a copy of the GNU General Public License
|
|
Alain Reguera Delgado |
b29c5b |
# along with this program; if not, write to the Free Software
|
|
Alain Reguera Delgado |
b29c5b |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
######################################################################
|
|
Alain Reguera Delgado |
b29c5b |
|
|
Alain Reguera Delgado |
b29c5b |
function xhtml_setCleanUp {
|
|
Alain Reguera Delgado |
b29c5b |
|
|
Alain Reguera Delgado |
b29c5b |
grep ' /dev/null \
|
|
Alain Reguera Delgado |
b29c5b |
|| egrep '\-//W3C//DTD XHTML 1.0 (Strict|Transitional)//EN' ${FILE} > /dev/null
|
|
Alain Reguera Delgado |
b29c5b |
if [[ $? -eq 0 ]];then
|
|
Alain Reguera Delgado |
b29c5b |
/usr/bin/xmllint --xmlout --format --noblanks \
|
|
Alain Reguera Delgado |
b29c5b |
--nonet --nowarning \
|
|
Alain Reguera Delgado |
b29c5b |
--output ${FILE} ${FILE} 2&> /dev/null
|
|
Alain Reguera Delgado |
b29c5b |
else
|
|
Alain Reguera Delgado |
b29c5b |
/usr/bin/xmllint --html --xmlout --format --noblanks \
|
|
Alain Reguera Delgado |
b29c5b |
--nonet --nowarning \
|
|
Alain Reguera Delgado |
b29c5b |
--output ${FILE} ${FILE} 2&> /dev/null
|
|
Alain Reguera Delgado |
b29c5b |
fi
|
|
Alain Reguera Delgado |
b29c5b |
|
|
Alain Reguera Delgado |
b29c5b |
}
|