OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re:



Sorry guys here they come.


----- Original Message -----
From: "Rajesh_Singh" <Rajesh_Singh@BET.Satyam.com>
To: "S. Jyotinarayan" <ncjyoti@yahoo.com>
Sent: Thursday, May 03, 2001 5:14 PM
Subject: RE:


> hey Jyoti..there is no attachment
>
> > ----------
> > From: S. Jyotinarayan[SMTP:ncjyoti@yahoo.com]
> > Reply To: S. Jyotinarayan
> > Sent: Thursday, May 03, 2001 4:59 PM
> > To: XML-INTEREST@mail.javasoft.com
> >
> > Hi all,
> > Can you check out the example in the attachment and tell me what kind of
> > parsing is being used?
> >
> > Thanx in advance
> > Jyotinarayan.
> >
Title: Calling Nodes recursively
<?xml version="1.0" standalone="no"?>
<!DOCTYPE movies SYSTEM "Movies.dtd">

<movies>
  <movie type="comedy" rating="PG-13" review="5" year="1987">
    <title>Raising Arizona</title>
    <writer>Ethan Coen</writer>
    <writer>Joel Coen</writer>
    <producer>Ethan Coen</producer>
    <director>Joel Coen</director>
    <actor>Nicolas Cage</actor>
    <actor>Holly Hunter</actor>
    <actor>John Goodman</actor>
    <comments>A classic one-of-a-kind screwball love story.</comments>
  </movie>

  <movie type="comedy" rating="R" review="5" year="1988">
    <title>Midnight Run</title>
    <writer>George Gallo</writer>
    <producer>Martin Brest</producer>
    <director>Martin Brest</director>
    <actor>Robert De Niro</actor>
    <actor>Charles Grodin</actor>
    <comments>The quintessential road comedy.</comments>
  </movie>

  <movie type="mystery" rating="R" review="5" year="1995">
    <title>The Usual Suspects</title>
    <writer>Christopher McQuarrie</writer>
    <producer>Bryan Singer</producer>
    <producer>Michael McDonnell</producer>
    <director>Bryan Singer</director>
    <actor>Stephen Baldwin</actor>
    <actor>Gabriel Byrne</actor>
    <actor>Benicio Del Toro</actor>
    <actor>Chazz Palminteri</actor>
    <actor>Kevin Pollak</actor>
    <actor>Kevin Spacey</actor>
    <comments>A crime mystery with incredibly intricate plot twists.</comments>
  </movie>

  <movie type="sci-fi" rating="PG-13" review="4" year="1989">
    <title>The Abyss</title>
    <writer>James Cameron</writer>
    <producer>Gale Anne Hurd</producer>
    <director>James Cameron</director>
    <actor>Ed Harris</actor>
    <actor>Mary Elizabeth Mastrantonio</actor>
    <comments>A very engaging underwater odyssey.</comments>
  </movie>
</movies>
<!ELEMENT movies (movie)+>

<!ELEMENT movie (title, writer+, producer+, director+, actor*, comments?)>
<!ATTLIST movie
  type (drama | comedy | adventure | sci-fi | mystery | horror | romance |
    documentary) "drama"
  rating (G | PG | PG-13 | R | X) "PG"
  review (1 | 2 | 3 | 4 | 5) "3"
  year CDATA #IMPLIED>

<!ELEMENT title (#PCDATA)>

<!ELEMENT writer (#PCDATA)>

<!ELEMENT producer (#PCDATA)>

<!ELEMENT director (#PCDATA)>

<!ELEMENT actor (#PCDATA)>

<!ELEMENT comments (#PCDATA)>