~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/check-templates.sh

  • Committer: Jeroen Vermeulen
  • Date: 2011-09-26 06:30:07 UTC
  • mto: This revision was merged to the branch mainline in revision 14049.
  • Revision ID: jeroen.vermeulen@canonical.com-20110926063007-1fb5eelnidpnra9a
Fix lots of lint in recently-changed files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
LPDIR=lib/canonical/launchpad
9
9
REGISTRY="lib/canonical/launchpad/zcml/*.zcml lib/canonical/*.zcml
10
 
          lib/canonical/launchpad/*.zcml *.zcml 
 
10
          lib/canonical/launchpad/*.zcml *.zcml
11
11
          lib/zope/app/exception/browser/configure.zcml
12
12
          lib/zope/app/debugskin/configure.zcml
13
13
          lib/canonical/launchpad/webapp/*.zcml
15
15
 
16
16
MASTER_MACRO='metal:use-macro="context/@@main_template/master"'
17
17
 
18
 
for f in $LPDIR/templates/*.pt; do 
 
18
for f in $LPDIR/templates/*.pt; do
19
19
    base=`basename $f`
20
20
    clean=`echo $base | cut -d. -f1 | tr - _`
21
21
    if echo $base | grep -qa ^template-; then