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

Dom Inspector software
Filter: All | Freeware | Demo
 

Dom Inspector

< 1 2 3 4 5 > 
Added: April 11, 2010 | Visits: 1.546

XML::DOM::Lite::XPath XML::DOM::Lite::XPath is a Perl module for XPath support for XML::DOM::Lite. SYNOPSIS # XPath use XML::DOM::Lite qw(XPath); $result = XPath->evaluate(/path/to/*[@attr="value"], $contextNode); This XPath library is fairly complete - there are still a few functions outstanding which need to... Platforms: *nix

License: Freeware Size: 31.74 KB Download (127): XML::DOM::Lite::XPath Download

Added: January 07, 2010 | Visits: 1.024

XML::DOM::Lite::XSLT [COPYRIGHT] SYNOPSIS use XML::DOM::Lite qw(Parser XSLT); $parser = Parser->new( whitespace => strip ); $xsldoc = $parser->parse($xsl); $xmldoc = $parser->parse($xml); $output = XSLT->process($xmldoc, $xsldoc);. Platforms: *nix

License: Freeware Size: 31.74 KB Download (97): XML::DOM::Lite::XSLT Download

Added: May 13, 2010 | Visits: 1.147

XML::DOM::Lite 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) $doc =... Platforms: *nix

License: Freeware Size: 30.72 KB Download (97): XML::DOM::Lite Download

Added: March 18, 2010 | Visits: 1.096

SVG::DOM SVG::DOM is a Perl library with DOM (Document Object Model) methods for SVG objects. SVG::DOM provides a selection of methods for accessing and manipulating SVG elements through DOM-like methods such as getElements, getChildren, getNextSibling and so on. Currently only methods that provide... Platforms: *nix

License: Freeware Size: 51.2 KB Download (97): SVG::DOM Download

Added: January 08, 2010 | Visits: 1.073

Word Inspector Word Inspector project is a GTK frontend to Dict dictionary program. The dict program allows you to search through one or more dictionary-like reference books for a word, then displays its definition. Word Inspector expands that by allowing you to enter words to look up more easily, easily... Platforms: *nix

License: Freeware Size: 55.3 KB Download (97): Word Inspector Download

Added: October 21, 2010 | Visits: 1.012

XML::DOM::Node 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... Platforms: *nix

License: Freeware Size: 112.64 KB Download (104): XML::DOM::Node Download

Added: May 16, 2010 | Visits: 1.059

XML::DOM::Element 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" > <... Platforms: *nix

License: Freeware Size: 112.64 KB Download (102): XML::DOM::Element Download

Added: August 18, 2010 | Visits: 1.321

XML::DOM::Lite::Document 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"); $node... Platforms: *nix

License: Freeware Size: 31.74 KB Download (104): XML::DOM::Lite::Document Download

Added: March 02, 2010 | Visits: 829

XML::DOM XML::DOM is a perl module for building DOM Level 1 compliant document structures. SYNOPSIS use XML::DOM; my $parser = new XML::DOM::Parser; my $doc = $parser->parsefile ("file.xml"); # print all HREF attributes of all CODEBASE elements my $nodes = $doc->getElementsByTagName... Platforms: *nix

License: Freeware Size: 143.36 KB Download (97): XML::DOM Download

Added: May 12, 2010 | Visits: 991

XML::DOM::Document XML::DOM::Document is an XML document node in XML::DOM. XML::DOM::Document extends XML::DOM::Node. It is the main root of the XML document structure as returned by XML::DOM::Parser::parse and XML::DOM::Parser::parsefile. Since elements, text nodes, comments, processing instructions, etc.... Platforms: *nix

License: Freeware Size: 112.64 KB Download (106): XML::DOM::Document Download

Added: September 21, 2010 | Visits: 702

