Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.134.704 Times

Nested Tree Table software
Filter: All | Freeware | Demo
 

Nested Tree Table

< 1 2 3 4 5 > 
Added: January 18, 2010 | Visits: 1.136

Bio::Tree::NodeNHX Bio::Tree::NodeNHX is a Simple Tree Node with support for NHX tags. SYNOPSIS use Bio::Tree::NodeNHX; my $nodeA = new Bio::Tree::NodeNHX(); my $nodeL = new Bio::Tree::NodeNHX(); my $nodeR = new Bio::Tree::NodeNHX(); my $node = new Bio::Tree::NodeNHX(); $node->add_Descendents($nodeL);...



Platforms: *nix

License: Freeware Size: 4.7 MB Download (113): Bio::Tree::NodeNHX Download

Added: February 17, 2010 | Visits: 1.372

PostgreSQL Table Log PostgreSQL Table Log contains functions that allow you to log PostgreSQL table inserts, updates, and deletes into another table. This can be used to recover the state of the logged table or to recover specific rows from a given time period. Whats New in This Release: - This version now...





Platforms: *nix

License: Freeware Size: 13.31 KB Download (115): PostgreSQL Table Log Download

Added: February 26, 2010 | Visits: 1.175

PDF::Table PDF::Table is a utility class for building table layouts in a PDF::API2 object. SYNOPSIS use PDF::API2; use PDF::Table; my $pdftable = new PDF::Table; my $pdf = new PDF::API2(-file => "table_of_lorem.pdf"); my $page = $pdf->page; # some data to layout my $some_data =[ ["1 Lorem ipsum...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (120): PDF::Table Download

Added: February 05, 2010 | Visits: 2.733

XHTML Family Tree Generator XHTML Family Tree Generator project is a CGI Perl script together with some Perl modules that will create views of a family tree from a supplied data file. The data file is a simple text or Excel file listing the family members, parents, and other details. It is possible to show a tree of...


Platforms: *nix

License: Freeware Size: 655.36 KB Download (290): XHTML Family Tree Generator Download

Added: March 07, 2010 | Visits: 1.401

dtRdr::GUI::Wx::Tree::Base dtRdr::GUI::Wx::Tree::Base is a base class for sidebar trees. SYNOPSIS init $tree->init($frame); select_item Select the tree item for a given $id. $tree->select_item($id) The id is probably the id of whatever your widget associated with each tree item. Convenience id_or_id...


Platforms: *nix

License: Freeware Size: 2.8 MB Download (99): dtRdr::GUI::Wx::Tree::Base Download

Added: June 02, 2010 | Visits: 1.098

CGI::AppBuilder::Table CGI::AppBuilder::Table module contains a configuration initializer. SYNOPSIS use CGI::AppBuilder::Table; my $ab = CGI::AppBuilder::Table->new( ifn, my_init.cfg, opt, vhS:a:); my ($q, $ar, $ar_log) = $ab->start_app($0, %ARGV); print $ab->disp_form($q, $ar); This class provides methods...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (92): CGI::AppBuilder::Table Download

Added: September 23, 2010 | Visits: 910

HTML::Tree::AboutObjects HTML::Tree::AboutObjects is an article: "Users View of Object-Oriented Modules". SYNOPSIS # This an article, not a module. The following article by Sean M. Burke first appeared in The Perl Journal #17 and is copyright 2000 The Perl Journal. It appears courtesy of Jon Orwant and The Perl...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (89): HTML::Tree::AboutObjects Download

Added: November 22, 2010 | Visits: 887

Bio::Tree::DistanceFactory Bio::Tree::DistanceFactory is a Perl module to construct a tree using distance based methods. SYNOPSIS use Bio::Tree::DistanceFactory; use Bio::AlignIO; use Bio::Align::DNAStatistics; my $tfactory = Bio::Tree::DistanceFactory->new(-method => "NJ"); my $stats =...


Platforms: *nix

License: Freeware Size: 5.6 MB Download (95): Bio::Tree::DistanceFactory Download

Added: April 11, 2010 | Visits: 1.016

Bio::Tree::Tree Bio::Tree::Tree is an implementation of TreeI interface. SYNOPSIS # like from a TreeIO my $treeio = new Bio::TreeIO(-format => newick, -file => treefile.dnd); my $tree = $treeio->next_tree; my @nodes = $tree->get_nodes; my $root = $tree->get_root_node; This object holds handles to Nodes...


Platforms: *nix

License: Freeware Size: 4.7 MB Download (136): Bio::Tree::Tree Download

Added: February 19, 2010 | Visits: 1.104

