home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2005 November / WNnov2005.iso / Windows / Equipement / Media-portal / Setup.msi / _6F5CFA107520147A76D0EEE5A1A7F29D / _411D3300D3044037B1290D7195848D02 < prev    next >
Text File  |  2004-04-21  |  22KB  |  524 lines

  1. <!-- DTD for TV listings
  2.  
  3. This is a DTD to represent a TV listing.  It doesn't explicitly group
  4. programmes by day or by channel, instead broadcast time and channel
  5. are attributes of the 'programme' element.  Optionally, data about the
  6. TV channels used can be stored in 'channel' elements.
  7.  
  8. Data about a TV programme are stored in the subelements of element
  9. 'programme', but metadata such as when it will be broadcast are stored
  10. as attributes.
  11.  
  12. Many of the details have a 'lang' attribute so that you can
  13. store them in multiple languages or have mixed languages in a single
  14. listing.  This 'lang' should be the two-letter code such as 'en' or
  15. 'fr_FR'.  Or you can just leave it out and let your reader take a
  16. guess.
  17.  
  18. An example XML file for this DTD might look like this:
  19.  
  20. <tv generator-info-name="my listings generator">
  21.   <channel id="3sat.de">
  22.     <display-name lang="de">3SAT</display-name>
  23.   </channel>
  24.   <channel id="das-erste.de">
  25.     <display-name lang="de">ARD</display-name>
  26.     <display-name lang="de">Das Erste</display-name>
  27.   </channel>
  28.  
  29.   <programme start="200006031633" channel="3sat.de">
  30.     <title lang="de">blah</title>
  31.     <title lang="en">blah</title>
  32.     <desc lang="de">
  33.        Blah Blah Blah.
  34.     </desc>
  35.     <credits>
  36.       <director>blah</director>
  37.       <actor>a</actor>
  38.       <actor>b</actor>
  39.     </credits>
  40.     <date>19901011</date>
  41.     <country>ES</country>
  42.     <episode-num system="xmltv_ns">2 . 9 . 0/1</episode-num>
  43.     <video>
  44.       <aspect>16:9</aspect>
  45.     </video>
  46.     <rating system="MPAA">
  47.       <value>PG</value>
  48.       <icon src="pg_symbol.png" />
  49.     </rating>
  50.     <star-rating>
  51.       <value>3/3</value>
  52.     </star-rating>
  53.   </programme>
  54.   <programme> ... </programme>
  55.   ...
  56. </tv>
  57.  
  58. This describes two channels and then a programme broadcast on one of
  59. the channels, then some more programmes.  Almost everything in the DTD
  60. is optional, so you can write files which are much simpler than this
  61. example.
  62.  
  63. All dates and times in this DTD follow the same format, loosely based
  64. on ISO 8601.  They can be 'YYYYMMDDhhmmss' or some initial
  65. substring, for example if you only know the year and month you can
  66. have 'YYYYMM'.  You can also append a timezone to the end; if no
  67. explicit timezone is given, UTC is assumed.  Examples:
  68. '200007281733 BST', '200209', '19880523083000 +0300'.  (BST == +0100.)
  69.  
  70. Unless specified otherwise, textual element content may not contain
  71. newlines - this is to make it easy to convert into line-oriented
  72. formats, and to avoid the question of what exactly a newline would
  73. mean in the middle of someone's name or whatever.  Leading and
  74. trailing whitespace in element content is not significant.
  75.  
  76. At present versions of this DTD correspond to releases of the 'xmltv'
  77. package, which is a set of programs to generate and manipulate files
  78. conforming to this DTD.  Written by Ed Avis (ed@membled.com) and
  79. Gottfried Szing, thanks to others for suggestions.
  80.  
  81. $Id: xmltv.dtd,v 1.1 2004/04/21 14:57:00 yamp Exp $
  82.  
  83. -->
  84.  
  85. <!-- The root element, tv.
  86.  
  87. Date should be the date when the listings were originally produced in
  88. whatever format; if you're converting data from another source, then
  89. use the date given by that source.  The date when the conversion
  90. itself was done is not important.
  91.  
  92. To indicate the source of the listings, there are three attributes you
  93. can define:
  94.  
  95. 'source-info-url' is a URL describing the data source in
  96. some human-readable form.  So if you are getting your listings from
  97. SAT.1, you might set this to the URL of a page explaining how to
  98. subscribe to their feed.  If you are getting them from a website, the
  99. URL might be the index of the site or at least of the TV listings
  100. section.
  101.  
  102. 'source-info-name' is the link text for that URL; it should
  103. generally be the human-readable name of your listings supplier.
  104. Sometimes the link text might be printed without the link itself, in
  105. hardcopy listings for example.
  106.  
  107. 'source-data-url' is where the actual data is grabbed from.  This
  108. should link directly to the machine-readable data files if possible,
  109. but it's not rigorously defined what 'actual data' means.  If you are
  110. parsing the data from human-readable pages, then it's more appropriate
  111. to link to them with the source-info stuff and omit this attribute.
  112.  
  113. To publicize your wonderful program which generated this file, you can
  114. use 'generator-info-name' (preferably in the form 'progname/version')
  115. and 'generator-info-url' (a link to more info about the program).
  116. -->
  117. <!ELEMENT tv (channel*, programme*)>
  118. <!ATTLIST tv date   CDATA #IMPLIED
  119.              source-info-url     CDATA #IMPLIED
  120.              source-info-name    CDATA #IMPLIED
  121.              source-data-url     CDATA #IMPLIED
  122.              generator-info-name CDATA #IMPLIED
  123.              generator-info-url  CDATA #IMPLIED >
  124.  
  125. <!-- channel - details of a channel
  126.  
  127. Each 'programme' element (see below) should have an attribute
  128. 'channel' giving the channel on which it is broadcast.  If you want to
  129. provide more detail about channels, you can give some 'channel'
  130. elements before listing the programmes.  The 'id' attribute of the
  131. channel should match what is given in the 'channel' attribute of the
  132. programme.
  133.  
  134. Typically, all the channels used in a particular TV listing will be
  135. included and then the programmes using those channels.  But it's
  136. entirely optional to include channel details - you can just leave out
  137. channel elements or provide only some of them.  It is also okay to
  138. give just channels and no programmes, if you just want to describe
  139. what TV channels are available in a certain area.
  140.  
  141. Each channel has one id attribute, which must be unique and should
  142. preferably be in the form suggested by RFC2838 (the 'broadcast'
  143. element of the grammar in that RFC, in other words, a DNS-like name
  144. but without any URI scheme).  Then one or more display names which are
  145. shown to the user.  You might want a different display name for
  146. different languages, but also you can have more than one name for the
  147. same language.  Names listed earlier are considered 'more canonical'.
  148.  
  149. Since the display name is just there as a way for humans to refer to
  150. the channel, it's acceptable to just put the channel number if it's
  151. fairly universal among viewers of the channel.  But remember that this
  152. isn't an official statement of what channel number has been
  153. allocated, and the same number might be used for a different channel
  154. somewhere else.
  155.  
  156. The ordering of channel elements makes no difference to the meaning of
  157. the file, since they are looked up by id and not by their position.
  158. However it makes things like diffing easier if you write the channel
  159. elements sorted by ASCII order of their ids.
  160. -->
  161. <!ELEMENT channel (display-name+, icon*, url*) >
  162. <!ATTLIST channel id CDATA #REQUIRED >
  163.  
  164. <!-- A user-friendly name for the channel - maybe even a channel
  165. number.  List the most canonical / common ones first and the most
  166. obscure names last.  The lang attribute corresponds to abbreviations
  167. mentioned in ISO 3316.
  168. -->
  169. <!ELEMENT display-name (#PCDATA)>
  170. <!ATTLIST display-name lang CDATA #IMPLIED>
  171.  
  172. <!-- A URL where you can find out more about the element that contains
  173. it (programme or channel).  This might be the official site, or a fan
  174. page, whatever you like really.
  175.  
  176. If multiple url elements are given, the most authoritative or official
  177. (which might conflict...) sites should be listed first.
  178. -->
  179. <!ELEMENT url (#PCDATA)>
  180.  
  181. <!-- programme - details of a single programme transmission
  182.  
  183. A show will be exactly the same whether it is broadcast at 18:00 or
  184. 19:00, and on whichever channel.  Technical details like broadcast
  185. time don't affect the content of the programme itself, so they are
  186. included as attributes of this element.  Start time and channel are
  187. the two that you must include.
  188.  
  189. Sometimes VCR programming systems like PDC or VPS have their own
  190. notion of 'start time' which is different from the actual start time,
  191. so there are attributes for that.  In practice, stop time will usually
  192. be the start time of the next programme, but if you can get it more
  193. accurate, good for you.  Similarly, you can specify a code for
  194. Gemstar's Showview or VideoPlus programming systems.
  195.  
  196. TV listings sometimes have the problem of listing two or more
  197. programmes in the same timeslot, such as 'News; Weather'.  We call
  198. this a 'clump' of programmes, and the 'clumpidx' attribute
  199. differentiates between two programmes sharing the same timeslot and
  200. channel.  In this case News would have clumpidx="0/2" and Weather
  201. would have clumpidx="1/2".  If you don't have this problem, be
  202. thankful!
  203.  
  204. It's intended that start time and stop time, when both are present,
  205. make a half-closed interval: a programme is considered to be
  206. broadcasting _at_ its start time but to stop just before its stop
  207. time.  In this way a programme from 11:00 to 12:00 does not overlap
  208. with another programme from 12:00 to 13:00, not even for a moment.
  209. Nor is there any gap between the two.
  210.  
  211. To do: Some means of indicating breaks between programmes on the same
  212. channel.  The 'channel' attribute references the 'id' of a channel
  213. element, but the DTD doesn't give a way to specify this constraint.
  214. Perhaps there is some better XML syntax we could use for that.
  215. -->
  216. <!ELEMENT programme (title+, sub-title*, desc*, credits?, date?,
  217.                      category*, language?, orig-language?, length?,
  218.                      icon*, url*, country*, episode-num?, video?, audio?,
  219.                      previously-shown?, premiere?, last-chance?, new?,
  220.                      subtitles*, rating*, star-rating? )>
  221. <!ATTLIST programme start     CDATA #REQUIRED
  222.                     stop      CDATA #IMPLIED
  223.                     pdc-start CDATA #IMPLIED
  224.                     vps-start CDATA #IMPLIED
  225.                     showview  CDATA #IMPLIED
  226.                     videoplus CDATA #IMPLIED
  227.                     channel   CDATA #REQUIRED
  228.                     clumpidx  CDATA "0/1" >
  229.  
  230. <!-- Programme title, eg 'The Simpsons'. -->
  231. <!ELEMENT title (#PCDATA)>
  232. <!ATTLIST title lang CDATA #IMPLIED>
  233.  
  234. <!-- Sub-title or episode title, eg 'Datalore'.   Should probably be
  235. called 'secondary title' to avoid confusion with captioning!
  236. -->
  237. <!ELEMENT sub-title (#PCDATA)>
  238. <!ATTLIST sub-title lang CDATA #IMPLIED>
  239.  
  240. <!-- Description of the programme or episode.
  241.  
  242. Unlike other elements, long bits of whitespace here are treated as
  243. equivalent to a single space and newlines are permitted, so you can
  244. break lines and write a pretty-looking paragraph if you wish.
  245. -->
  246. <!ELEMENT desc (#PCDATA)>
  247. <!ATTLIST desc lang CDATA #IMPLIED>
  248.  
  249. <!-- Credits for the programme.
  250.  
  251. People are listed in decreasing order of importance; so for example
  252. the starring actors appear first followed by the smaller parts.  As
  253. with other parts of this file format, not mentioning a particular
  254. actor (for example) does not imply that he _didn't_ star in the film -
  255. so normally you'd list only the few most important people.
  256.  
  257. Adapter can be either somebody who adapted a work for television, or
  258. somebody who did the translation from another language.  Maybe these
  259. should be separate, but if so how would 'translator' fit in with the
  260. 'language' element?
  261. -->
  262. <!ELEMENT credits (director*, actor*, writer*, adapter*, producer*,
  263.                    presenter*, commentator*, guest* )>
  264. <!ELEMENT director    (#PCDATA)>
  265. <!ELEMENT actor       (#PCDATA)>
  266. <!ELEMENT writer      (#PCDATA)>
  267. <!ELEMENT adapter     (#PCDATA)>
  268. <!ELEMENT producer    (#PCDATA)>
  269. <!ELEMENT presenter   (#PCDATA)>
  270. <!ELEMENT commentator (#PCDATA)>
  271. <!ELEMENT guest       (#PCDATA)>
  272.  
  273.  
  274. <!-- The date the programme or film was finished.  This will probably
  275. be the same as the copyright date.
  276. -->
  277. <!ELEMENT date (#PCDATA)>
  278.  
  279. <!-- Type of programme, eg 'soap', 'comedy' or whatever the
  280. equivalents are in your language.  There's no predefined set of
  281. categories and it's okay for a programme to belong to several.
  282. -->
  283. <!ELEMENT category (#PCDATA)>
  284. <!ATTLIST category lang CDATA #IMPLIED>
  285.  
  286. <!-- The language the programme will be broadcast in.  This does not
  287. include the language of any subtitles, but it is affected by dubbing
  288. into a different language.  For example, if a French film is dubbed
  289. into English, language=en and orig-language=fr.
  290.  
  291. There are two ways to specify the language.  You can use the
  292. two-letter codes such as en or fr, or you can give a name such as
  293. 'English' or 'Deutsch'.  In the latter case you might want to use the
  294. 'lang' attribute, for example
  295.  
  296. <language lang="fr">Allemand</language>
  297. -->
  298. <!ELEMENT language (#PCDATA)>
  299. <!ATTLIST language lang CDATA #IMPLIED>
  300.  
  301. <!-- The original language, before dubbing.  The same remarks as for
  302. 'language' apply.
  303. -->
  304. <!ELEMENT orig-language (#PCDATA)>
  305. <!ATTLIST orig-language lang CDATA #IMPLIED>
  306.  
  307. <!-- The true length of the programme, not counting advertisements or
  308. trailers.  But this does take account of any bits which were cut out
  309. of the broadcast version - eg if a two hour film is cut to 110 minutes
  310. and then padded with 20 minutes of advertising, length will be 110
  311. minutes even though end time minus start time is 130 minutes.
  312. -->
  313. <!ELEMENT length (#PCDATA)>
  314. <!ATTLIST length units (seconds | minutes | hours) #REQUIRED>
  315.  
  316. <!-- An icon associated with the element that contains it.
  317. src: uri of image
  318. width, height: (optional) dimensions of image
  319.  
  320. These dimensions are pixel dimensions for the time being, eventually
  321. this will change to be more like HTML's 'img'.
  322. -->
  323. <!ELEMENT icon EMPTY>
  324. <!ATTLIST icon src         CDATA #REQUIRED
  325.                width       CDATA #IMPLIED
  326.                height      CDATA #IMPLIED> 
  327.  
  328. <!-- The value of the element that contains it.  This is for elements
  329. that can have both a textual 'value' and an icon.  At present there is
  330. no 'lang' attribute here because things like 'PG' are not translatable
  331. (although a document explaining what 'PG' actually means would be).
  332. It happens that 'value' is used only for this sort of thing.
  333. -->
  334. <!ELEMENT value (#PCDATA)>
  335.  
  336. <!-- A country where the programme was made or one of the countries in
  337. a joint production.  You can give the name of a country, in which case
  338. you might want to specify the language in which this name is written,
  339. or you can give a two-letter uppercase country code, in which case the
  340. lang attribute should not be given.  For example,
  341.  
  342. <country lang="en">Italy</country>
  343. <country>GB</country>
  344. -->
  345. <!ELEMENT country (#PCDATA)>
  346. <!ATTLIST country lang CDATA #IMPLIED>
  347.  
  348. <!-- Episode number
  349.  
  350. Not the title of the episode, its number or ID.  There are several
  351. ways of numbering episodes, so the 'system' attribute lets you specify
  352. which you mean.
  353.  
  354. There are two predefined numbering systems, 'xmltv_ns' and
  355. 'onscreen'.
  356.  
  357. xmltv_ns: This is intended to be a general way to number episodes and
  358. parts of multi-part episodes.  It is three numbers separated by dots,
  359. the first is the series or season, the second the episode number
  360. within that series, and the third the part number, if the programme is
  361. part of a two-parter.  All these numbers are indexed from zero, and
  362. they can be given in the form 'X/Y' to show series X out of Y series
  363. made, or episode X out of Y episodes in this series, or part X of a
  364. Y-part episode.  If any of these aren't known they can be omitted.
  365. You can put spaces whereever you like to make things easier to read.
  366.  
  367. (NB 'part number' is not used when a whole programme is split in two
  368. for purely scheduling reasons; it's intended for cases where there
  369. really is a 'Part One' and 'Part Two'.  The format doesn't currently
  370. have a way to represent a whole programme that happens to be split
  371. across two or more timeslots.)
  372.  
  373. Some examples will make things clearer.  The first episode of the
  374. second series is '1.0.0/1' .  If it were a two-part episode, then the
  375. first half would be '1.0.0/2' and the second half '1.0.1/2'.  If you
  376. know that an episode is from the first season, but you don't know
  377. which episode it is or whether it is part of a multiparter, you could
  378. give the episode-num as '0..'.  Here the second and third numbers have
  379. been omitted.  If you know that this is the first part of a three-part
  380. episode, which is the last episode of the first series of thirteen,
  381. its number would be '0 . 12/13 . 0/3'.  The series number is just '0'
  382. because you don't know how many series there are in total - perhaps
  383. the show is still being made!
  384.  
  385. The other predefined system, onscreen, is to simply copy what the
  386. programme makers write in the credits - 'Episode #FFEE' would
  387. translate to '#FFEE'.
  388.  
  389. You are encouraged to use one of these two if possible; if xmltv_ns is
  390. not general enough for your needs, let me know.  But if you want, you
  391. can use your own system and give the 'system' attribute as a URL
  392. describing the system you use.
  393. -->
  394. <!ELEMENT episode-num (#PCDATA)>
  395. <!ATTLIST episode-num system CDATA "onscreen">
  396.  
  397. <!-- Video details: the subelements describe the picture quality as
  398. follows:
  399.  
  400. present: whether this programme has a picture (no, in the
  401. case of radio stations broadcast on TV or 'Blue'), legal values are
  402. 'yes' or 'no'.  Obviously if the value is 'no', the other elements are
  403. meaningless.
  404.  
  405. colour: 'yes' for colour, 'no' for black-and-white.
  406.  
  407. aspect: The horizontal:vertical aspect ratio, eg '4:3' or '16:9'.
  408. -->
  409. <!ELEMENT video (present?, colour?, aspect?)>
  410. <!ELEMENT present (#PCDATA)>
  411. <!ELEMENT colour (#PCDATA)>
  412. <!ELEMENT aspect (#PCDATA)>
  413.  
  414. <!-- Audio details, similar to video details above.
  415.  
  416. present: whether this programme has any sound at all, 'yes' or 'no'.
  417.  
  418. stereo: Description of the stereo-ness of the sound.  Legal values
  419. are currently 'mono' and 'stereo' and 'surround'; others like 'quad'
  420. might be added later.
  421. -->
  422. <!ELEMENT audio (present?, stereo?)>
  423. <!ELEMENT stereo (#PCDATA)>
  424.  
  425. <!-- When and where the programme was last shown, if known.  Normally
  426. in TV listings 'repeat' means 'previously shown on this channel', but
  427. if you don't know what channel the old screening was on (but do know
  428. that it happened) then you can omit the 'channel' attribute.
  429. Similarly you can omit the 'start' attribute if you don't know when
  430. the previous transmission was (though you can of course give just the
  431. year, etc.).
  432.  
  433. The absence of this element does not say for certain that the
  434. programme is brand new and has never been screened anywhere before.
  435. -->
  436. <!ELEMENT previously-shown EMPTY>
  437. <!ATTLIST previously-shown start   CDATA #IMPLIED
  438.                            channel CDATA #IMPLIED >
  439.  
  440. <!-- 'Premiere'.  Different channels have different meanings for this
  441. word - sometimes it means a film has never before been seen on TV in
  442. that country, but other channels use it to mean 'the first showing of
  443. this film on our channel in the current run'.  It might have been
  444. shown before, but now they have paid for another set of showings,
  445. which makes the first in that set count as a premiere!
  446.  
  447. So this element doesn't have a clear meaning, just use it to represent
  448. where 'premiere' would appear in a printed TV listing.  You can use
  449. the content of the element to explain exactly what is meant, for
  450. example:
  451.  
  452. <premiere lang="en">
  453.   First showing on national terrestrial TV
  454. </premiere>
  455.  
  456. The textual content is a 'paragraph' as for <desc>.  If you don't want
  457. to give an explanation, just write empty content:
  458.  
  459. <premiere />
  460. -->
  461. <!ELEMENT premiere (#PCDATA)>
  462. <!ATTLIST premiere lang CDATA #IMPLIED>
  463.  
  464. <!-- Last-chance.  In a way this is the opposite of premiere.  Some
  465. channels buy the rights to show a movie a certain number of times, and
  466. the first may be flagged 'premiere', the last as 'last showing'.
  467.  
  468. For symmetry with premiere, you may use the element content to give a
  469. 'paragraph' describing exactly what is meant - it's unlikely to be the
  470. last showing ever!  Otherwise, explicitly put empty content:
  471.  
  472. <last-chance />
  473. -->
  474. <!ELEMENT last-chance (#PCDATA)>
  475. <!ATTLIST last-chance lang CDATA #IMPLIED>
  476.  
  477. <!-- New.  This is the first screened programme from a new show that
  478. has never been shown on television before - if not worldwide then at
  479. least never before in this country.  After the first episode or
  480. programme has been shown, subsequent ones are no longer 'new'.
  481. Similarly the second series of an established programme is not 'new'.
  482.  
  483. Note that this does not mean 'new season' or 'new episode' of an
  484. existing show.  You can express part of that using the episode-num
  485. stuff.
  486. -->
  487. <!ELEMENT new EMPTY>
  488.  
  489. <!-- Subtitles.  These can be either 'teletext' (sent digitally, and
  490. displayed at the viewer's request) or 'onscreen' (superimposed on the
  491. picture and impossible to get rid of).  You can have multiple subtitle
  492. streams to handle different languages.  Language for subtitles is
  493. specified in the same way as for programmes.
  494. -->
  495. <!ELEMENT subtitles (language?)>
  496. <!ATTLIST subtitles type (teletext | onscreen) #IMPLIED>
  497.  
  498. <!-- Rating.  Various bodies decide on classifications for films -
  499. usually a minimum age you must be to see it.  In principle the same
  500. could be done for ordinary TV programmes.  Because there are many
  501. systems for doing this, you can also specify the rating system used
  502. (which in practice is the same as the body which made the rating).
  503. -->
  504. <!ELEMENT rating (value, icon*)>
  505. <!ATTLIST rating system CDATA #IMPLIED>
  506.  
  507. <!-- 'Star rating' - many listings guides award a programme a score as
  508. a quick guide to how good it is.  The value of this element should be
  509. 'N / M', for example one star out of a possible five stars would be
  510. '1 / 5'.  Zero stars is also a possible score (and not the same as
  511. 'unrated').  You should try to map whatever wacky system your listings
  512. source uses to a number of stars: so for example if they have thumbs
  513. up, thumbs sideways and thumbs down, you could map that to two, one or
  514. zero stars out of two.  Whitespace between the numbers and slash is
  515. ignored.
  516. -->
  517. <!ELEMENT star-rating (value, icon*)>
  518.  
  519. <!-- (Why are things like 'stereo', which must be one of a small
  520. number of values, stored as the contents of elements rather than as
  521. attributes?  Because they are data rather than metadata.  Attributes
  522. are used for things like the language or encoding of element contents,
  523. or for programme transmission details.) -->
  524.