X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=DOCS%2Ftodo-builder.sh;h=999c8e84a4d2b5847770941d71af113fa9ef957f;hb=2792616f907e10749a56dab6ed7fc3a632a1aa32;hp=0b4b568bee857aa0e9e5ec72d01d5956f752f33b;hpb=ebb5d93c1d0234fff9cf3c46690904174b3fd15d;p=mailer.git diff --git a/DOCS/todo-builder.sh b/DOCS/todo-builder.sh index 0b4b568bee..999c8e84a4 100755 --- a/DOCS/todo-builder.sh +++ b/DOCS/todo-builder.sh @@ -17,11 +17,13 @@ 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