Basset::DB::Table Basset::DB::Table is used to define database tables, ways to load that data into memory and build queries based upon the table information. SYNOPSIS For example, my $table = Basset::DB::Table->new( name => user, primary_column => id, autogenerated => 1, definition => { id =>...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (98): Basset::DB::Table Download

Added: November 05, 2010 | Visits: 811

Tree::XPathEngine Tree::XPathEngine is a re-usable XPath engine. This module provides an XPath engine, that can be re-used by other module/classes that implement trees. It is designed to be compatible with Class::XPath, ie it passes its tests if you replace Class::XPath by Tree::XPathEngine. This code is a...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (89): Tree::XPathEngine Download

Added: January 21, 2010 | Visits: 1.096

Tree::Visualize Tree::Visualize is a Perl module for visualizing Tree structures. SYNOPSIS use Tree::Visualize; use Tree::Binary; my $tree = Tree::Binary->new("*") ->setLeft( Tree::Binary->new("+") ->setLeft(Tree::Binary->new("2")) ->setRight(Tree::Binary->new("2")) ) ->setRight(...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (206): Tree::Visualize Download

Added: August 26, 2010 | Visits: 1.902

Tree::Binary Tree::Binary is a Object Oriented Binary Tree for Perl. SYNOPSIS use Tree::Binary; # a tree representaion of the expression: # ((2 + 2) * (4 + 5)) my $btree = Tree::Binary->new("*") ->setLeft( Tree::Binary->new("+") ->setLeft(Tree::Binary->new("2")) ->setRight(Tree::Binary->new("2"))...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (326): Tree::Binary Download

Added: August 27, 2010 | Visits: 812

Tree::Simple::SAX Tree::Simple::SAX is a set of classes for using Tree::Simple with XML. SYNOPSIS use Tree::Simple::SAX; use XML::SAX::ParserFactory; my $handler = Tree::Simple::SAX::Handler->new(Tree::Simple->new()); my $p = XML::SAX::ParserFactory->parser(Handler => $handler); $p->parse_string(...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (94): Tree::Simple::SAX Download

Added: July 03, 2010 | Visits: 1.507

Ports Tree Explorer Ports Tree Explorer (PTE) is a small tool that allows you to navigate through your /usr/ports tree, showing you information about a selected port, tree view, software categories (/usr/ports main dirs) and finally allows you to install a selected port using childs for the installation. PTE...


Platforms: *nix

License: Freeware Size: 163.84 KB Download (103): Ports Tree Explorer Download

Added: September 23, 2010 | Visits: 1.170

HTML::Tree::Scanning HTML::Tree::Scanning contains an article: "Scanning HTML". SYNOPSIS # This an article, not a module. The following article by Sean M. Burke first appeared in The Perl Journal #19 and is copyright 2000 The Perl Journal. It appears courtesy of Jon Orwant and The Perl Journal. This document...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (93): HTML::Tree::Scanning Download

Added: May 06, 2010 | Visits: 934

HTML::Tree::AboutTrees HTML::Tree::AboutTrees is a article on tree-shaped data structures in Perl. This an article, not a module. The following article by Sean M. Burke first appeared in The Perl Journal #18 and is copyright 2000 The Perl Journal. It appears courtesy of Jon Orwant and The Perl Journal. This...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (91): HTML::Tree::AboutTrees Download

Released: August 16, 2012  |  Added: August 16, 2012 | Visits: 1.409

B::Tree B::Tree is a simplified version of B::Graph for demonstration. SYNOPSIS perl -MO=Tree program | dot -Tps > tree.ps This is a very cut-down version of B::Graph; it generates minimalist tree graphs of the op tree of a Perl program, merely connecting the op nodes and labelling each node with...


Platforms: *nix

License: Freeware Size: 2.05 KB Download (100): B::Tree Download

Added: February 01, 2010 | Visits: 872

Tree::PseudoIncLib Tree::PseudoIncLib is a Perl class for encapsulating a description of pseudo-INC array. ABSTRACT This module encapsulates a perl-type library description data and provides methods for manipulating that data. It is in no way associated with any real @INC array on the system. Instead, it works...


Platforms: *nix

License: Freeware Size: 38.91 KB Download (88): Tree::PseudoIncLib Download

Added: June 22, 2010 | Visits: 1.469

Tree::Simple::View::DHTML Tree::Simple::View::DHTML is a Perl class for viewing Tree::Simple hierarchies in DHTML. SYNOPSIS use Tree::Simple::View::DHTML; ## a simple example # use the defaults (an unordered list with no CSS) my $tree_view = Tree::Simple::View::DHTML->new($tree); ## more complex examples #...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (98): Tree::Simple::View::DHTML Download

< 1 2 3 4 5 >