X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=DOCS%2Ftodo-builder.sh;h=999c8e84a4d2b5847770941d71af113fa9ef957f;hb=f28e0b7c670860b68420a2b78c0aa2cc3838a1c6;hp=f059853f7c9e48f27dc396a5ae071097557ba262;hpb=c744215dba419b52b84291622179c5e3a6ab17e2;p=mailer.git diff --git a/DOCS/todo-builder.sh b/DOCS/todo-builder.sh index f059853f7c..999c8e84a4 100755 --- a/DOCS/todo-builder.sh +++ b/DOCS/todo-builder.sh @@ -16,10 +16,14 @@ 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} +find -type f -name "*.xml" -exec grep -Hin "@TODO" {} \; | sort >> ${TODO} +find -type f -name ".htaccess" -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} +find -type f -name "*.xml" -exec grep -Hin "@DEPRECATED" {} \; | sort >> ${TODO} +find -type f -name ".htaccess" -exec grep -Hin "@DEPRECATED" {} \; | sort >> ${TODO} echo "$0: Checking for template-warnings.log ..." LOG=`dirname $0`/template-warnings.log if test -e "${LOG}"; then