mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-30 19:43:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			461 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			461 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| set -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
 |