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.478.042 Times

Libxml software
Filter: All | Freeware | Demo
 

Libxml

1 2 3 > 
Released: November 08, 2012  |  Added: November 08, 2012 | Visits: 534

BitNami Moodle Stack for Mac OS An easy to use installer for Moodle, which is a Course Management System that is designed using sound pedagogical principles to help educators create effective online learning communities. It can scale from one computer to a 50,000-student university and is used in 175 countries around the world.... Platforms: Mac

License: Freeware Size: 70 MB Download (484): BitNami Moodle Stack for Mac OS Download

Added: June 06, 2010 | Visits: 1.226

SVG::Parser SVG::Parser is a Perl module with XML Parser for SVG documents. SYNOPSIS #!/usr/bin/perl -w use strict; use SVG::Parser; die "Usage: $0 n" unless @ARGV; my $xml; { local $/=undef; $xml=<>; } my $parser=new SVG::Parser(-debug => 1); my $svg=$parser->parse($xml); print... Platforms: *nix

License: Freeware Size: 14.34 KB Download (146): SVG::Parser Download

Added: April 14, 2010 | Visits: 989

XML::Diff XML::Diff is a Perl module for XML DOM-Tree based Diff & Patch Module. SYNOPSIS my $diff = XML::Diff->new(); # to generate a diffgram of two XML files, use compare. # $old and $new can be filepaths, XML as a string, # XML::LibXML::Document or XML::LibXML::Element objects. # The diffgram... Platforms: *nix

License: Freeware Size: 17.41 KB Download (128): XML::Diff Download

Added: August 03, 2010 | Visits: 832

mooseekd mooseekd project is a partial fork of Museek+, containing only the standalone daemon needed to connect to the Soulseek P2P network. Naming has been changed so as not to clash with an existing Museek+/museekd installation. The goal of the fork is to provide a means of having only the daemon... Platforms: *nix

License: Freeware Size: 471.04 KB Download (110): mooseekd Download

Added: November 01, 2010 | Visits: 1.729

