Blame Scripts/Functions/Render/Backends/Docbook/docbook.sh
|
|
0690a8 |
#!/bin/bash
|
|
|
0690a8 |
#
|
|
|
dc613f |
# render_docbook.sh -- This function performs base-rendition action
|
|
|
dc613f |
# for DocBook files.
|
|
|
0690a8 |
#
|
|
|
3b0984 |
# Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
|
|
|
fa95b1 |
#
|
|
|
fa95b1 |
# This program is free software; you can redistribute it and/or modify
|
|
|
fa95b1 |
# it under the terms of the GNU General Public License as published by
|
|
|
dcd347 |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
|
dcd347 |
# your option) any later version.
|
|
|
fa95b1 |
#
|
|
|
74a058 |
# This program is distributed in the hope that it will be useful, but
|
|
|
74a058 |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
0690a8 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
0690a8 |
# General Public License for more details.
|
|
|
0690a8 |
#
|
|
|
0690a8 |
# You should have received a copy of the GNU General Public License
|
|
|
0690a8 |
# along with this program; if not, write to the Free Software
|
|
|
dcd347 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
7ac5a5 |
#
|
|
|
0690a8 |
# ----------------------------------------------------------------------
|
|
|
0690a8 |
# $Id$
|
|
|
0690a8 |
# ----------------------------------------------------------------------
|
|
|
0690a8 |
|
|
|
8c724e |
function docbook {
|
|
|
0690a8 |
|
|
|
8c724e |
${RENDER_BACKEND}_convertToXhtml
|
|
|
8c724e |
${RENDER_BACKEND}_convertToXhtmlChunk
|
|
|
8c724e |
${RENDER_BACKEND}_convertToPdf
|
|
|
889f31 |
|
|
|
0690a8 |
}
|