home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / XML Writer 2.12 / XML writer.exe / file0010.bin < prev    next >
Encoding:
Extensible Markup Language  |  2003-04-14  |  1.9 KB  |  64 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--What you can do with this file:
  4.     1. Check that it validates against the DTD, Library.dtd, assigned to it.
  5.        To validate, select 'Validate' from the Tools menu, or press F7.-->
  6.  
  7. <!-- DOCTYPE declaration, specifying an external DTD file, Library.dtd.-->
  8. <!DOCTYPE library SYSTEM "Library.dtd">
  9.  
  10. <library>
  11.     <name>Northmead Local Library</name>
  12.     <book status="available">
  13.         <publisher>Wiley International Edition</publisher>
  14.         <title>Circuits, Devices and Systems</title>
  15.         <edition>5th</edition>
  16.         <author>
  17.             <first-name>Ralph J</first-name>
  18.             <last-name>Smith</last-name>
  19.         </author>
  20.         <author>
  21.             <first-name>Richard C</first-name>
  22.             <last-name>Dorf</last-name>
  23.         </author>
  24.         <isbn>0471552216</isbn>
  25.         <callno>005.133/C</callno>
  26.         <online_url>http://library/online_books/005133C.html</online_url>
  27.     </book>
  28.     <book status="on_loan">
  29.         <publisher>Prentice Hall PTR</publisher>
  30.         <title>The C Programming Language</title>
  31.         <edition>2nd</edition>
  32.         <author>
  33.             <first-name>Brian W</first-name>
  34.             <last-name>Kernighan</last-name>
  35.         </author>
  36.         <author>
  37.             <first-name>Dennis M</first-name>
  38.             <last-name>Ritchie</last-name>
  39.         </author>
  40.         <isbn>0131103628</isbn>
  41.         <callno>005.133/C2</callno>
  42.         <online_url>http://library/online_books/005133C2.html</online_url>
  43.     </book>
  44.     <journal series="XML Users Journal">
  45.         <title>XML Users Journal August 1999</title>
  46.         <date>1999-08-01</date>
  47.         <callno>005.133/C</callno>
  48.     </journal>
  49.     <video status="available">
  50.         <title>Lord of the Rings: The Fellowship of the Ring</title>
  51.         <year>2001</year>
  52.         <director>
  53.             <name>Peter Jackson</name>
  54.         </director>
  55.         <genre>fantasy</genre>
  56.         <genre>adventure</genre>
  57.         <callno>643.11/L</callno>
  58.     </video>
  59. </library>
  60.  
  61. <!--This file was created using XMLwriter v2.0 Beta 2.
  62.     Copyright Wattle Software 2002. All rights reserved.
  63.     http://XMLwriter.net/-->
  64.