source: other-projects/gti/translation_status.sh@ 29457

Last change on this file since 29457 was 29414, checked in by ak19, 9 years ago

Add the greenstone3 module to the daily check for translations

  • Property svn:executable set to *
File size: 2.2 KB
Line 
1#! /bin/bash
2
3# This script makes a report of any language files that have been modified via the online GTI,
4# and sends off an email containing this report if any have been modified.
5# Although it works in local GS2 installations as well, this file needs to live in the top-level
6# of the GTI greenstone installation on nzdl. It's called by the cronjobs running on nzdl.
7
8[email protected]
9
10# get rid of any old reports
11report=translation_status_report.txt
12if test -f $report; then
13 rm -f $report
14fi
15
16filelisting=("macros/*.dm" "perllib/strings*.properties" "gli/classes/dictionary*.properties" "gli/help/" "gsinstaller/LanguagePack*.properties" "greenstone3/*.properties")
17
18date=`date +"%d-%m-%y"`
19echo "Translation status report for date: $date" >> $report
20echo "Checked in ${filelisting[@]}" >> $report
21echo "---------------------------------------------" >> $report
22
23# store backup of Internal Field Separator value, then set IFS to newline for splitting on newline
24IFS_BAK=$IFS
25# IFS='\n' # splits on all whitespace
26IFS='
27'
28
29num_modified=0
30
31# in the lines returned from the diff, test for archives or newline
32# http://stackoverflow.com/questions/229551/string-contains-in-bash
33# http://stackoverflow.com/questions/10515964/counter-increment-in-bash-loop-not-working
34for file in ${filelisting[@]}; do
35 status=`svn status $file`
36 # "LINE: $file - status: $status"
37 # if the file's svn status is modified, write the filename out to the report
38 if [[ "$status" == *"M "* ]]; then
39 #echo "$file has been modified: $status"
40 echo $file >> $report
41 ((num_modified++))
42 fi
43done
44
45# restore IFS
46IFS=$IFS_BAK
47IFS_BAK=
48
49if [[ $num_modified == 0 ]]; then
50 echo "No files modified" >> $report
51else
52 echo "" >> $report
53 echo "The above $num_modified files were modified." >> $report
54fi
55
56echo "---------------------------------------------" >> $report
57
58# if no files are modified, we don't send email, otherwise we do
59if [[ $num_modified != 0 ]]; then
60# echo "Files were modified. Sending email..."
61 cat $report | mail -s 'GTI: '$num_modified' language file(s) on nzdl have been updated' $GREENSTONE_EMAIL
62 echo "Sent mail of report: $report"
63else
64 echo "No files modified. Not sending mail."
65fi
Note: See TracBrowser for help on using the repository browser.