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

Swf Xml Code freeware
Filter: All | Freeware | Demo
 

Swf Xml Code

< 1 2 3 4 5 > 
Added: April 17, 2010 | Visits: 946

XML::UM XML::UM is a Perl module to convert UTF-8 strings to any encoding supported by XML::Encoding. SYNOPSIS use XML::UM; # Set directory with .xml files that comes with XML::Encoding distribution # Always include the trailing slash! $XML::UM::ENCDIR =... Platforms: *nix

License: Freeware Size: 5.12 KB Download (99): XML::UM Download

Added: January 03, 2010 | Visits: 957

XML::TiePYX XML::TiePYX is a Perl module to read or write XML data in PYX format via tied filehandle SYNOPSIS use XML::TiePYX; tie *XML,XML::TiePYX,file.xml open IN,file.xml or die $!; tie *XML,XML::TiePYX,*IN,Condense=>0; my $text=< tag xmlns="http://www.omsdev.com" >text< /tag >; tie... Platforms: *nix

License: Freeware Size: 7.17 KB Download (95): XML::TiePYX Download

Added: February 08, 2010 | Visits: 744

XML::IDMEF XML::IDMEF is a module for building/parsing IDMEF messages. QUICK START Below is an example of an Alert IDMEF message. < ?xml version="1.0" encoding="UTF-8"? > < !DOCTYPE IDMEF-Message PUBLIC "-//IETF//DTD RFC XXXX IDMEF v1.0//EN" "idmef-message.dtd" > < IDMEF-Message > < Alert > <... Platforms: *nix

License: Freeware Size: 25.6 KB Download (114): XML::IDMEF Download

Added: April 18, 2010 | Visits: 1.014

GladePyC GladePyC is a Python code generator tool, from Glade XML save file, to the low-level part of "PyGtk", the Python - Gtk+ binding. Glade is a GUI builder for the Gtk+ GUI toolkit. PyGtk is the gateway between Python and Gtk+. Why: Those who know surely have already made the remark: "But why on... Platforms: *nix

License: Freeware Size: 93.18 KB Download (102): GladePyC Download

Added: March 23, 2010 | Visits: 876

Polymorphic XML Parser Polymorphic XML Parser is a validating XML parser for the programming language Objective Caml. In October, 1999, I started writing a validating XML parser for OCaml; the first published versions have been called "Markup" (simply because the package name was "markup"). After this parser had some... Platforms: *nix

License: Freeware Size: 614.4 KB Download (91): Polymorphic XML Parser Download

Added: August 18, 2010 | Visits: 1.215

XML::DB::Database::Exist XML::DB::Database::Exist is a Perl module with XML:DB driver for the eXist database. SYNOPSIS use XML::DB::Database::Exist; This is the eXist XML-RPC driver. It is intended to be used through the XML:DB API, so that it is never called directly from user code. It implements the internal API... Platforms: *nix

License: Freeware Size: 35.84 KB Download (107): XML::DB::Database::Exist Download

Added: June 11, 2010 | Visits: 909

XML::Filter::Sort::BufferMgr XML::Filter::Sort::BufferMgr is a Perl implementation class used by XML::Filter::Sort. The documentation is targetted at developers wishing to extend or replace this class. For user documentation, see XML::Filter::Sort. Two classes are used to implement buffering records and spooling them... Platforms: *nix

License: Freeware Size: 25.6 KB Download (94): XML::Filter::Sort::BufferMgr Download

Added: July 01, 2010 | Visits: 992

XML::Filter::Sort XML::Filter::Sort is a SAX filter for sorting elements in XML. SYNOPSIS use XML::Filter::Sort; use XML::SAX::Machines qw( :all ); my $sorter = XML::Filter::Sort->new( Record => person, Keys => [ [ lastname, alpha, asc ], [ firstname, alpha, asc ], [ @age, num, desc] ], ); my... Platforms: *nix

License: Freeware Size: 25.6 KB Download (109): XML::Filter::Sort Download

Added: February 08, 2010 | Visits: 645

XML::IODEF XML::IODEF is a Perl module for building/parsing IODEF messages. QUICK START Below is an example of an Incident IODEF message. < ?xml version="1.0" encoding="UTF-8"?> < !DOCTYPE IODEF-Message PUBLIC "-//IETF//DTD RFC XXXX IODEF v1.0//EN" "IODEF-Document.dtd"> < IODEF-Document> < Incident... Platforms: *nix

License: Freeware Size: 25.6 KB Download (102): XML::IODEF Download

Added: July 07, 2010 | Visits: 778