XML::LibXML::Reader XML::LibXML::Reader is a Perl interface to libxml2 pull parser. SYNOPSIS use XML::LibXML::Reader; $reader = new XML::LibXML::Reader("file.xml") or die "cannot read file.xmln"; while ($reader->read) { processNode($reader); } sub processNode { $reader = shift; printf "%d %d %s %dn",... Platforms: *nix

License: Freeware Size: 256 KB Download (108): XML::LibXML::Reader Download

Added: June 26, 2010 | Visits: 636

XML::DifferenceMarkup XML::DifferenceMarkup is a XML diff and merge. SYNOPSIS use XML::DifferenceMarkup qw(make_diff); $parser = XML::LibXML->new(); $parser->keep_blanks(0); $d1 = $parser->parse_file($fname1); $d2 = $parser->parse_file($fname2); $dom = make_diff($d1, $d2); print $dom->toString(1); This... Platforms: *nix

License: Freeware Size: 57.34 KB Download (108): XML::DifferenceMarkup Download

Added: April 20, 2010 | Visits: 1.047

XML::LibXML::Parser XML::LibXML::Parser is a Perl module to parse XML Data with XML::LibXML. SYNOPSIS $parser = XML::LibXML->new(); $doc = $parser->parse_file( $xmlfilename ); $doc = $parser->parse_fh( $io_fh ); $doc = $parser->parse_string( $xmlstring); $doc = $parser->parse_html_file( $htmlfile, %opts );... Platforms: *nix

License: Freeware Size: 256 KB Download (106): XML::LibXML::Parser Download

Added: November 02, 2010 | Visits: 866

XML::Code XML::Diff is a Perl module for XML DOM-Tree based Diff & Patch Module. SYNOPSIS my $diff = XML::Diff->new(); # to generate a diffgram of two XML files, use compare. # $old and $new can be filepaths, XML as a string, # XML::LibXML::Document or XML::LibXML::Element objects. # The diffgram... Platforms: *nix

License: Freeware Size: 17.41 KB Download (104): XML::Code Download

Added: January 13, 2010 | Visits: 767

XML::LibXML::Node 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; $type =... Platforms: *nix

License: Freeware Size: 256 KB Download (103): XML::LibXML::Node Download

Added: July 19, 2010 | Visits: 1.027

Parsifal XML Parser Parsifal is a validating XML 1.0 parser written in ANSI C. Parsifal API is based on SAX2. Parsifal can be used for parsing XML based messages (such as REST and RSS) and for application specific data processing e.g. config files, data files etc. Parsifal can also be used for document-oriented... Platforms: *nix

License: Freeware Size: 757.76 KB Download (103): Parsifal XML Parser Download

Added: March 21, 2010 | Visits: 1.294

CAM::XML CAM::XML is an encapsulation of a simple XML data structure. SYNOPSIS my $pollTag = CAM::XML->new(poll); foreach my $q (@questions) { my $questionTag = CAM::XML->new(question); $questionTag->add(-text => $q->{text}); my $choicesTag = CAM::XML->new(choices); foreach my $c... Platforms: *nix

License: Freeware Size: 22.53 KB Download (102): CAM::XML Download

Added: September 13, 2010 | Visits: 963

XML::Checker XML::Checker is a Perl module for validating XML. SYNOPSIS XML::Checker::Parser - an XML::Parser that validates at parse time XML::DOM::ValParser - an XML::DOM::Parser that validates at parse time (Some of the package names may change! This is only an alpha release...) XML::Checker can be... Platforms: *nix

License: Freeware Size: 33.79 KB Download (101): XML::Checker Download

Added: August 18, 2010 | Visits: 1.170

Little Wizard Little Wizard is a development environment for children. Little Wizard can be programmed without using keyboard, just by using drag and drop. Even children in primary school can understand how it works. Little Wizard project uses GTK+ and libXML. Whats New in This Release: - This release... Platforms: *nix

License: Freeware Size: 655.36 KB Download (100): Little Wizard Download

Added: March 11, 2010 | Visits: 904

Template::Plugin::XML::LibXML Template::Plugin::XML::LibXML is a XML::LibXML Template Toolkit Plugin. SYNOPSIS [% USE docroot = XML.LibXML("helloworld.xml") %] The message is: [% docroot.find("/greeting/text") %] This module provides a plugin for the XML::LibXML module. It can be utilised the same as any other... Platforms: *nix

License: Freeware Size: 13.31 KB Download (99): Template::Plugin::XML::LibXML Download

Added: September 07, 2010 | Visits: 926

XML::LibXML::DOM XML::LibXML::DOM is a XML::LibXML DOM Implementation. XML::LibXML provides an lightwight interface to modify a node of the document tree generated by the XML::LibXML parser. This interface follows as far as possible the DOM Level 3 specification. Additionally to the specified functions the... Platforms: *nix

License: Freeware Size: 163.84 KB Download (99): XML::LibXML::DOM Download

Added: October 02, 2010 | Visits: 743

libRSVG libRSVG is a component used within software applications to enable support for SVG-format scalable graphics. In contrast to raster formats, scalable vector graphics provide users and artists a way to create, view, and provide imagery that is not limited to the pixel or dot density that an... Platforms: *nix

License: Freeware Size: 552.96 KB Download (96): libRSVG Download

Added: February 08, 2010 | Visits: 1.059

DBIx::Class::LibXMLdoc DBIx::Class::LibXMLdoc is a Perl module to create an adjunct "Doc" accessor of a columns data which is automatically parsed into a LibXML documentElement (alpha-software). SYNOPSIS package My::DB::thingy; __PACKAGE__->load_components(qw/ PK::Auto LibXMLdoc Core /);... Platforms: *nix

License: Freeware Size: 5.12 KB Download (95): DBIx::Class::LibXMLdoc Download

Added: February 25, 2010 | Visits: 969

XML::Compile::Schema::XmlReader XML::Compile::Schema::XmlReader Perl module contains bricks to translate XML to HASH. SYNOPSIS my $schema = XML::Compile::Schema- >new(...); my $code = $schema- >compile(READER = > ...); The translator understands schemas, but does not encode that into actions. This module implements those... Platforms: *nix

License: Freeware Size: 122.88 KB Download (95): XML::Compile::Schema::XmlReader Download

Added: May 14, 2010 | Visits: 795

DBIx::XMLServer DBIx::XMLServer is a Perl module to serve data as XML in response to HTTP requests. SYNOPSIS use XML::LibXML; use DBIx::XMLServer; my $xml_server = new DBIx::XMLServer($dbh, "template.xml"); my $doc = $xml_server->process($QUERY_STRING); die "Error: $doc" unless ref $doc; print... Platforms: *nix

License: Freeware Size: 29.7 KB Download (95): DBIx::XMLServer Download

Added: August 19, 2010 | Visits: 702

XML::SimpleObject::LibXML XML::SimpleObject::LibXML is a Perl extension allowing a simple(r) object representation of an XML::LibXML DOM object. SYNOPSIS use XML::SimpleObject::LibXML; # Construct with the key/value pairs as argument; this will create its # own XML::LibXML object. my $xmlobj = new... Platforms: *nix

License: Freeware Size: 8.19 KB Download (94): XML::SimpleObject::LibXML Download

1 2 3 >