[DRE-commits] [SCM] ruby-graphviz.git branch, master, updated. 8a48e6eb0db1a1d96219a9cc9ed4a8674bcba2a8

Praveen Arimbrathodiyil praveen at debian.org
Mon Oct 29 12:56:19 UTC 2012


The following commit has been merged in the master branch:
commit 8a48e6eb0db1a1d96219a9cc9ed4a8674bcba2a8
Author: Praveen Arimbrathodiyil <praveen at debian.org>
Date:   Mon Oct 29 18:25:06 2012 +0530

    update formatting in man pages

diff --git a/debian/dot2ruby.1.pod b/debian/dot2ruby.1.pod
index 0e58f6d..1329932 100644
--- a/debian/dot2ruby.1.pod
+++ b/debian/dot2ruby.1.pod
@@ -4,40 +4,49 @@ dot2ruby - create a ruby script from a graphviz script
 
 =head1 SYNOPSIS
 
-usage: dot2ruby [-ofile] [-Tformat] [-h] [-V] script
+B<dot2ruby> [B<-o>I<file>] [B<-T>I<format>] [B<-h>] [B<-V>] I<script>
 
 =head1 DESCRIPTION
 
 B<dot2ruby> is a tool that allows you to create a ruby script from 
 a graphviz script.
 
-See /usr/share/doc/ruby-graphviz/ for more details.
+See I</usr/share/doc/ruby-graphviz/> for more details.
 
 =head1 OPTIONS
 
--o, --output-file file        Output file
--T, --output-format format    Output format (default: nil)
--p, --path                    Graphviz path
--V, --version                 Show version
--h, --help                    Show this usage message
+B<-o>, B<--output-file> [I<file>]
+ 	Path to output image file (default STDOUT)
+
+B<-T>, B<--output-format> [I<format>]
+ 	Output format (default: png)
+
+B<-p>, B<--path>
+ 	Graphviz path
+
+B<-V>, B<--version>
+ 	Show version
+
+B<-h>, B<--help>
+ 	Show this usage message
 
 =head1 EXAMPLE
 
-$ cat hello.dot
-digraph G {Hello->World;}
-
-$ dot2ruby hello.dot
-# This code was generated by dot2ruby.g
-
-require 'rubygems'
-require 'graphviz'
-graph_g = GraphViz.digraph( "G" ) { |graph_g|
-  graph_g[:bb] = '0,0,70,108'
-  node_hello = graph_g.add_nodes( "Hello", :height => '0.5', :label => '\N', :pos => '35,90', :width => '0.88889' )
-  graph_g.add_edges( "Hello", "World", :pos => 'e,35,36.413 35,71.831 35,64.131 35,54.974 35,46.417' )
-  node_world = graph_g.add_nodes( "World", :height => '0.5', :label => '\N', :pos => '35,18', :width => '0.97222' )
-}
-puts graph_g.output( :canon => String )
+ $ cat hello.dot
+ digraph G {Hello->World;}
+
+ $ dot2ruby hello.dot
+ # This code was generated by dot2ruby.g
+ 
+ require 'rubygems'
+ require 'graphviz'
+ graph_g = GraphViz.digraph( "G" ) { |graph_g|
+   graph_g[:bb] = '0,0,70,108'
+   node_hello = graph_g.add_nodes( "Hello", :height => '0.5', :label => '\N', :pos => '35,90', :width => '0.88889' )
+   graph_g.add_edges( "Hello", "World", :pos => 'e,35,36.413 35,71.831 35,64.131 35,54.974 35,46.417' )
+   node_world = graph_g.add_nodes( "World", :height => '0.5', :label => '\N', :pos => '35,18', :width => '0.97222' )
+ }
+ puts graph_g.output( :canon => String )
 
 =head1 AUTHOR
 
diff --git a/debian/gem2gv.1.pod b/debian/gem2gv.1.pod
index f398db2..d364f82 100644
--- a/debian/gem2gv.1.pod
+++ b/debian/gem2gv.1.pod
@@ -4,28 +4,41 @@ gem2gv - create a dependency graph between gems
 
 =head1 SYNOPSIS
 
-usage: gem2gv [-Tformat] [-ofile] [-h] [-V] gemname
+B<gem2gv> [B<-T>I<format>] [B<-o>I<file>] [B<-h>] [B<-V>] I<gemname>
 
 =head1 DESCRIPTION
 
 B<gem2gv> is a tool that allows you to create a dependency graph 
 between gems.
 
-See /usr/share/doc/ruby-graphviz/ for more details.
+See I</usr/share/doc/ruby-graphviz/> for more details.
 
 =head1 OPTIONS
 
--T, --output-format format    Output format (default: PNG)
--o, --output-file file        Output file (default: STDOUT)
--p, --path                    Graphviz path
--u, --use PROGRAM             Program to use (default: dot)
--s, --stop LIB[,LIB, ...]     Stop on libs
--V, --version                 Show version
--h, --help                    Show this usage message
+B<-T>, B<--output-format> [I<format>]
+ 	Output format (default: png)
+
+B<-o>, B<--output-file> [I<file>]
+ 	Path to output image file (default: STDOUT)
+
+B<-p>, B<--path>
+ 	Graphviz path
+
+B<-u>, B<--use> [I<PROGRAM>]
+ 	Program to use (default: dot)
+
+B<-s>, B<--stop> I<LIB>[,I<LIB>, I<...>]
+ 	Stop on libs
+
+B<-V>, B<--version>
+ 	Show version
+
+B<-h>, B<--help>
+ 	Show this usage message
 
 =head1 EXAMPLE
 
