|
|
0690a8 |
#!/bin/bash
|
|
|
0690a8 |
#
|
|
|
2a9e3c |
# docbook.sh -- This function performs base-rendition actions for
|
|
|
2fa604 |
# 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 |
|
|
|
be62ec |
# Initialize absolute path to Xsl directory. This is the location
|
|
|
be62ec |
# where customization of XSL tranformations are stored in.
|
|
|
2fa604 |
DOCBOOK_STYLES_DIR="${RENDER_BACKEND_DIR}/$(cli_getRepoName ${RENDER_BACKEND} -d)/Styles"
|
|
|
be62ec |
|
|
|
8c724e |
${RENDER_BACKEND}_convertToXhtmlChunk
|
|
|
2a9e3c |
${RENDER_BACKEND}_convertToXhtml
|
|
|
2a9e3c |
|
|
|
2a9e3c |
# WARNING: There are some issues related to DocBook-to-PDF
|
|
|
2a9e3c |
# transformations that make the whole process not so "clean" as
|
|
|
2a9e3c |
# DocBook-to-XHTML transformation is. Based on this situation and
|
|
|
2a9e3c |
# the need of providing a clean output, PDF transformation is
|
|
|
2a9e3c |
# commented until these issues be corrected. If you have a release
|
|
|
2a9e3c |
# of CentOS greater than 5.5, uncomment this to see what happen.
|
|
|
2a9e3c |
#${RENDER_BACKEND}_convertToPdf
|
|
|
889f31 |
|
|
|
465bb1 |
# Perform backend post-rendition.
|
|
|
465bb1 |
${RENDER_BACKEND}_doPostActions
|
|
|
465bb1 |
|
|
|
465bb1 |
# Perform backend last-rendition.
|
|
|
465bb1 |
${RENDER_BACKEND}_doLastActions
|
|
|
465bb1 |
|
|
|
0690a8 |
}
|