Files
zulip/tools/django-template-graph
Keegan McAllister 2bd9a6953c django-template-graph: Replace slashes with newlines
Makes the graph fit better on the screen.

(imported from commit 7d42caca478634143c6b291f47a4642acfdd1128)
2012-10-16 01:45:37 -04:00

20 lines
449 B
Bash
Executable File

#!/bin/bash -e
# Draws the Django template inheritance graph.
cd "$(dirname "$0")"/../templates
(
echo 'digraph {'
for t in $(find -name '*.html' -printf '%P\n'); do
echo "\"$t\";" | sed 's|/|\\n|g'
perl -lne 'print "\"'"$t"'\" -> \"$1\";" if m/{%\s*extends\s*"([^"]+)"/' "$t" \
| sed 's|/|\\n|g'
done
echo '}'
) > graph.dot
dot -Tsvg graph.dot > graph.svg
rm graph.dot
echo file://"$(pwd)"/graph.svg