[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: DTD Processor?

  • From: Norman Gray <norman@a...>
  • To: David Wang <dwang@m...>
  • Date: Thu, 30 Mar 2000 10:21:28 +0100 (BST)

dtd processor

Greetings,

On Wed, 29 Mar 2000, David Wang wrote:

> I wanted to know if there is a parser and otherwise exposed "object model" for
> DTDs so that DTDs can be programmatically traversed and examined.

You might want to take a look at Earl Hood's perlSGML [1].  This, as
its name suggests, is a Perl module which parses SGML DTDs and
documents.

It allows you to do things like:

    use SGML::DTD;
    
    $dtd = new SGML::DTD;
    
    open (DTDFILE, $dtdfilename) || die "Can't open $dtdfilename";
    $dtd->read_dtd(\*DTDFILE);
    
    @elements = $dtd->get_elements(0);
    
    @top_element = $dtd->get_top_elements();
    
    foreach $e (@elements) {
        print "<dtdelement gi='$e'>\n";
    
        @parents = $dtd->get_parents ($e);
        print "<dtdparents>\n";
        foreach $pe (@parents) {
            print "<dtdelemref id='", lc($pe), "'>\n";
        }
        print "</dtdparents>\n";
    
        @content = $dtd->get_base_children ($e, 1);
    
        [...]
    [blah blah blah]

All the best,

Norman


[1] http://www.oac.uci.edu/indiv/ehood/perlSGML.html

-- 
---------------------------------------------------------------------------
Norman Gray                        http://www.astro.gla.ac.uk/users/norman/
Physics and Astronomy, University of Glasgow, UK     norman@a...


***************************************************************************
This is xml-dev, the mailing list for XML developers.
To unsubscribe, mailto:majordomo@x...&BODY=unsubscribe%20xml-dev
List archives are available at http://xml.org/archives/xml-dev/
***************************************************************************

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.