Thread overview
import relationship diagrams?
Jun 17, 2006
kris
Jun 17, 2006
Carlos Santander
Jun 17, 2006
kris
Jun 17, 2006
BCS
Jun 20, 2006
Justin C Calvarese
Jun 21, 2006
BCS
Jun 21, 2006
kris
Jun 21, 2006
BCS
Jun 21, 2006
kris
Jun 22, 2006
jcc7
June 17, 2006
I recall there was a program released, ages ago, that generated a nice diagram of import relationships between a set of mudules ... does anyone remember what that was called? Or know where it lives nowadays?

Thx
June 17, 2006
kris escribió:
> I recall there was a program released, ages ago, that generated a nice diagram of import relationships between a set of mudules ... does anyone remember what that was called? Or know where it lives nowadays?
> 
> Thx

The name was Dimple. The site is http://www.shfls.org/w/d/dimple/, but I don't know if it compiles anymore.

-- 
Carlos Santander Bernal
June 17, 2006
Carlos Santander wrote:
> kris escribió:
> 
>> I recall there was a program released, ages ago, that generated a nice diagram of import relationships between a set of mudules ... does anyone remember what that was called? Or know where it lives nowadays?
>>
>> Thx
> 
> 
> The name was Dimple. The site is http://www.shfls.org/w/d/dimple/, but I don't know if it compiles anymore.
> 

Thank you!
June 17, 2006
Carlos Santander wrote:
> kris escribió:
> 
>> I recall there was a program released, ages ago, that generated a nice diagram of import relationships between a set of mudules ... does anyone remember what that was called? Or know where it lives nowadays?
>>
>> Thx
> 
> 
> The name was Dimple. The site is http://www.shfls.org/w/d/dimple/, but I don't know if it compiles anymore.
> 
It compiled under .160, I didn't try linking yet (wrong mechine).
June 20, 2006
BCS wrote:
> Carlos Santander wrote:
>> kris escribió:
>>
>>> I recall there was a program released, ages ago, that generated a nice diagram of import relationships between a set of mudules ... does anyone remember what that was called? Or know where it lives nowadays?
>>>
>>> Thx
>>
>>
>> The name was Dimple. The site is http://www.shfls.org/w/d/dimple/, but I don't know if it compiles anymore.
>>
> It compiled under .160, I didn't try linking yet (wrong mechine).

I didn't run it through the ringer, but it seemed to work for me with a recent version of DMD (it might have been .160).

-- 
jcc7
June 21, 2006
Justin C Calvarese wrote:
> BCS wrote:
> 
>> Carlos Santander wrote:
>>
>>> kris escribió:
>>>
>>>> I recall there was a program released, ages ago, that generated a nice diagram of import relationships between a set of mudules ... does anyone remember what that was called? Or know where it lives nowadays?
>>>>
>>>> Thx
>>>
>>>
>>>
>>> The name was Dimple. The site is http://www.shfls.org/w/d/dimple/, but I don't know if it compiles anymore.
>>>
>> It compiled under .160, I didn't try linking yet (wrong mechine).
> 
> 
> I didn't run it through the ringer, but it seemed to work for me with a recent version of DMD (it might have been .160).
> 

What did you use for graphical display?
June 21, 2006
BCS wrote:
> Justin C Calvarese wrote:
> 
>> BCS wrote:
>>
>>> Carlos Santander wrote:
>>>
>>>> kris escribió:
>>>>
>>>>> I recall there was a program released, ages ago, that generated a nice diagram of import relationships between a set of mudules ... does anyone remember what that was called? Or know where it lives nowadays?
>>>>>
>>>>> Thx
>>>>
>>>>
>>>>
>>>>
>>>> The name was Dimple. The site is http://www.shfls.org/w/d/dimple/, but I don't know if it compiles anymore.
>>>>
>>> It compiled under .160, I didn't try linking yet (wrong mechine).
>>
>>
>>
>> I didn't run it through the ringer, but it seemed to work for me with a recent version of DMD (it might have been .160).
>>
> 
> What did you use for graphical display?

Dimple emits text files intended for use with the ATT Graphviz package: http://graphviz.org/
June 21, 2006
kris wrote:
> BCS wrote:
>>
>> What did you use for graphical display?
> 
> 
> Dimple emits text files intended for use with the ATT Graphviz package: http://graphviz.org/

Found that. That page is a maze. But then again, what should you expect from people that deal with relationship graphs for fun and profit.
June 21, 2006
BCS wrote:
> kris wrote:
> 
>> BCS wrote:
>>
>>>
>>> What did you use for graphical display?
>>
>>
>>
>> Dimple emits text files intended for use with the ATT Graphviz package: http://graphviz.org/
> 
> 
> Found that. That page is a maze. But then again, what should you expect from people that deal with relationship graphs for fun and profit.

lol!
June 22, 2006
In article <e7c992$k5r$1@digitaldaemon.com>, BCS says...
>
>Justin C Calvarese wrote:
>> BCS wrote:
>> 
>>> Carlos Santander wrote:
>>>
>>>> kris escribió:
>>>>
>>>>> I recall there was a program released, ages ago, that generated a nice diagram of import relationships between a set of mudules ... does anyone remember what that was called? Or know where it lives nowadays?
>>>>>
>>>>> Thx
>>>>
>>>>
>>>>
>>>> The name was Dimple. The site is http://www.shfls.org/w/d/dimple/, but I don't know if it compiles anymore.
>>>>
>>> It compiled under .160, I didn't try linking yet (wrong mechine).
>> 
>> 
>> I didn't run it through the ringer, but it seemed to work for me with a recent version of DMD (it might have been .160).
>> 
>
>What did you use for graphical display?

GraphViz (http://graphviz.org/).

Since the official webpage is a little out-of-date (the GraphViz link is wrong), I created a wiki page where D users could give each out hints on usage: http://www.prowiki.org/wiki4d/wiki.cgi?Dimple

jcc7