home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 79 / IOPROG_79.ISO / soft / Tools / XMLSPYEnt2004 / XMLSPYEntComplete2004.exe / Data1.cab / _77896481ADC84759B39E29478C28234C < prev    next >
Encoding:
Text File  |  2003-07-30  |  3.5 KB  |  83 lines

  1. <!-- bookmark 1.0.0 DTD 2001-09-27
  2. file: bookmark100.dtd  
  3.    
  4. Authors: Tom McLaughlin and Michael Moodie
  5.  
  6.  
  7. The following identifiers apply to this DTD: 
  8. "-//NISO//DTD bookmark v1.0.0//EN"
  9. "http://www.loc.gov/nls/z3986/v100/bookmark100.dtd"   
  10. -->  
  11.  
  12.       
  13. <!-- ********************* Entities ******************* -->
  14. <!ENTITY % uri "CDATA">
  15. <!-- ********************* Elements ********************* -->
  16. <!-- BookmarkSet: The set of bookmarks for a book consists of the title, a unique identifier of the book, the last place the reader left off and zero or more bookmarks, highlights, and associated audio or textual notes. This set is intended for export of bookmarks, highlights and notes to another player; the markup is not required for a player's internal representation of bookmarks.
  17.  -->
  18. <!ELEMENT bookmarkSet    (title, uid, lastmark?, (bookmark | hilite)*) >
  19. <!-- Title: The book's title in text and an optional audio clip.
  20.  -->
  21. <!ELEMENT title    (text, audio?) >
  22.  
  23. <!-- uid: A globally unique identifier for the book.
  24.  -->
  25. <!ELEMENT uid    (#PCDATA) >
  26.  
  27. <!-- Bookmark: Location and optional note. Location consists of a uri pointing to the id attribute of the <par> element in the SMIL file that contains the bookmark plus a time offset in seconds (or character offset) to the exact place.  Player should by default automatically number bookmarks in the order in which they fall in the book.
  28.  -->
  29. <!ELEMENT bookmark    (ncxRef, uri, (timeOffset | charOffset), note?) >
  30. <!ATTLIST bookmark
  31.     label        CDATA        #IMPLIED
  32. >  
  33.  
  34. <!-- NcxRef: Captures current location in NCX (the id of the current navPoint)at time lastmark, bookmark, or highlight is set.  Ensures that current location in NCX and SMIL are synchronized after moving to a lastmark, etc., so that any global navigation commands issued by the user will start from the current location. -->
  35. <!ELEMENT ncxRef       (#PCDATA)>
  36.  
  37. <!-- Lastmark: Location where reader left off and where player will resume play when restarted.
  38.  -->
  39. <!ELEMENT lastmark    (ncxRef, uri, (timeOffset | charOffset)) >
  40.  
  41. <!-- Hilite: A block of text with an optional note attached.
  42.  -->
  43. <!ELEMENT hilite    (hiliteStart, hiliteEnd, note?) >
  44. <!ATTLIST hilite
  45.     label        CDATA        #IMPLIED
  46. >  
  47.  
  48. <!-- HilStart: Starting point of highlighted block.
  49.  -->
  50. <!ELEMENT hiliteStart    (ncxRef, uri, (timeOffset | charOffset)) >
  51.  
  52. <!-- HilEnd: End point of highlighted block.
  53.  -->
  54. <!ELEMENT hiliteEnd        (ncxRef, uri, (timeOffset | charOffset)) >
  55.  
  56. <!-- Uri: pointer to id of <par> or <seq> in SMIL, to id in text-only file, or to audio file that contains the bookmark.
  57.  -->
  58. <!ELEMENT uri    (#PCDATA) >
  59.  
  60. <!-- Timeoffset: Exact position of bookmark in SMIL file or audio-only file referenced by the uri; in seconds.fraction (seconds=DIGIT+, fraction=3DIGIT).
  61.  -->
  62. <!ELEMENT timeOffset    (#PCDATA) >
  63.  
  64. <!-- Charoffset: Exact position of bookmark in text-only file referenced by the uri: in characters, counting from nearest previous tag with an id.  White space is normalized (collapsed to one character) and tags are not counted.
  65.  -->
  66. <!ELEMENT charOffset     (#PCDATA) >
  67.  
  68. <!-- Note: The note is for the user's input, random thoughts, musings, etc. It can be text or audio or both.
  69.  -->
  70. <!ELEMENT note        (text?, audio?) >
  71.  
  72. <!-- Text: Text of title or note. 
  73.  -->
  74. <!ELEMENT text    (#PCDATA) >
  75. <!-- Audio: Audio clip of user-recorded note, in any format supported by standard.
  76.  -->
  77. <!ELEMENT audio    EMPTY >
  78. <!ATTLIST audio
  79.     
  80.    src         %uri;    #REQUIRED
  81.    clipBegin   CDATA    #IMPLIED
  82.    clipEnd     CDATA    #IMPLIED
  83. >