From 4e25407e25874094702065276c5bc9bd38364093 Mon Sep 17 00:00:00 2001 From: Bill Fenner Date: Mon, 4 Jun 2007 13:54:29 +0000 Subject: [PATCH] Use python module instead of file path to settings file. Switch back to using a temp file, since unflatten/gvpr don't like taking input straight from the while loop. - Legacy-Id: 226 --- ietf/bin/graphall | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ietf/bin/graphall b/ietf/bin/graphall index ee512ec1d..1c6582756 100755 --- a/ietf/bin/graphall +++ b/ietf/bin/graphall @@ -5,7 +5,7 @@ # PYTHONPATH=`dirname $PWD` export PYTHONPATH -DJANGO_SETTINGS_MODULE=ietf/settings +DJANGO_SETTINGS_MODULE=ietf.settings export DJANGO_SETTINGS_MODULE for d in * do @@ -13,7 +13,8 @@ do then python modelviz.py $d fi -done | unflatten -f -l 10 | gvpr -c ' +done > models-base.dot +unflatten -f -l 10 models-base.dot | gvpr -c ' BEG_G { node_t title = node($G, "title"); title.shape="parallelogram";