From b82afe6c34c459d87910d5272f1a6b7333c9f83a Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: May 24 2011 00:38:50 +0000 Subject: Rename tuneup_doXhtml to tuneup_xhtml. --- diff --git a/Scripts/Functions/Tuneup/tuneup_doXhtml.sh b/Scripts/Functions/Tuneup/tuneup_doXhtml.sh deleted file mode 100644 index d944d2c..0000000 --- a/Scripts/Functions/Tuneup/tuneup_doXhtml.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash -# -# tuneup_doXhtml.sh -- This function performs maintainance tasks for -# XHTML files. -# -# Copyright (C) 2009, 2010, 2011 The CentOS Project -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or (at -# your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -# -# ---------------------------------------------------------------------- -# $Id$ -# ---------------------------------------------------------------------- - -function tuneup_doXhtml { - - # Transforms html headings to make them accessible (e.g., through - # a table of contents). - tuneup_xhtml_doHeadings - -} diff --git a/Scripts/Functions/Tuneup/tuneup_xhtml.sh b/Scripts/Functions/Tuneup/tuneup_xhtml.sh new file mode 100644 index 0000000..7712a58 --- /dev/null +++ b/Scripts/Functions/Tuneup/tuneup_xhtml.sh @@ -0,0 +1,32 @@ +#!/bin/bash +# +# tuneup_xhtml.sh -- This function performs maintainance tasks for +# XHTML files. +# +# Copyright (C) 2009, 2010, 2011 The CentOS Project +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# +# ---------------------------------------------------------------------- +# $Id$ +# ---------------------------------------------------------------------- + +function tuneup_xhtml { + + # Transforms html headings to make them accessible (e.g., through + # a table of contents). + tuneup_xhtml_doHeadings + +}