test/tools/doclint/tidy/util/tidy.sh

changeset 0
959103a6100f
child 2525
2eb010b6cb22
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/tools/doclint/tidy/util/tidy.sh	Wed Apr 27 01:34:52 2016 +0800
     1.3 @@ -0,0 +1,53 @@
     1.4 +#!/bin/bash
     1.5 +#
     1.6 +# Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
     1.7 +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8 +#
     1.9 +# This code is free software; you can redistribute it and/or modify it
    1.10 +# under the terms of the GNU General Public License version 2 only, as
    1.11 +# published by the Free Software Foundation.
    1.12 +#
    1.13 +# This code is distributed in the hope that it will be useful, but WITHOUT
    1.14 +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.15 +# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.16 +# version 2 for more details (a copy is included in the LICENSE file that
    1.17 +# accompanied this code).
    1.18 +#
    1.19 +# You should have received a copy of the GNU General Public License version
    1.20 +# 2 along with this work; if not, write to the Free Software Foundation,
    1.21 +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.22 +#
    1.23 +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.24 +# or visit www.oracle.com if you need additional information or have any
    1.25 +# questions.
    1.26 +#
    1.27 +
    1.28 +# Run the "tidy" program over the files in a directory.
    1.29 +# The "tidy" program must be on your PATH.
    1.30 +#
    1.31 +# Usage:
    1.32 +#   sh tidy.sh <dir>
    1.33 +#
    1.34 +# The "tidy" program will be run on each HTML file in <dir>,
    1.35 +# and the output placed in the corresponding location in a new
    1.36 +# directory <dir>.tidy.  The console output from running "tidy" will
    1.37 +# be saved in a corresponding file with an additional .tidy extension.
    1.38 +#
    1.39 +# Non-HTML files will be copied without modification from <dir> to
    1.40 +# <dir>.tidy, so that relative links within the directory tree are
    1.41 +# unaffected.
    1.42 +
    1.43 +dir=$1
    1.44 +odir=$dir.tidy
    1.45 +
    1.46 +( cd $dir ; find . -type f ) | \
    1.47 +    while read file ; do
    1.48 +        mkdir -p $odir/$(dirname $file)
    1.49 +        case $file in
    1.50 +            *.html )
    1.51 +                cat $dir/$file | tidy 1>$odir/$file 2>$odir/$file.tidy
    1.52 +                ;;
    1.53 +            * ) cp $dir/$file $odir/$file
    1.54 +                ;;
    1.55 +        esac
    1.56 +    done

mercurial