1GraphViz2::Filer(3) User Contributed Perl Documentation GraphViz2::Filer(3)
2
3
4
6 GraphViz2::Filer - Some utils to simplify testing and generating the
7 demo page
8
10 See "Synopsis" in GraphViz2.
11
12 See t/tokens.t.
13
15 Some utils to simplify testing.
16
17 End-users do not need to call the methods in this module.
18
20 This module is available as a Unix-style distro (*.tgz).
21
22 See <http://savage.net.au/Perl-modules/html/installing-a-module.html>
23 for help on unpacking and installing distros.
24
26 Install GraphViz2 as you would for any "Perl" module:
27
28 Run:
29
30 cpanm GraphViz2
31
32 or run:
33
34 sudo cpan GraphViz2
35
36 or unpack the distro, and then either:
37
38 perl Build.PL
39 ./Build
40 ./Build test
41 sudo ./Build install
42
43 or:
44
45 perl Makefile.PL
46 make (or dmake or nmake)
47 make test
48 make install
49
51 Calling new()
52 "new()" is called as "my($obj) = GraphViz2::Filer -> new(k1 => v1, k2
53 => v2, ...)".
54
55 It returns a new object of type "GraphViz2::Filer".
56
58 get_annotations()
59 Returns a hash (sic) keyed by *.pl name, with the values being the text
60 off line 3 of each script.
61
62 This text is used to annotate html/index.html, the output of
63 scripts/generate.demo.pl.
64
65 get_files($dir_name, $type)
66 Returns a list of files from the given $dir_name, whose type
67 (extension) matches $type.
68
69 See t/tokens.t.
70
71 get_scripts()
72 Returns a hash (sic) keyed by *.pl name, with the values being the full
73 path to the script.
74
76 Many thanks are due to the people who chose to make Graphviz
77 <http://www.graphviz.org/> Open Source.
78
79 And thanks to Leon Brocard <http://search.cpan.org/~lbrocard/>, who
80 wrote GraphViz, and kindly gave me co-maint of the module.
81
83 Version numbers < 1.00 represent development versions. From 1.00 up,
84 they are production versions.
85
87 The file Changes was converted into Changelog.ini by
88 Module::Metadata::Changes.
89
91 Email the author, or log a bug on RT:
92
93 <https://rt.cpan.org/Public/Dist/Display.html?Name=GraphViz2>.
94
96 GraphViz2 was written by Ron Savage <ron@savage.net.au> in 2011.
97
98 Home page: <http://savage.net.au/index.html>.
99
101 Australian copyright (c) 2011, Ron Savage.
102
103 All Programs of mine are 'OSI Certified Open Source Software';
104 you can redistribute them and/or modify them under the terms of
105 The Perl License, a copy of which is available at:
106 http://dev.perl.org/licenses/
107
108
109
110perl v5.28.1 2018-02-23 GraphViz2::Filer(3)