summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2014-02-27 20:50:59 +0100
committerJan Holesovsky <kendy@collabora.com>2014-02-27 22:33:10 +0100
commite2af72985f071030357019e1ee220c46d178ee41 (patch)
tree9de7796c413635a11a4760a807c01a5c30964b94 /bin
parentdd66f826bb85892eeb36395ef320b1345cc00fac (diff)
images: Script to sanitize links.txt files.
Checks for the following mistakes: * swapped original and link * both exist, and are the same - git rm link then * both exist, and differ - warn about that, so that a human can check Change-Id: I6e0fc5c5b47fbb34aef8a1069c76720e9d6f8d5f
Diffstat (limited to 'bin')
-rwxr-xr-xbin/sanitize-image-links36
1 files changed, 36 insertions, 0 deletions
diff --git a/bin/sanitize-image-links b/bin/sanitize-image-links
new file mode 100755
index 000000000000..b0e950ccd5ea
--- /dev/null
+++ b/bin/sanitize-image-links
@@ -0,0 +1,36 @@
+#!/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 will reorder icon-themes/*/links.txt to the right order
+
+for I in icon-themes/*/links.txt ; do
+ D="${I%/links.txt}"
+ cat "$I" | while read LINK ORIG
+ do
+ if [ -f "$D/$LINK" -a -f "$D/$ORIG" ] ; then
+ if diff "$D/$LINK" "$D/$ORIG" >/dev/null 2>&1 ; then
+ echo "$I: removing $LINK from git: both $LINK and $ORIG are the same files" 1>&2
+ git rm "$D/$LINK" 1>/dev/null
+ echo $LINK $ORIG
+ else
+ echo "$I: link and orig differs, check the images, and remove manually: $LINK $ORIG" 1>&2
+ echo $LINK $ORIG
+ fi
+ elif [ -f "$D/$LINK" ] ; then
+ echo "$I: swapping to right order: $ORIG $LINK" 1>&2
+ echo $ORIG $LINK
+ else
+ echo $LINK $ORIG
+ fi
+ done > "$I-fixed"
+
+ mv "$I-fixed" "$I"
+done
+
+# vim: set expandtab sw=4 ts=4: