2015-05-12 09:22:46 -05:00
#! /bin/bash
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This script renames the most annoying abbreviations in Writer (and partially
# in the shared code too). Just run it in the source directory.
# sw only:
2015-11-16 05:42:04 -06:00
for I in "FrmFmt/FrameFormat" "Fmt/Format" "Cntnt/Content" "Txt/Text" "Tbl/Table" "GotoFld/GotoFormatField" "Fld/Field" "Ftn/Footnote" "Updt/Update" "Fml/Formula" "Hnt/Hint" "CurCrsr/CurrentCursor" "VisCrsr/VisibleCursor" "Crsr/Cursor" "CntFrm/ContentFrame" "Frm/Frame" "Stk/Stack"
2015-05-12 09:22:46 -05:00
do
S = " ${ I %/* } "
# change all except the filenames (in the .mk and in #include)
2015-05-13 04:27:23 -05:00
# also avoid numFmt (OOXML token) and other stuff that must stay verbatim
2015-11-25 15:49:32 -06:00
git grep -l " $S " sw/ | grep -v -e '\.mk' -e '/data/' -e '/testdocuments/' | xargs sed -i '/\(#include\|numFmt\|ForeignTxt\)/ !{ s/' " $I " '/g }'
2015-05-12 09:22:46 -05:00
done
# global:
for I in "SvxSwAutoFmtFlags/SvxSwAutoFormatFlags" "GetCharFmtName/GetCharFormatName" \
"SvxFmtBreakItem/SvxFormatBreakItem" "SvxFmtKeepItem/SvxFormatKeepItem" \
"SvxFmtSplitItem/SvxFormatSplitItem" "etTxtLeft/etTextLeft" \
"etTxtFirstLineOfst/etTextFirstLineOfst" "CntntProtected/ContentProtected" \
"etTxtColor/etTextColor" "ClearFldColor/ClearFieldColor" \
"etCntntProtect/etContentProtect" "etPropTxtFirstLineOfst/etPropTextFirstLineOfst" \
"etCharFmtName/etCharFormatName" "HasMergeFmtTbl/HasMergeFormatTable" \
"etMergeFmtIndex/etMergeFormatIndex" "bAFmtByInput/bAFormatByInput" \
"bAFmt/bAFormat" "IsTxtFmt/IsTextFormat" "BuildWhichTbl/BuildWhichTable" \
"etFld/etField" "IsAutoFmtByInput/IsAutoFormatByInput" \
"etAutoFmtByInput/etAutoFormatByInput" "etMacroTbl/etMacroTable" \
"SvxClipboardFmtItem/SvxClipboardFormatItem" "SwFlyFrmFmt/SwFlyFrameFormat" \
"etTxtSize/etTextSize"
do
S = " ${ I %/* } "
2015-05-12 09:36:13 -05:00
git grep -l " $S " | grep -v -e '\.mk' -e 'rename-sw-abbreviations.sh' | xargs sed -i " s/ $I /g "
2015-05-12 09:22:46 -05:00
done
2015-05-13 04:27:23 -05:00
# vim: set et sw=4 ts=4 textwidth=0: