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

Xml Ide Linux freeware
Filter: All | Freeware | Demo
 

Xml Ide Linux

< 1 2 3 4 5 
Added: July 14, 2010 | Visits: 1.495

Ark Linux Live Ark Linux Live is a Live CD edition of Ark Linux. Ark Linux is a beginner-friendly Linux distribution meant primarily for desktop use. The Ark Linux team is pleased to announce the release of a first version of Ark Linux Live, a Live CD version of the Ark Linux operating system. Ark Linux... Platforms: *nix

License: Freeware Size: 642 MB Download (111): Ark Linux Live Download

Added: August 27, 2010 | Visits: 1.167

Ark Linux Ark Linux is a Linux distribution designed especially for desktop use, primarily for people without prior Linux experience. Ark Linuxs main goal is ease of use, and the inclusion of many tools end users will need. Ark Linux is fully Open Source and Free Software, meaning, basically, you can... Platforms: *nix

License: Freeware Size: 699 MB Download (105): Ark Linux 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: 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: June 19, 2010 | Visits: 947

XML::All XML::All is a Perl module that contains overloaded XML objects. SYNOPSIS use XML::All; Â my $xml = < < a href=/ >1 < b >2< /b > < em >3< /em >< /a > >; Â print $$xml; # a print join ", ", @$xml; # 1, < b >2< /b >, < em >3< /em > print join ", ", %$xml; # href, / Â print $xml->b();... Platforms: *nix

License: Freeware Size: 25.6 KB Download (93): XML::All Download

Added: April 23, 2010 | Visits: 820

XML::Literal XML::Literal is a Perl module with syntax support for XML literals. SYNOPSIS # This is not a source filter: it just augments glob(). use XML::Simple; use XML::Literal &XMLin; # Simple element my $xml1 = < hr/ >; # With variable interpolation my $xml2 = < input value=$ARGV[0] / >; #... Platforms: *nix

License: Freeware Size: 24.58 KB Download (94): XML::Literal Download

Added: January 03, 2010 | Visits: 1.452

Linux::Joystick Linux::Joystick is an object-oriented, pure Perl API for accessing joystick devices under Linux-based operating systems. Linux::Joystick module is capable of using either blocking or non-blocking I/O, and represents each axis change or button press as a Linux::Joystick::Event object. USAGE If... Platforms: *nix

License: Freeware Size: 22.53 KB Download (140): Linux::Joystick Download

Added: August 10, 2010 | Visits: 872

XML::Essex::Event XML::Essex::Event is a base event class, also used for unknown event types. Stringifies as $event->type . "()" to indicate an event that has no natural way to represented in XML, or for ones that havent been handled yet in Essex. Methods new XML::Event->new( a => 1, b => 2 );... Platforms: *nix

License: Freeware Size: 43.01 KB Download (95): XML::Essex::Event Download

Added: October 11, 2010 | Visits: 1.151

