Differences between revisions 1 and 2
Revision 1 as of 2010-11-16 06:51:16
Size: 120
Editor: ZoomQuiet
Comment:
Revision 2 as of 2010-11-16 07:13:45
Size: 2118
Editor: ZoomQuiet
Comment: demo mapping
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
 rankdir = LR;
 compound=true;
    graph [label="demo for mapping key pages in Hg wiki",
        labeljust="r",labelloc="b",center=1,
        ranksep=0.2,ratio=compress,
        rankdir=TB,
        ];
Line 7: Line 10:
 a->b;     node[fontsize=10.5,
        height=0.1,
        style=filled,fillcolor=snow,
        color=gray70,fontcolor=darkolivegreen,
        shape=plaintext,
        ];
Line 9: Line 17:
    edge [fontsize=9.0,fontcolor=dimgrey,
        color=dimgrey,arrowsize=0.5,arrowhead=vee,arrowtail=none,
        ];

    /*define elememts*/
    root [label="home",URL="http://mercurial.selenic.com/wiki/Mercurial"];
    use [label="for\nuser",shape=tab,URL="#"];
        guy [label="for\nself",shape=tab,URL="#"];
            tutor [label="Tutorial",URL="http://mercurial.selenic.com/wiki/Tutorial"];
            migrat [label="Migration",URL="http://mercurial.selenic.com/wiki/Migration"];
            getc [label="etc...",];
        pm [label="for\nteam",shape=tab,URL="#"];
            working [label="WorkingPractices",URL="http://mercurial.selenic.com/wiki/WorkingPractices"];
            corrupt [label="RepositoryCorruption",URL="http://mercurial.selenic.com/wiki/RepositoryCorruption"];
            petc [label="etc...",];
    dev [label="for\ndevelop",shape=tab,URL="http://mercurial.selenic.com/wiki/DeveloperInfo"];
        wext [label="WritingExtensions",URL="http://mercurial.selenic.com/wiki/WritingExtensions"];
        api [label="MercurialApi",URL="http://mercurial.selenic.com/wiki/MercurialApi"];
        detc [label="etc...",];
    news [label="ann",URL="http://mercurial.selenic.com/wiki/Mercurial/NewsItems"];
        host [label="Hosting",URL="http://mercurial.selenic.com/wiki/MercurialHosting"];
        slides [label="Presentations",URL="http://mercurial.selenic.com/wiki/Presentations"];
        netc [label="etc...",];
    
    /*define relations*/
    root->{use dev news};
    news->{host slides netc};
    use->{guy pm};
        guy->{tutor migrat getc};
        pm->{working corrupt petc};
    dev->{wext api detc};

ZoomQuiet/DotMap (last edited 2017-01-20 04:00:16 by timeless)