|
|
e20293 |
#!/bin/bash
|
|
|
e20293 |
#
|
|
|
e20293 |
# docbook_doLastActions.sh -- This function performs last-rendition
|
|
|
7c0014 |
# actions for DocBook files. These are the actions that take
|
|
|
7c0014 |
# base-rendition and post-rendition output as input to produce output
|
|
|
7c0014 |
# from it.
|
|
|
e20293 |
#
|
|
|
e20293 |
# Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
|
|
|
e20293 |
#
|
|
|
e20293 |
# This program is free software; you can redistribute it and/or modify
|
|
|
e20293 |
# it under the terms of the GNU General Public License as published by
|
|
|
e20293 |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
|
e20293 |
# your option) any later version.
|
|
|
e20293 |
#
|
|
|
e20293 |
# This program is distributed in the hope that it will be useful, but
|
|
|
e20293 |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
e20293 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
e20293 |
# General Public License for more details.
|
|
|
e20293 |
#
|
|
|
e20293 |
# You should have received a copy of the GNU General Public License
|
|
|
e20293 |
# along with this program; if not, write to the Free Software
|
|
|
e20293 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
e20293 |
#
|
|
|
e20293 |
# ----------------------------------------------------------------------
|
|
|
e20293 |
# $Id$
|
|
|
e20293 |
# ----------------------------------------------------------------------
|
|
|
e20293 |
|
|
|
e20293 |
function docbook_doLastActions {
|
|
|
e20293 |
|
|
|
e20293 |
# Presently, there is no last-rendition action for DocBook base
|
|
|
e20293 |
# rendition but the function should exist for consistency with
|
|
|
e20293 |
# other backends.
|
|
|
e20293 |
return
|
|
|
e20293 |
|
|
|
e20293 |
}
|