]> granicus.if.org Git - graphviz/commitdiff
rename .dot -> .gv
authorellson <devnull@localhost>
Fri, 25 Jul 2008 18:54:58 +0000 (18:54 +0000)
committerellson <devnull@localhost>
Fri, 25 Jul 2008 18:54:58 +0000 (18:54 +0000)
tclpkg/gv/hello.gv [new file with mode: 0644]
tclpkg/gv/test.cs
tclpkg/gv/test.java
tclpkg/gv/test.lua
tclpkg/gv/test.php
tclpkg/gv/test.pl
tclpkg/gv/test.py
tclpkg/gv/test.rb
tclpkg/gv/test.tcl

diff --git a/tclpkg/gv/hello.gv b/tclpkg/gv/hello.gv
new file mode 100644 (file)
index 0000000..31df713
--- /dev/null
@@ -0,0 +1 @@
+digraph G {hello->world}
index 7babfc518f075157c0fbeec43d0e8da3283aa290..a57a02cc99d7832aa56691174187cb166c27aab9 100644 (file)
@@ -29,7 +29,7 @@ public class test {
        g = gv.readstring("digraph G {a->b}");
        gv.rm(g);
 
-       g = gv.read("hello.dot");
+       g = gv.read("hello.gv");
        gv.layout(g,"dot");
        gv.render(g,"png", "hello.png");
        gv.rm(g);
index 8fd5e6f316c9c2b380ab44f42cb606c86a01714f..bb641d7f2a21f95b7401c66ab0d0dfb52057e26c 100644 (file)
@@ -31,7 +31,7 @@ public class test {
        g = gv.readstring("digraph G {a->b}");
        gv.rm(g);
 
-       g = gv.read("hello.dot");
+       g = gv.read("hello.gv");
        gv.layout(g,"dot");
        gv.render(g,"png","hello.png");
        gv.rm(g);
index b910ed8a9ac5a01f604aad0fd6746584f210e522..d32dbe2e23b21ad7fee88b56ba52882b44c4bdea 100644 (file)
@@ -32,7 +32,7 @@ gv.rm(g)
 g = gv.readstring("digraph G {a->b}")
 gv.rm(g)
 
-g = gv.read("hello.dot")
+g = gv.read("hello.gv")
 gv.layout(g, "dot")
 gv.render(g, "png", "hello.png")
 gv.rm(g)
index 25fcf6b322d75b01c79bf41fbccd5d806126a375..f623b97da968c6b4992419c6159a418612af7563 100644 (file)
@@ -37,7 +37,7 @@ gv::layout($g, "dot");
 gv::render($g, "png", "ab.png");
 gv::rm($g);
 
-$g = gv::read("hello.dot");
+$g = gv::read("hello.gv");
 gv::layout($g, "dot");
 gv::render($g, "png", "hello.png");
 gv::rm($g);
index 7a6b3348e8ba0895938664ae3ecfa46b98f46bd3..1acccb3e4fd078e4d114eec5f75c32a3b032ba82 100644 (file)
@@ -22,7 +22,7 @@ gv::rm $g;
 $g = gv::readstring "digraph G {a->b}";
 gv::rm $g;
 
-$g = gv::read "hello.dot";
+$g = gv::read "hello.gv";
 gv::layout($g, "dot");
 gv::render($g, "png", "hello.png");
 gv::rm $g;
index 8e824f7e68efc824e2c836713f42c5d885b36992..a65a45080f44646cd2eea657eb21651f9ca624a1 100644 (file)
@@ -22,7 +22,7 @@ gv.rm(g)
 g = gv.readstring("digraph G {a->b}")
 gv.rm(g)
 
-g = gv.read("hello.dot")
+g = gv.read("hello.gv")
 gv.layout(g, "dot")
 gv.render(g, "png", "hello.png")
 gv.rm(g)
index 5833c94e2aa57edff2c05fecdaebd5393a8640ad..e82687241008245e3c3b2c04a89fef7e92507713 100644 (file)
@@ -22,7 +22,7 @@ Gv.rm(g)
 g = Gv.readstring("digraph G {a->b}")
 Gv.rm(g)
 
-g = Gv.read("hello.dot")
+g = Gv.read("hello.gv")
 Gv.layout(g, "dot")
 Gv.render(g, "png", "hello.png")
 Gv.rm(g)
index d08807f61a7ec4fe93390ee7a8a994c419a43d28..64790b1d4c5e41618c54027449dc5d8eaec6eb20 100644 (file)
@@ -23,7 +23,7 @@ gv::rm $g
 set g [gv::readstring "digraph G {a->b}"]
 gv::rm $g
 
-set g [gv::read hello.dot]
+set g [gv::read hello.gv]
 for {set n [gv::firstnode $g]} {[gv::ok $n]} {set n [gv::nextnode $g $n]} {
     puts [gv::nameof $n]
     for {set a [gv::firstattr $n]} {[gv::ok $a]} {set a [gv::nextattr $n $a]} {