##// END OF EJS Templates
docs: Make mod_wsgi description more clear and actionable
docs: Make mod_wsgi description more clear and actionable

File last commit:

r8550:52816813 default
r8793:e6c7d225 stable
Show More
run-all-cleanup
17 lines | 510 B | text/plain | TextLexer
Søren Løvborg
run-all-cleanup: fix incorrect interpreter...
r6023 #!/bin/sh
Mads Kiilerich
scripts: introduce scripts/run-all-cleanup - run this before committing to make sure some aspects of the coding style is maintained
r5848
# Convenience script for running various idempotent source code cleanup scripts
set -e
set -x
Mads Kiilerich
docs: describe, visualize, and verify internal code structure and layering...
r8550 hg files 'set:!binary()&grep("^#!.*python")' 'set:**.py' | xargs scripts/deps.py
dot -Tsvg deps.dot > deps.svg
Mads Kiilerich
scripts: introduce scripts/run-all-cleanup - run this before committing to make sure some aspects of the coding style is maintained
r5848 scripts/docs-headings.py
scripts/generate-ini.py
scripts/whitespacecleanup.sh
Mads Kiilerich
scripts: introduce source_format.py to fix up the module name in file headers
r8549 hg files 'set:!binary()&grep("^#!.*python")' 'set:**.py' | xargs scripts/source_format.py
Mads Kiilerich
cleanup: run pyflakes as a part of scripts/run-all-cleanup...
r8109
Mads Kiilerich
scripts: handle running with pending deleted files...
r8548 hg files 'set:!binary()&grep("^#!.*python")' 'set:**.py' | xargs scripts/pyflakes
Mads Kiilerich
scripts: make output from run-all-cleanup easier to parse...
r8164 echo "no blocking problems found by $0"