X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=DOCS%2Ftodo-builder.sh;h=9eb697114bbe60c348dd8f906d56a7eb6368e7cd;hp=0765d1e73706a4ffdd366dc1f502b5ae2e4d0302;hb=d897dae9f3b01f17fb59f2b96ba067b1a0f417b0;hpb=155f46e7464ead4e1e6e5441b68846823658ff3e diff --git a/DOCS/todo-builder.sh b/DOCS/todo-builder.sh old mode 100644 new mode 100755 index 0765d1e737..9eb697114b --- a/DOCS/todo-builder.sh +++ b/DOCS/todo-builder.sh @@ -8,9 +8,24 @@ if ! test -e "modules.php"; then exit 1 fi -echo "$0: Generating TODOs.txt..." -echo "### WARNING: THIS FILE IS AUTO-GENERATED BY $0 ###" > DOCS/TODOs.txt -echo "### DO NOT EDIT THIS FILE. ###" >> DOCS/TODOs.txt -find -type f -name "*.php" -exec grep -Hn "@TODO" {} \; >> DOCS/TODOs.txt +TODO=`dirname $0`/TODOs.txt + +echo "$0: Generating TODOs.txt ..." +echo "### WARNING: THIS FILE IS AUTO-GENERATED BY $0 (uid=$UID/user=$USER) ###" > $TODO +echo "### DO NOT EDIT THIS FILE. ###" >> $TODO +echo "$0: Searching for @TODO ..." +find -type f -name "*.php" -exec grep -Hin "@TODO" {} \; | sort >> $TODO +find -type f -name "*.tpl" -exec grep -Hin "@TODO" {} \; | sort >> $TODO +echo "### ### DEPRECATION FOLLOWS: ### ###" >> $TODO +echo "$0: Searching for @DEPRECATED ..." +find -type f -name "*.php" -exec grep -Hin "@DEPRECATED" {} \; | sort >> $TODO +find -type f -name "*.tpl" -exec grep -Hin "@DEPRECATED" {} \; | sort >> $TODO +echo "$0: Checking for template-warnings.log ..." +LOG=`dirname $0`/template-warnings.log +if test -e "$LOG"; then + echo "$0: Found a template-warnings.log, adding it..." + echo "### ### template-warnings.log follows: ### ###" >> $TODO + cat $LOG >> $TODO +fi echo "$0: Done." exit 0