209763c0b1
Ubuntu uses mawk by default which does not know about the regex feature "{32}". Use "+" instead for a more portable regex. Change-Id: I9fd52437eb332dedc9bf977173beda93f984843f
48 lines
1.6 KiB
Bash
Executable File
48 lines
1.6 KiB
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# Copy files from trunk to named branch and replace all links from
|
|
# trunk with links to the branch
|
|
|
|
DOCNAME=$1
|
|
|
|
if [ -z "$DOCNAME" ] ; then
|
|
echo "usage $0 DOCNAME"
|
|
exit 1
|
|
fi
|
|
|
|
OPTS=""
|
|
# We need to build guides with all tags so that all strings get
|
|
# extracted.
|
|
if [ "$DOCNAME" = "user-guides" ] ; then
|
|
OPTS="-t user_only -t admin_only"
|
|
fi
|
|
|
|
# Build Glossary
|
|
tools/glossary2rst.py > doc/user-guides/source/glossary.rst
|
|
# First remove the old pot file, otherwise the new file will contain
|
|
# old references
|
|
rm -f doc/$DOCNAME/source/locale/$DOCNAME.pot
|
|
sphinx-build $OPTS -b gettext doc/$DOCNAME/source/ doc/$DOCNAME/source/locale/
|
|
|
|
# Take care of deleting all temporary files so that git add
|
|
# doc/$DOCNAME/source/locale will only add the single pot file.
|
|
# Remove UUIDs, those are not necessary and change too often
|
|
msgcat --sort-output doc/$DOCNAME/source/locale/*.pot | \
|
|
awk '$0 !~ /^\# [a-z0-9]+$/' > doc/$DOCNAME/source/$DOCNAME.pot
|
|
rm doc/$DOCNAME/source/locale/*.pot
|
|
rm -rf doc/$DOCNAME/source/locale/.doctrees/
|
|
mv doc/$DOCNAME/source/$DOCNAME.pot doc/$DOCNAME/source/locale/$DOCNAME.pot
|