XML::Filter::Dispatcher::Compiler XML::Filter::Dispatcher::Compiler can compile rulesets in to code. SYNOPSIS use XML::Filter::Dispatcher::Compiler qw( xinline ); my $c = XML::Filter::Dispatcher::Compiler->new( ... ) my $code = $c->compile( Package => "My::Filter", Rules => [ a/b/c => xinline q{warn "found a/b/c"}, ],... Platforms: *nix

License: Freeware Size: 88.06 KB Download (103): XML::Filter::Dispatcher::Compiler Download

Added: April 11, 2010 | Visits: 1.060

XML::Filter::DocSplitter XML::Filter::DocSplitter does multipass processing of documents. SYNOPSIS ## See XML::SAX::???? for an easier way to use this filter. use XML::SAX::Machines qw( Machine ) ; my $m = Machine( [ Intake => "XML::Filter::DocSplitter" => qw( Filter ) ], [ Filter => "My::Filter" => qw( Merger... Platforms: *nix

License: Freeware Size: 43.01 KB Download (102): XML::Filter::DocSplitter Download

Added: January 23, 2010 | Visits: 890

XML::Filter::Tee XML::Filter::Tee can send SAX events to multiple processor, with switching. SYNOPSIS my $t = XML::Filter::Tee->new( { Handler => $h0 }, { Handler => $h1 }, { Handler => $h2 }, ... ); ## Altering the handlers list: $t->set_handlers( $h0, $h1, $h2, $h3 ); ## Controlling flow to a... Platforms: *nix

License: Freeware Size: 43.01 KB Download (106): XML::Filter::Tee Download

Added: June 24, 2010 | Visits: 1.303

XML::SAX::Machine XML::SAX::Machine is a Perl module that can manage a collection of SAX processors. SYNOPSIS ## Note: See XML::SAX::Pipeline and XML::SAX::Machines first, ## this is the gory, detailed interface. use My::SAX::Machines qw( Machine ); use My::SAX::Filter2; use My::SAX::Filter3; my... Platforms: *nix

License: Freeware Size: 43.01 KB Download (103): XML::SAX::Machine Download

Added: June 26, 2010 | Visits: 894

XML::Filter::Dispatcher::AsStructHandler XML::Filter::Dispatcher::AsStructHandler Perl module can help you convert SAX stream in to simple, data-oriented structure. SYNOPSIS ## Ordinarily used via the XML::Filter::Dispatchers as_data_struct() ## built-in extension function for XPath This SAX2 handler builds a simple hash from... Platforms: *nix

License: Freeware Size: 88.06 KB Download (101): XML::Filter::Dispatcher::AsStructHandler Download

Added: April 22, 2010 | Visits: 813

XML::Filter::DataIndenter XML::Filter::DataIndenter is a SAX2 Indenter for data oriented XML. SYNOPSIS use XML::Filter::DataIndenter; use XML::SAX::Machines qw( Pipeline ); Pipeline( XML::Filter::DataIndenter => *STDOUT ); ALPHA CODE ALERT: This is the first release. Feedback and patches welcome. In data... Platforms: *nix

License: Freeware Size: 3.07 KB Download (88): XML::Filter::DataIndenter Download

Added: July 22, 2010 | Visits: 919

XML::Filter::Dispatcher XML::Filter::Dispatcher is a path based event dispatching with DOM support. SYNOPSIS use XML::Filter::Dispatcher qw( :all ); my $f = XML::Filter::Dispatcher->new( Rules => [ foo => &handle_foo_start_tag, @bar => &handle_bar_attr, ## Send any elts and their contents to $handler... Platforms: *nix

License: Freeware Size: 88.06 KB Download (93): XML::Filter::Dispatcher Download

Added: February 04, 2010 | Visits: 676

XML::ValidWriter XML::ValidWriter is DOCTYPE driven valid XML output. SYNOPSIS ## As a normal perl object: $writer = XML::ValidWriter->new( DOCTYPE => $xml_doc_type, OUTPUT => *FH ) ; $writer->startTag( b1 ) ; $writer->startTag( c2 ) ; $writer->end ; ## Writing to a scalar: $writer =... Platforms: *nix

License: Freeware Size: 28.67 KB Download (93): XML::ValidWriter Download

Added: September 21, 2010 | Visits: 2.420

Puppy Linux Puppy Linux is an evolutionary operating system, based on GNU Linux. Whats different here is that Puppy is extraordinarily small, yet quite full featured. Puppy Linux can boot into a 64MB ramdisk, and thats it, the whole caboodle runs in RAM. Unlike live CD distributions that have to keep... Platforms: *nix

License: Freeware Size: 93.2 MB Download (233): Puppy Linux Download

Added: May 03, 2010 | Visits: 2.164

Linux Advanced Routing & Traffic Control HOWTO Linux Advanced Routing & Traffic Control HOWTO is a document concerning iproute2, traffic control (shaping), and more! The LARTC-HOWTO describes many advanced ways of routing and shaping traffic. Using the HOWTO, you will be able to shape traffic in myriad ways, which will help you lower... Platforms: *nix


Added: June 07, 2010 | Visits: 1.320

Beyond Linux From Scratch Beyond Linux From Scratch or BLFS in short, is a project that continues where the LFS book finishes. It assists users in developing their systems according to their needs by providing a broad range of instructions for installing and configuring various packages on top of a base LFS system. Why... Platforms: *nix

License: Freeware Download (102): Beyond Linux From Scratch Download

Added: August 15, 2010 | Visits: 966

Linux Kernel Linux Kernel is the essential part of Linux, responsible for resource allocation, low-level hardware interfaces, security, simple communications, and basic file system management. Linux is a clone of the operating system Unix, written from scratch by Linus Torvalds with assistance from a... Platforms: *nix

License: Freeware Size: 54.3 MB Download (111): Linux Kernel Download

< 1 2 3 4 5