Linux SoftwareSearchnode

Tag «node»: downloads



Search results for «node»:

XML::DOM::Node 1.44 by T.J. Mather


XML::DOM::Node is a super class of all nodes in XML::DOM.

XML::DOM::Node is the super class of all nodes in an XML::DOM document. This means that all nodes that subclass XML::DOM::Node also inherit all the methods that XML::DOM::Node implements.

GLOBAL VARIABLES

@NodeNames

The variable @… 


XML::LibXML::Node 1.61003 by Matt Sergeant, Christian Glahn and Petr Pajas


XML::LibXML::Node is an abstract base class of XML::LibXML nodes.

SYNOPSIS

$name = $node->nodeName;
$node->setNodeName( $newName );
$bool = $node->isSameNode( $other_node );
$bool = $node->isEqual( $other_node );
$content = $node->nodeValue;
$content = $node->textContent;
$… 


Convert::Wiki::Node::Head 0.05 by Tels


Convert::Wiki::Node::Head is a Perl module that represents a headline node.

SYNOPSIS

use Convert::Wiki::Node::Head;

my $head = Convert::Wiki::Node->new( txt => 'About Foo', type => 'head1' );

print $head->as_wiki();

A Convert::Wiki::Node::Head represents a head… 


Bio::Tree::NodeNHX 1.4 by Aaron Mackey


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_… 


XML::DOM::BagOfTricks 0.05 by Aaron Trevena


XML::DOM::BagOfTricks is a convenient XML DOM.

SYNOPSIS

use XML::DOM::BagOfTricks;

# get the XML document and root element
my ($doc,$root) = createDocument('Foo');

# or

# get the XML document with xmlns and version attributes specified
my $doc = createDocument({name=>'Fo… 


Convert::Wiki::Node::Para 0.05 by Tels


Convert::Wiki::Node::Para is a Perl module that represents a text paragraph node.

SYNOPSIS

use Convert::Wiki::Node::Para;

my $para = Convert::Wiki::Node->new( txt => 'Foo is a foobar.', type => 'para' );

print $para->as_wiki();

A Convert::Wiki::Node::Para repre… 


XML::DOM::EntityReference 1.44 by Jeff Pinyan


XML::DOM::EntityReference is an XML ENTITY reference in XML::DOM.

XML::DOM::EntityReference extends XML::DOM::Node.

EntityReference objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference. Note t… 


Convert::Wiki::Node::Item 0.05 by Tels


Convert::Wiki::Node::Item is a Perl module that represents an item in a list (aka < li > or *).

SYNOPSIS

use Convert::Wiki::Node::Item;

my $para = Convert::Wiki::Node->new( txt => 'Foo is a foobar.', type => 'item' );

print $para->as_wiki(); # print someth… 


XML::DOM::Element 1.44 by T.J. Mather


XML::DOM::Element is an XML element node in XML::DOM.

XML::DOM::Element extends XML::DOM::Node.

By far the vast majority of objects (apart from text) that authors encounter when traversing a document are Element nodes. Assume the following XML document:

< elementExample id="demo" >
… 


Convert::Wiki::Node::Line 0.05 by Tels


Convert::Wiki::Node::Line is a Perl module that represents a horizontal line (aka ruler).

SYNOPSIS

use Convert::Wiki::Node::Line;

my $hr = Convert::Wiki::Node::Line->new( );

print $hr->as_wiki();

A Convert::Wiki::Node::Line represents a horizontal line (aka rul… 


SLFFEA 1.4 by San Le


SLFFEA stands for San Le's Free Finite Element Analysis. SLFFEA is a package of scientific software and graphical user interfaces for use in finite element analysis. It is written in ANSI C by San Le and distributed under the terms of the GNU license.

SLFFEA includes:

9 of the basic finite el… 


XML::DOM::Text 1.44 by XML::DOM::Text Team


XML::DOM::Text is a piece of XML text in XML::DOM.

XML::DOM::Text extends XML::DOM::CharacterData, which extends XML::DOM::Node.

The Text interface represents the textual content (termed character data in XML) of an Element or Attr. If there is no markup inside an element's content, the text i… 


XML::DOM::Lite 0.10 by Richard Hundt


XML::DOM::Lite is a Lite Pure Perl XML DOM Parser Kit.

SYNOPSIS

# Parser
use XML::DOM::Lite qw(Parser :constants);

$parser = Parser->new( %options );
$doc = Parser->parse($xmlstr);
$doc = Parser->parseFile('/path/to/file.xml');

# strip whitespace (can be about 30% faster)
… 


XML::DOM::Lite::Document 0.10 by T.J. Mather


Document is a XML DOM Lite Document.

SYNOPSIS

$root = $doc->documentElement;
$node = $doc->getElementById("myid");

# Node creation
$element = $doc->createElement("tagname");
$textnode = $doc->createTextNode("some text");

# XPath
$nlist = $doc->selectNodes("/xpath/expression"… 


Bio::Phylo::Treedrawer::Svg 0.12 by Rutger A. Vos


Bio::Phylo::Treedrawer::Svg is a Perl module that creates svg tree drawings. No serviceable parts inside.

This module creates a scalable vector graphic from a Bio::Phylo::Trees::Tree object. It is called by the Bio::Phylo::Treedrawer object, so look there to learn how to create tree drawings. (Fo… 


CGI::Explorer 2.07 by Ron Savage


CGI::Explorer is a class to manage displaying a hash tree of data, for use in CGI scripts.

Synopsis

Install /assets/css/explorer/xtree.css, /assets/js/explorer/xtree.js, and /assets/images/explorer/*, as per the installation instructions, below.
Then run the demos example/bootstrap-hobbit.pl,… 


CGI::Wiki 0.62 by Kake Pugh


CGI::Wiki is a toolkit for building Wikis.

Helps you develop Wikis quickly by taking care of the boring bits for you. You will still need to write some code - this isn't an instant Wiki.

SYNOPSIS

# Set up a wiki object with an SQLite storage backend, and an
# inverted index/DB_File sea… 


GNMS 20060411 by David Maciejak


GNMS is a free Network Management System, a tool to monitor state of network elements.

All nodes are mapped on a window. States can be discovered by service, SNMP, and custom pooling, and syslog and SNMP traps can be caught.

It's written in Ruby/Gtk, and use some command tool for finding, scan… 


Wiki::Toolkit 0.71 by Kake Pugh


Wiki::Toolkit is a toolkit for building Wikis.

Helps you develop Wikis quickly by taking care of the boring bits for you. You will still need to write some code - this isn't an instant Wiki.

SYNOPSIS

# Set up a wiki object with an SQLite storage backend, and an
# inverted index/DB_File… 


XML::NodeFilter 0.01 by Christian Glahn


XML::NodeFilter is a generic XML::NodeFilter Class.

SYNOPSIS

use XML::NodeFilter;

my $filter = XML::NodeFilter->new();

$your_iterator->set_filter( $filter );

"Filters are objects that know how to "filter out" nodes. If a NodeIterator or a TreeWalker is given a NodeFilter, it app… 



Related:

    search


Featured Software

jEdit 4.3 pre8
jEdit is an Open Source text editor written in Java

Opera 9.02
Surf the Internet in a safer, faster, and easier way with Opera browser

GNU Aspell 0.60.4
GNU Aspell is a Free and Open Source spell checker designed to eventually replace Ispell



Top tags