XML::PatAct::ToObjects XML::PatAct::ToObjects is an action module for creating Perl objects. SYNOPSIS use XML::PatAct::ToObjects; my $patterns = [ PATTERN => [ OPTIONS ], PATTERN => "PERL-CODE", ... ]; my $matcher = XML::PatAct::ToObjects->new( Patterns => $patterns, Matcher => $matcher, CopyId => 1,... Platforms: *nix

License: Freeware Size: 31.74 KB Download (93): XML::PatAct::ToObjects Download

Added: June 16, 2010 | Visits: 1.312

XML Extractor XML Extractor is a set of tools for transforming XML-like markup into entities or well-formed XML files. The sourcecode XML metadata extraction tools are intended to be used for extracting and transforming XML-like markup embedded in source code comments into syntactically correct external... Platforms: *nix

License: Freeware Size: 20.48 KB Download (96): XML Extractor Download

Added: August 05, 2010 | Visits: 1.102

XML::SAX::Base XML::SAX::Base is a base Perl class with SAX Drivers and Filters. SYNOPSIS package MyFilter; use XML::SAX::Base; @ISA = (XML::SAX::Base); This module has a very simple task - to be a base class for PerlSAX drivers and filters. Its default behaviour is to pass the input directly to the... Platforms: *nix

License: Freeware Size: 20.48 KB Download (100): XML::SAX::Base 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

Released: August 01, 2012  |  Added: August 01, 2012 | Visits: 1.294

Class::XML Class::XML is a Perl module for simple XML Abstraction. SYNOPSIS package Foo; use base qw/Class::XML/; __PACKAGE__->has_attributes(qw/length colour/); __PACKAGE__->has_child(bar => Bar); package Bar; use base qw/Class::XML/; __PACKAGE__->has_parent(foo);... Platforms: *nix

License: Freeware Size: 18.43 KB Download (97): Class::XML Download

Added: March 16, 2010 | Visits: 881

XML::SAX::Intro XML::SAX::Intro is an Introduction to SAX Parsing with Perl. XML::SAX is a new way to work with XML Parsers in Perl. In this article well discuss why you should be using SAX, why you should be using XML::SAX, and well see some of the finer implementation details. The text below assumes some... Platforms: *nix

License: Freeware Size: 58.37 KB Download (101): XML::SAX::Intro Download

Added: March 21, 2010 | Visits: 830

Any::Renderer::XML Any::Renderer::XML Perl module can render a data structure as element-only XML. SYNOPSIS use Any::Renderer; my %xml_options = (); my %options = ( XmlOptions => %xml_options ); my $format = "XML"; my $r = new Any::Renderer ( $format, %options ); my $data_structure = [...]; # arbitrary... Platforms: *nix

License: Freeware Size: 23.55 KB Download (98): Any::Renderer::XML Download

Added: September 08, 2010 | Visits: 876

RPC::XML::Procedure RPC::XML::Procedure is an object encapsulation of server-side RPC procedures. SYNOPSIS require RPC::XML::Procedure; ... $method_1 = RPC::XML::Procedure->new({ name => system.identity, code => sub { ... }, signature => [ string ] }); $method_2 =... Platforms: *nix

License: Freeware Size: 122.88 KB Download (89): RPC::XML::Procedure Download

Added: March 16, 2010 | Visits: 1.606

QOF Generator QOF Generator is a project that generates C object source code from HTML/PHP or Perl/XML. Generating new objects for the Query Object Framework is repetitive, tedious, and time consuming. Qof Generator automates this process in PHP to build a working test program linked against QOF. Objects... Platforms: *nix

License: Freeware Size: 17.41 KB Download (151): QOF Generator Download

Added: August 15, 2010 | Visits: 1.146

C++ XML Objects C++ XML Objects is a framework for persisting hierarchies of C++ objects to and from XML. Boost, The STL and Patterns are used extensively. All platforms which support Boost will be supported. Sometimes there is a need to save hierarchies of C++ objects to a file (or DB etc), and then retrieve... Platforms: *nix

License: Freeware Size: 409.6 KB Download (90): C++ XML Objects Download

Added: April 17, 2010 | Visits: 1.248

XML::TMX::Writer XML::TMX::Writer is a Perl extension for writing TMX files. SYNOPSIS use XML::TMX::Writer; my $tmx = new XML::TMX::Writer(); $tmx->start_tmx(ID => paulojjs); $tmx->add_tu(SRCLANG => en, en => some text, pt => algum texto); $tmx->add_tu(SRCLANG => en, en => some text, pt => algum... Platforms: *nix

License: Freeware Size: 15.36 KB Download (132): XML::TMX::Writer Download

< 1 2 3 4 5 >