XML::DOM::Attr XML::DOM::Attr is an XML attribute in XML::DOM. XML::DOM::Attr extends XML::DOM::Node. The Attr nodes built by the XML::DOM::Parser always have one child node which is a Text node containing the expanded string value (i.e. EntityReferences are always expanded.) EntityReferences may be added... Platforms: *nix

License: Freeware Size: 112.64 KB Download (97): XML::DOM::Attr Download

Added: May 20, 2010 | Visits: 667

XML::DOM::DOMImplementation XML::DOM::DOMImplementation is a information about XML::DOM implementation. The DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model. The DOM Level 1 does not specify a way of creating a... Platforms: *nix

License: Freeware Size: 112.64 KB Download (97): XML::DOM::DOMImplementation Download

Added: May 02, 2010 | Visits: 714

XML::DOM::Text 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 elements content, the text... Platforms: *nix

License: Freeware Size: 112.64 KB Download (100): XML::DOM::Text Download

Added: October 03, 2010 | Visits: 710

XML::DOM::XMLDecl XML::DOM::XMLDecl is a XML declaration in XML::DOM. XML::DOM::XMLDecl extends XML::DOM::Node, but is not part of the DOM Level 1 specification. It contains the XML declaration, e.g. < ?xml version="1.0" encoding="UTF-16" standalone="yes"? > See also XML::DOM::Document::getXMLDecl.... Platforms: *nix

License: Freeware Size: 112.64 KB Download (91): XML::DOM::XMLDecl Download

Added: November 18, 2010 | Visits: 1.012

XML::Generator::DOM XML::Generator::DOM is an XML::Generator subclass for producing DOM trees instead of strings. SYNOPSIS use XML::Generator::DOM; my $dg = XML::Generator::DOM->new(); my $doc = $dg->xml($dg->xmlcmnt("Test document."), $dg->foo({baz => bam}, 42)); print $doc->toString; yields: < ?xml... Platforms: *nix

License: Freeware Size: 21.5 KB Download (118): XML::Generator::DOM Download

Released: October 01, 2011  |  Added: December 06, 2012 | Visits: 3.524

EventLog Inspector Manage local and remote Windows events more effectively with EventLog Inspector. The new cost-effective solution allows system administrators to extend Windows event log with more features. EventLog Inspector provides administrators the ability to broadcast event log events to a dedicated syslog... Platforms: Windows

License: Freeware Size: 2.93 MB Download (507): EventLog Inspector Download

Released: October 26, 2012  |  Added: October 26, 2012 | Visits: 561

SIP Inspector SIP Inspector is a tool written in JAVA to simulate different SIP messages and scenarios. You can create your own SIP signaling scenarios, customize SIP messages and monitor incoming and outgoing messages. The tool can play RTP streams from a pcap file. for WindowsAll Platforms: Windows

License: Freeware Download (69): SIP Inspector Download

Released: August 11, 2012  |  Added: August 11, 2012 | Visits: 538

Signal Inspector Signal Inspector is a basic signal generator and analysis tool. It features an oscilloscope, a spectrum analyzer and a spectrogram, plus tone, noise, and pulse generators. Platforms: Mac

License: Freeware Size: 348.16 KB Download (71): Signal Inspector Download

Added: May 10, 2013 | Visits: 465

Event DOM Class This is a little JS class that's designed to take an incoming DOM event and convert it to a cross-browser object.Anyone who has worked with JS long enough, has come to realize that each browser handles keyboard events differently. This class will attempt to return the data in a manner that's... Platforms: Windows, Mac, *nix, JavaScript, BSD Solaris

License: Freeware Download (55): Event DOM Class Download

Added: May 10, 2013 | Visits: 464

Remove whitespace from an XML DOM When creating a DOM from an XML source, XML parsers are required to consider several conditions when deciding whether to include whitespace-only text nodes. This function ignores all of those conditions and removes all whitespace-only text descendants of the specified node. If the unlink flag is... Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (51): Remove whitespace from an XML DOM Download

< 1 2 3 4 5 >