Return-Path: Mailing-List: contact user-help@ant.apache.org; run by ezmlm Delivered-To: mailing list user@ant.apache.org Received: (qmail 36887 invoked from network); 27 Feb 2003 14:27:03 -0000 Received: from oe12.law9.hotmail.com (HELO hotmail.com) (64.4.8.116) by daedalus.apache.org with SMTP; 27 Feb 2003 14:27:03 -0000 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 27 Feb 2003 06:27:04 -0800 X-Originating-IP: [213.41.80.50] From: "kriss" To: "Markus Dettori" , "Ant Users List" References: <026201c2de64$656f3d00$1d073e0a@phx00045> <027e01c2de66$acf93980$1d073e0a@phx00045> Subject: Re: xsl script to generate graphical representation of build.xml Date: Thu, 27 Feb 2003 15:27:03 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_018B_01C2DE74.ADE8E850" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: X-OriginalArrivalTime: 27 Feb 2003 14:27:04.0434 (UTC) FILETIME=[4CB1A520:01C2DE6C] X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N ------=_NextPart_000_018B_01C2DE74.ADE8E850 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Thanks Marco, Trying to answer your question, I saw a bug in my xsl, and I think it explain the misunderstood (and there is no more lightblue box). Legend is : - white box : normal target of the build file - lightgrey box : target of another build file, linked to a grey box : representation of a build file (name + directory) - normal arrow : link by the 'depends' in the target declaration - dotted arrow : link by an antcall inside the target. Hope it will be clearer and better, the new xsl file is joined. Kriss ----- Original Message ----- From: "Markus Dettori" To: "kriss" Sent: Thursday, February 27, 2003 2:46 PM Subject: Re: xsl script to generate graphical representation of build.xml > Hi Kriss, > > e.g. the lightblue frames, > > Marco > > > > ----- Original Message ----- > From: "kriss" > To: > Sent: Thursday, February 27, 2003 2:35 PM > Subject: Re: xsl script to generate graphical representation of build.xml > > > > Hi, > > > > Sorry, I didn't see what you want ... what other tree-elements do you mean > ? > > > > Kriss > > > > ----- Original Message ----- > > From: "Markus Dettori" > > To: "Ant Users List" > > Sent: Thursday, February 27, 2003 2:30 PM > > Subject: Re: xsl script to generate graphical representation of build.xml > > > > > > > > Hi, > > > > just for completeness ;-) > > Where can I find the description of other tree-elements and their > > representation. > > > > Marco > > > > > > ----- Original Message ----- > > From: kriss > > To: Ant Users List > > Sent: Thursday, February 27, 2003 9:04 AM > > Subject: xsl script to generate graphical representation of build.xml > > > > > > > > Hi, > > I found it very useful and enhanced it a little bit to manage two targets > : > > ant and antcall. > > a.. ant : new lightblue box to see the differences with dependences > > b.. antcall : new lightgray box for target, linked to grey box > > representing the buildfile (and dir) > > > > ------=_NextPart_000_018B_01C2DE74.ADE8E850 Content-Type: text/xml; name="ant2dot.xsl" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="ant2dot.xsl" digraph project { node [shape=3Dbox,fontname=3D"Arial",fontsize=3D"10"]; edge [fontname=3D"Arial",fontsize=3D"8"]; rankdir=3DLR; } "" [label=3D"\n",style=3Dbold]; "" [label=3D""]; " " [label=3D" = ",style=3Dfilled,color=3Dlightgrey]; "" -> " = "; " " = [label=3D"\ndir : ",style=3Dfilled,color=3Dgrey]; " " -> " "; "main " = [label=3D"main",style=3Dfilled,color=3Dlightgrey]; "" -> "main = "; " " = [label=3D"\ndir : ",style=3Dfilled,color=3Dgrey]; "main " -> " "; " " = [label=3D"",style=3Dfilled,color=3Dlightgrey]; "" -> " = "; "" [label=3D"\ndir : .",style=3Dfilled,color=3Dgrey]; " " -> = ""; "main " = [label=3D"main",style=3Dfilled,color=3Dlightgrey]; "" -> "main = "; "" [label=3D"",style=3Dfilled,color=3Dgrey]; "main " -> ""; " build.xml " = [label=3D" = ",style=3Dfilled,color=3Dlightgrey]; "" -> " build.xml = "; "build.xml = " [label=3D"build.xml\ndir : = ",style=3Dfilled,color=3Dgrey]; " build.xml " -> = "build.xml "; "main build.xml = " = [label=3D"main",style=3Dfilled,color=3Dlightgrey]; "" -> "main build.xml "; "build.xml = " [label=3D"build.xml\ndir : = ",style=3Dfilled,color=3Dgrey]; "main build.xml = " -> "build.xml "; " build.xml" [label=3D"",style=3Dfilled,color=3Dlightgrey]; "" -> " build.xml"; "build.xml" = [label=3D"build.xml\ndir : .",style=3Dfilled,color=3Dgrey]; " build.xml" -> "build.xml"; "main build.xml" = [label=3D"main",style=3Dfilled,color=3Dlightgrey]; "" -> "main = build.xml"; "build.xml" = [label=3D"build.xml",style=3Dfilled,color=3Dgrey]; "main build.xml" -> = "build.xml"; "" -> "" [style=3Ddotted]; "" -> ""; "" -> ""; ------=_NextPart_000_018B_01C2DE74.ADE8E850--