~ubuntu-branches/debian/sid/resource-agents/sid

« back to all changes in this revision

Viewing changes to doc/man/mkappendix.sh

  • Committer: Package Import Robot
  • Author(s): Martin Loschwitz
  • Date: 2012-10-09 11:16:59 UTC
  • mfrom: (3.1.1)
  • Revision ID: package-import@ubuntu.com-20121009111659-jrcwfqskcbh0iuio
Tags: 1:3.9.3+git20121009-1
* New upstream version
* debian/patches/01_docbook_patch.patch: Refactored for new release
* debian/patches/02_spelling_fixes.patch.new: Refatored for new release
* debian/control: Bumped Standards-Version to 3.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
cat <<EOF
 
4
<?xml version='1.0' encoding='utf-8' ?>
 
5
<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
 
6
<appendix id="ap-ra-man-pages">
 
7
  <title>Resource agent manual pages</title>
 
8
EOF
 
9
 
 
10
for manpage in `printf "%s\n" $@ | sort -f`; do
 
11
    cat <<EOF
 
12
  <xi:include href="./$manpage" xmlns:xi="http://www.w3.org/2001/XInclude"/>
 
13
EOF
 
14
done
 
15
 
 
16
cat <<EOF
 
17
</appendix>
 
18
EOF