Admin/check_ml_headers
author wenzelm
Tue, 21 Jul 2009 01:03:18 +0200
changeset 32091 30e2ffbba718
parent 28504 7ad7d7d6df47
child 36859 51af1657263b
permissions -rwxr-xr-x
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;

#!/usr/bin/env bash
#
# $Id$
#
# check_ml_headers - check headers of *.ML files in Distribution for inconsistencies
#
# requires some GNU tools
#

ONLY_FILENAMES=1
if [ "$1" == "-o" ]
then
  ONLY_FILENAMES=""
fi

REPORT_EMPTY=""
if [ "$2" == "-e" ]
then
  REPORT_EMPTY=1
fi

ISABELLE_SRC="$(isabelle getenv -b ISABELLE_HOME)/src/"

for LOC in $(find "$ISABELLE_SRC" -name "*.ML")
do
  TITLE="$(head -n 1 "$LOC" | grep -Po '(?<=Title:)\s*\S+.ML' | grep -Po '\S+.ML')"
  FILELOC="${LOC:${#ISABELLE_SRC}}"
  if [ "$TITLE" != "$FILELOC" ]
  then
    if [ -n "$REPORT_EMPTY" -o -n "$TITLE" ]
    then
      if [ -n "$ONLY_FILENAMES" ]
      then
        echo "Inconsistency in $LOC: $TITLE"
      else
        echo "$LOC"
      fi
    fi
  fi
done