Blame tcar-scripts-tuneup/Modules/Xhtml/xhtml.sh
|
Alain Reguera Delgado |
b29c5b |
#!/bin/bash
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# xhtml.sh -- This function standardizes maintainance tasks for
|
|
Alain Reguera Delgado |
b29c5b |
# HTML-like 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 {
|
|
Alain Reguera Delgado |
b29c5b |
|
|
Alain Reguera Delgado |
b29c5b |
xhtml_setToc
|
|
Alain Reguera Delgado |
b29c5b |
xhtml_setCleanUp
|
|
Alain Reguera Delgado |
b29c5b |
|
|
Alain Reguera Delgado |
b29c5b |
}
|