|
|
4c79b5 |
#!/bin/bash
|
|
|
4c79b5 |
#
|
|
|
86d472 |
# texinfo_searchNode.sh -- This function converts the documentation
|
|
|
86d472 |
# entry provided to `centos-art.sh' script command-line into a node
|
|
|
86d472 |
# and tries to read it from the manual's `.info' output file.
|
|
|
4c79b5 |
#
|
|
|
2fe9b7 |
# Copyright (C) 2009, 2010, 2011 The CentOS Project
|
|
|
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
|
|
|
4c79b5 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
4c79b5 |
# General Public License for more details.
|
|
|
4c79b5 |
#
|
|
|
4c79b5 |
# You should have received a copy of the GNU General Public License
|
|
|
4c79b5 |
# along with this program; if not, write to the Free Software
|
|
|
dcd347 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
7ac5a5 |
#
|
|
|
4c79b5 |
# ----------------------------------------------------------------------
|
|
|
418249 |
# $Id$
|
|
|
4c79b5 |
# ----------------------------------------------------------------------
|
|
|
4c79b5 |
|
|
|
993f6a |
function texinfo_searchNode {
|
|
|
4c79b5 |
|
|
|
86d472 |
# Verify documentation entry and, if it doesn't exist, prompt out
|
|
|
86d472 |
# its creation.
|
|
|
398b25 |
if [[ ! -f "$MANUAL_ENTRY" ]];then
|
|
|
0ca0ad |
${MANUAL_BACKEND}_editEntry
|
|
|
398b25 |
fi
|
|
|
398b25 |
|
|
|
86d472 |
# Verify manual output files and, if they don't exist, create
|
|
|
86d472 |
# them.
|
|
|
398b25 |
if [[ ! -f ${MANUAL_BASEFILE}.info.bz2 ]];then
|
|
|
0ca0ad |
${MANUAL_BACKEND}_updateOutputFiles
|
|
|
398b25 |
fi
|
|
|
398b25 |
|
|
|
40e4a4 |
# Print separator line.
|
|
|
40e4a4 |
cli_printMessage '-' --as-separator-line
|
|
|
40e4a4 |
|
|
|
edaa9d |
# Print action message.
|
|
|
edaa9d |
cli_printMessage "${MANUAL_BASEFILE}.info.bz2" --as-reading-line
|
|
|
edaa9d |
|
|
|
86d472 |
# Define manual node that will be read.
|
|
|
86d472 |
local MANUAL_NODE="$(${MANUAL_BACKEND}_getEntryNode "$MANUAL_ENTRY")"
|
|
|
86d472 |
|
|
|
86d472 |
# Verify manual node that will be read. When the manual name is
|
|
|
86d472 |
# the only value passed as documentation entry, then use the `Top'
|
|
|
86d472 |
# node as manual node to be read.
|
|
|
86d472 |
if [[ $MANUAL_NODE =~ $(${MANUAL_BACKEND}_getEntryNode "$MANUAL_NAME") ]];then
|
|
|
86d472 |
MANUAL_NODE='Top'
|
|
|
86d472 |
fi
|
|
|
86d472 |
|
|
|
86d472 |
# Use info reader to read the manual node.
|
|
|
86d472 |
info --node="${MANUAL_NODE}" --file="${MANUAL_BASEFILE}.info.bz2"
|
|
|
4c79b5 |
|
|
|
4c79b5 |
}
|