Skip to content

Commit

Permalink
Rename README files to consistent state
Browse files Browse the repository at this point in the history
  • Loading branch information
IanDarwin committed Nov 6, 2016
1 parent 0a33f44 commit c31c8a7
Show file tree
Hide file tree
Showing 110 changed files with 7 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 7 additions & 7 deletions mklist
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@

# Generate the included table for the master README file

README_1LINE_FILE=README.1line.txt
README_FILE=README.txt
FNAME_STATUS=STATUS.1line.txt

for d in [A-Z]*
do
if [ -d $d ]; then
BUILDS_WITH=""
if [ -f $d/${README_1LINE_FILE} ]; then
FUNCTION=$(cat $d/${README_1LINE_FILE})
if [ -f $d/${README_FILE} ]; then
FUNCTION=$(cat $d/${README_FILE})
if [ -f $d/${FNAME_STATUS} ]; then
NOTES=$(cat $d/${FNAME_STATUS})
NOTES=$(cat $d/${FNAME_STATUS} | sed 1q)
else
NOTES="-"
fi
if [ -f $d/.project ]; then BUILDS_WITH+=E; fi
if [ -f $d/pom.xml ]; then BUILDS_WITH+=M; else echo >&2 "$d has no POM"; fi
grep -q $d pom.xml || echo >&2 "$d not in master POM"
if [ -f $d/pom.xml ]; then BUILDS_WITH+=M; fi
if [ -f $d/build.gradle -o -f $d/app/build.gradle ]; then BUILDS_WITH+=G; fi
if [ -f $d/$d.iml -o -f $d/app/$d.iml ]; then BUILDS_WITH+=S; fi
if [ -s "$BUILDS_WITH" ]; then echo "$d has no build files!"; fi
echo '|' "link:https://github.com/IanDarwin/Android-Cookbook-Examples/tree/master/$d[$d]" '|' $BUILDS_WITH '|' $FUNCTION '|' ${NOTES}
else
echo >&2 "$d has no ${README_1LINE_FILE}"
echo >&2 "$d has no README file"
fi
fi
done |
Expand Down

0 comments on commit c31c8a7

Please sign in to comment.