No subject


Thu May 20 18:13:08 BST 2010


'.info' files in the doc/en/_build/texinfo/* directories.

Note that until we fixed the references in our docs, we can't produce
valid links in the '.info' files.

Apart from that (however significant that is :), all the other markups
used in the bzr documentation have been implemented.

The missing ones shouldn't be hard to implement either.

Feedback and patches welcome !

         Vincent


--=-=-=
Content-Type: text/x-sh
Content-Disposition: inline; filename=do.sh

#!/bin/bash
# This script automates producing the '.info' files from the .texi ones.
# It should be run from the top-level bzr src directory

# Using makeinfo --force until the references are fixed
MAKEINFO='makeinfo --force'
cd doc/en
DIRS="admin-guide mini-tutorial quick-reference release-notes tutorials upgrade-guide user-guide user-reference whats-new"
for d in $DIRS ; do
    (
        echo "Running makeinfo in _build/texinfo/$d"
        cd _build/texinfo/$d
        ${MAKEINFO} *.texi
    )
done

--=-=-=--



More information about the bazaar mailing list