]> gitweb.michael.orlitzky.com - dead/htsn-import.git/blob - src/TSN/XML/GameInfo.hs
Add dummy TSN.XML.{Game,Sport}Info modules that only list DTDs for now.
[dead/htsn-import.git] / src / TSN / XML / GameInfo.hs
1 -- | GameInfo represents a collection of DTDs that we don't really
2 -- handle but want to make available. The raw XML gets stored in the
3 -- database along with the XML_File_ID, but we don't parse any of it.
4 --
5 -- See also: TSN.XML.SportInfo
6 --
7 module TSN.XML.GameInfo (
8 dtds )
9 where
10
11 -- | The DTDs for everything that we consider "Game Info."
12 --
13 -- TODO: This is the list from the old implementation. We need to
14 -- make sure that we are really receiving XML for these DTDs
15 -- (i.e. the names are correct).
16 --
17 dtds :: [String]
18 dtds =
19 [ "CBASK_Lineup_XML.dtd",
20 "cbaskpreviewxml.dtd",
21 "cflpreviewxml.dtd",
22 "Matchup_NBA_NHL_XML.dtd",
23 "mlbpreviewxml.dtd",
24 "MLB_Gaming_Matchup_XML.dtd",
25 "MLB.dtd",
26 "MLB_Lineup_XML.dtd",
27 "MLB_Matchup_XML.dtd",
28 "MLS_Preview_XML.dtd",
29 "NBA_Gaming_Matchup_XML.dtd",
30 "NBA.dtd",
31 "NBA_Playoff_Matchup_XML.dtd",
32 "NBALineupXML.dtd",
33 "nbapreviewxml.dtd",
34 "NCAA_FB_Preview_XML.dtd",
35 "nflpreviewxml.dtd",
36 "NFL_NCAA_FB_Matchup_XML.dtd",
37 "nhlpreviewxml.dtd",
38 "recapxml.dtd",
39 "WorldBaseballPreviewXML.dtd" ]