| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | XML DataDesk |
script | XML | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 2 | eZ xml |
script | PHP | Free |
View Detail
|
|||||||||
Tags:
|
||||||||||||||
| 3 | GB-XML |
script | PHP | Free Additional Info: Copyright noticions have to remain intact |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 4 | XML.getElementsByTagName() |
script | Flash | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 5 | XML - Editors, Tutorials, Training, Database, XML Tools |
script | XML | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 6 | XML-Guestbook |
script | PHP | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 7 | XML Tutorials, XMl Ebooks, XML Articles |
script | XML | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 8 | XML::All 0.02 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
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(); # < b >2< /b > print $xml->b() * 10; # 20 print $xml->(); # 1 Â $$xml = link; print $xml; # < link href=/ >...< /link > Â my $em = $xml->em + < hr/ >; print $em; # < em >3< hr / >< /em > $xml -= < em/ >; print $xml; # < link href=/ >1 < b >2/b > < /link > $xml->( b => sub { $$_ = em } ); print $xml; # < link href=/ >1 < em >2/em> < /link > This module provides a handy wrapper around XML::Twig and XML::Literal to provide easy accessors to the XML structures. Tags: |
||||||||||||||
| 9 | XML Tutorial |
script | XML | Free Additional Info: Website |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 10 | XML::MyXML 0.03 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
XML::MyXML is a simple XML module. SYNOPSIS use XML::MyXML qw(tidy_xml xml_to_object); my $xml = "< item >< name >Table< /name >< price >< usd >10.00< /usd >< eur >8.50< /eur >< /price >< /item >"; print tidy_xml($xml); my $obj = xml_to_object($xml); print "Price in Euros = " . $obj->path(price/eur)->value; EXPORT tidy_xml, object_to_xml, xml_to_object, simple_to_xml FUNCTIONS tidy_xml($rawxml) Returns the XML string in a tidy format (with tabs & newlines) xml_to_object($rawxml) Creates an XML::MyXML::Object object from the raw XML provided Tags: |
||||||||||||||
| 11 | XML Converter |
script | XML | $100.00 Additional Info: no limitations |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 12 | XML Registry |
script | XML | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 13 | XML Parser |
script | PHP | Free Additional Info: MIT |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 14 | Liquid Xml Validator |
script | XML | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 15 | XML::DT 0.45 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
XML::DT is a package for down translation of XML files. SYNOPSIS use XML::DT; %xml=( music => sub{"Music from: $cn"}, lyrics => sub{"Lyrics from: $v{name}n"}, title => sub{ uc($c) }, -default => sub{"$q:$c"} ); print dt($filename,%xml); ABSTRACT This module is a XML down processor. It maps tag (element) names to functions to process that element and respective contents. This module processes XML files with an approach similar to OMNIMARK. As XML parser it uses XML::Parser or XML::LibXML module in an independent way. At configure stage, you should choose one of the back-ends. Tags: |
||||||||||||||
| 16 | XML? Bible |
script | XML | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 17 | XML/SWF Charts |
script | XML | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 18 | XML Viewer |
script | XML | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 19 | VisualScript XML 1.2 |
windows | Software Development->File Editors | $495 |
View Detail
|
|||||||||
VisualScript XML is the first visual scripting tool for XML. Visual scripting allows you to program XML statements into graphical symbols, then simply "drag and drop" the symbols to sketch the flow of a business process. Then the software translates that sketch into an XML script! VisualScript is a "must have" for every XML developers toolbox. It allows you to (1) define and propagate XML standards, (2) rapidly prototype and demonstrate XML solutions, (3) represent real-world hierarchy and conditional relationships in ways impossible with forms, and (4) help business users translate their process knowledge into XML. VisualScript is to XML what FrontPage was to HTML. VisualScript XML provides the following features and benefits: -"Intelligent" connectors help you quickly create diagrams; - Save your own libraries of re-usable, programmed symbols; - Works with any variety of XML (or any other scripting language); - Generate XML in any number of different languages from the same diagram; - Easily add your own custom models to the user interface; - Support for external include files; - Automatic statement ordering, including hierarchy; - Automatically validate your XML scripts for proper syntax and correspondence with schema; - Includes thousands of built-in symbols ready to be programmed with your XML code, making it simple to generate XML from virtually any type of diagram. Download the free 30-day trial of VisualScript XML today. Tags:
|
||||||||||||||
| 20 | XML::Genx 0.21 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
XML::Genx is a simple, correct XML writer. SYNOPSIS use XML::Genx; my $w = XML::Genx->new; eval { # < foo >bar< /foo > $w->StartDocFile( *STDOUT ); $w->StartElementLiteral( foo ); $w->AddText( bar ); $w->EndElement; $w->EndDocument; }; die "Writing XML failed: $@" if $@; This class is used for generating XML. The underlying library (genx) ensures that the output is well formed, canonical XML. That is, all characters are correctly encoded, namespaces are handled properly and so on. If you manage to generate non-well-formed XML using XML::Genx, please submit a bug report. The API is mostly a wrapper over the original C library. Consult the genx documentation for the fine detail. This code is based on genx beta5. Tags: |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
