~ubuntu-branches/ubuntu/wily/libgraph-readwrite-perl/wily

« back to all changes in this revision

Viewing changes to lib/Graph/Writer/Dot.pm

  • Committer: Package Import Robot
  • Author(s): Lucas Kanashiro, gregor herrmann, Salvatore Bonaccorso, Lucas Kanashiro
  • Date: 2015-07-24 02:09:33 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20150724020933-vt5elkj5rf2nsknf
Tags: 2.07-1
* Team upload.

[ gregor herrmann ]
* Strip trailing slash from metacpan URLs.

[ Salvatore Bonaccorso ]
* Update Vcs-Browser URL to cgit web frontend

[ Lucas Kanashiro ]
* Imported Upstream version 2.07
* debian/control:
  - increase debhelper version to 9
  - bump Standards-Version to 3.9.6
  - add test suite with autopkgtest-pkg-perl
* debian/patches: patch to fix pod2man error
* debian/upstream/metadata: help upstream git integration
* debian/copyright: update upstream copyright date

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
use warnings;
8
8
 
9
9
use parent 'Graph::Writer';
10
 
our $VERSION = '2.06';
 
10
our $VERSION = '2.07';
11
11
 
12
12
#-----------------------------------------------------------------------
13
13
# List of valid dot attributes for the entire graph, per node,
203
203
 
204
204
=over 4
205
205
 
206
 
=item http://www.graphviz.org/
 
206
=item L<www.graphviz.org|http://www.graphviz.org/>
207
207
 
208
208
The home page for the AT+T graphviz toolkit that
209
209
includes the dot tool.
210
210
 
211
 
=item Graph
 
211
=item L<Graph>
212
212
 
213
213
Jarkko Hietaniemi's modules for representing directed graphs,
214
214
available from CPAN under modules/by-module/Graph/
218
218
The O'Reilly book which has a chapter on directed graphs,
219
219
which is based around Jarkko's modules.
220
220
 
221
 
=item Graph::Writer
 
221
=item L<Graph::Writer>
222
222
 
223
223
The base-class for Graph::Writer::Dot
224
224