-gem2gv -Tpng -oruby-graphviz.png ruby-graphviz
+B<gem2gv -Tpng -oruby-graphviz.png ruby-graphviz>
 
 =head1 AUTHOR
 
diff --git a/debian/git2gv.1.pod b/debian/git2gv.1.pod
index 3f32374..3ded4b6 100644
--- a/debian/git2gv.1.pod
+++ b/debian/git2gv.1.pod
@@ -4,23 +4,34 @@ git2gv - show your git commits graphically
 
 =head1 SYNOPSIS
 
-usage: git2gv [-Tformat] [-ofile] [-h] [-V]
+B<git2gv> [B<-T>I<format>] [B<-o>I<file>] [B<-h>] [B<-V>]
 
 =head1 DESCRIPTION
 
 B<git2gv> is a tool that allows you to show your git commits
 graphically.
 
-See /usr/share/doc/ruby-graphviz/ for more details.
+See I</usr/share/doc/ruby-graphviz/> for more details.
 
 =head1 OPTIONS
 
--T, --output-format format    Output format (default: png)
-    --nothugly                Use nothugly if SVG output
--o, --output-file file        Output file (default: STDOUT)
--p, --path                    Graphviz path
--V, --version                 Show version
--h, --help                    Show this usage message
+B<-T>, B<--output-format> [I<format>]
+ 	Output format (default: png)
+
+B<--nothugly>
+ 	Use nothugly if SVG output
+
+B<-o>, B<--output-file> [I<file>]
+ 	Path to output image file (default: STDOUT)
+
+B<-p>, B<--path>
+ 	Graphviz path
+
+B<-V>, B<--version>
+ 	Show version
+
+B<-h>, B<--help>
+ 	Show this usage message
 
 =head1 AUTHOR
 
diff --git a/debian/ruby2gv.1.pod b/debian/ruby2gv.1.pod
index 78c9874..6e51e87 100644
--- a/debian/ruby2gv.1.pod
+++ b/debian/ruby2gv.1.pod
@@ -4,28 +4,41 @@ ruby2gv - create a dependency graph from a ruby script
 
 =head1 SYNOPSIS
 
-usage: ruby2gv [-Tformat] [-ofile] [-h] [-V] script
+B<ruby2gv> [B<-T>I<format>] [B<-o>I<file>] [B<-h>] [B<-V>] I<script>
 
 =head1 DESCRIPTION
 
 B<ruby2gv> is a simple tool that allows you to create a dependency graph 
 from a ruby script.
 
-See /usr/share/doc/ruby-graphviz/ for more details.
+See I</usr/share/doc/ruby-graphviz/> for more details.
 
 =head1 OPTIONS
 
--T, --output-format format    Output format (default: PNG)
--o, --output-file file        Output file (default: STDOUT)
--p, --path                    Graphviz path
--u, --use PROGRAM             Program to use (default: dot)
--s, --stop LIB[,LIB, ...]     Stop on libs
--V, --version                 Show version
--h, --help                    Show this usage message
+B<-T>, B<--output-format> [I<format>]
+ 	Output format (default: png)
+
+B<-o>, B<--output-file> [I<file>]
+ 	Path to output image file (default: STDOUT)
+
+B<-p>, B<--path>
+ 	Graphviz path
+
+B<-u>, B<--use> [I<PROGRAM>]
+ 	Program to use (default: dot)
+
+B<-s>, B<--stop> I<LIB>[,I<LIB>, I<...>]
+ 	Stop on libs
+
+B<-V>, B<--version>
+ 	Show version
+
+B<-h>, B<--help>
+ 	Show this usage message
 
 =head1 EXAMPLE
 
-ruby2gv -Tpng -oruby2gv.png /usr/bin/ruby2gv
+B<ruby2gv -Tpng -oruby2gv.png /usr/bin/ruby2gv>
 
 =head1 AUTHOR
 
diff --git a/debian/xml2gv.1.pod b/debian/xml2gv.1.pod
index bf2ad88..b8e5e33 100644
--- a/debian/xml2gv.1.pod
+++ b/debian/xml2gv.1.pod
@@ -4,22 +4,33 @@ xml2gv - show your xml files graphically
 
 =head1 SYNOPSIS
 
-usage: xml2gv [-Tformat] [-ofile] [-h] [-V] script
+B<xml2gv> [B<-T>I<format>] [B<-o>I<file>] [B<-h>] [B<-V>] I<script>
 
 =head1 DESCRIPTION
 
 B<xml2gv> is a tool that allows you to show a xml file as a graph.
 
-See /usr/share/doc/ruby-graphviz/ for more details.
+See I</usr/share/doc/ruby-graphviz/> for more details.
 
 =head1 OPTIONS
 
--T, --output-format format    Output format (default: PNG)
--o, --output-file file        Output file (default: STDOUT)
--p, --path                    Graphviz path
--u, --use PROGRAM             Program to use (default: dot)
--V, --version                 Show version
--h, --help                    Show this usage message
+B<-T>, B<--output-format> [I<format>
+ 	Output format (default: png)
+
+B<-o>, B<--output-file> [I<file>]
+ 	Output file (default: STDOUT)
+
+B<-p>, B<--path>
+ 	Graphviz path
+
+B<-u>, B<--use> [I<PROGRAM>]
+ 	Program to use (default: dot)
+
+B<-V>, B<--version>
+ 	Show version
+
+B<-h>, B<--help>
+ 	Show this usage message
 
 =head1 AUTHOR
 

-- 
ruby-graphviz.git



More information about the Pkg-ruby-extras-commits mailing list