Changes between Version 6 and Version 7 of DjangoGraphviz


Ignore:
Timestamp:
Aug 6, 2006, 6:12:25 AM (18 years ago)
Author:
Simon Willison
Comment:

Fixed link formatting

Legend:

Unmodified
Added
Removed
Modified
  • DjangoGraphviz

    v6 v7  
    33Inspired by [http://www.hackdiary.com/archives/000093.html this nice hack by Matt Biddulph] I set out to create a similar thing for Django models. Below is an initial implementation, and here are some results generated with the OS X version of Graphviz:
    44
    5  * [http://cavedoni.com/2006/08/camera-001.dot generated dot file]: resulting image in [http://cavedoni.com/2006/08/camera-001.pdf PDF], [http://code.djangoproject.com/attachment/wiki/DjangoGraphviz/camera-001.png PNG]
    6  * [http://cavedoni.com/2006/08/mincer-001.dot generated dot file]: resulting image in [http://cavedoni.com/2006/08/mincer-001.pdf PDF], [http://code.djangoproject.com/attachment/wiki/DjangoGraphviz/mincer-001.png PNG]
     5 * [http://cavedoni.com/2006/08/camera-001.dot generated dot file]: resulting image in [http://cavedoni.com/2006/08/camera-001.pdf PDF],
     6{{{
     7#!html
     8<a href="http://code.djangoproject.com/attachment/wiki/DjangoGraphviz/camera-001.png">PNG</a>
     9}}}
     10 * [http://cavedoni.com/2006/08/mincer-001.dot generated dot file]: resulting image in [http://cavedoni.com/2006/08/mincer-001.pdf PDF],
     11{{{
     12#!html
     13<a href="http://code.djangoproject.com/attachment/wiki/DjangoGraphviz/mincer-001.png">PNG</a>
     14}}}
    715
    816You might also be interested in [http://www.exit66.com/diagram.zip this Django app by Andrew Barilla ] from which I borrowed some ideas, that displays the graphviz results directly from the web.
Back to Top