fb9dfe0900
It's now app-support, the file was renamed. Follow rename for syncing of files. Change-Id: I21299e9a477396b58f808859fc2a7063e681e140
61 lines
1.5 KiB
Bash
Executable File
61 lines
1.5 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.
|
|
|
|
PROJECT_DIR=$1
|
|
|
|
if [ -z "$PROJECT_DIR" ] ; then
|
|
echo "Usage: $0 PROJECT_DIR"
|
|
exit 1
|
|
fi
|
|
|
|
function copy_rst_trans {
|
|
target=$1
|
|
# Copy over some RST files
|
|
mkdir -p $PROJECT_DIR/$target/source/locale
|
|
for lang in ja ; do
|
|
TARGET=$PROJECT_DIR/$target/source/locale/$lang/LC_MESSAGES
|
|
mkdir -p $TARGET
|
|
cp doc/common/source/locale/$lang/LC_MESSAGES/common.po \
|
|
$TARGET
|
|
done
|
|
(cd $PROJECT_DIR; git add $target/source/locale/)
|
|
}
|
|
|
|
function copy_rst {
|
|
target=$1
|
|
# Copy over some RST files
|
|
mkdir -p $PROJECT_DIR/$target
|
|
|
|
for filename in app-support.rst conventions.rst glossary.rst; do
|
|
cp doc/common/$filename $PROJECT_DIR/$target
|
|
done
|
|
(cd $PROJECT_DIR; git add $target)
|
|
}
|
|
|
|
|
|
case "$PROJECT_DIR" in
|
|
api-site)
|
|
copy_rst common
|
|
copy_rst_trans common
|
|
;;
|
|
security-doc)
|
|
copy_rst common
|
|
copy_rst_trans common
|
|
;;
|
|
*)
|
|
echo "$PROJECT_DIR not handled"
|
|
exit 1
|
|
;;
|
|
esac
|