]> gitweb.michael.orlitzky.com - dead/htsn-import.git/commitdiff
Rename doctypeA to dtdnameA.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 1 Jan 2014 23:10:04 +0000 (18:10 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 1 Jan 2014 23:10:04 +0000 (18:10 -0500)
src/Main.hs

index 06cb22e2e46e385ee61a35e7ea89d69cba0c005d..924a699674c27b118ae57783af1467cc18ce361a 100644 (file)
@@ -111,8 +111,8 @@ import_file cfg path = do
 
     -- | An arrow which parses the doctype "SYSTEM" of an 'XmlTree'.
     --   We use these to determine the parser to use.
-    doctypeA :: ArrowXml a => a XmlTree DtdName
-    doctypeA = getAttrl >>> hasName "doctype-SYSTEM" /> getText >>^ DtdName
+    dtdnameA :: ArrowXml a => a XmlTree DtdName
+    dtdnameA = getAttrl >>> hasName "doctype-SYSTEM" /> getText >>^ DtdName
 
     -- | Combine the arrows above as well as the function below
     --   (arrowized with 'arr') into an IO action that does everything
@@ -123,7 +123,7 @@ import_file cfg path = do
     --   big one outside of the list.
     parse_and_import :: IO [ImportResult]
     parse_and_import =
-      runX (readA >>> (doctypeA &&& returnA) >>> (arr import_with_dtd))
+      runX (readA >>> (dtdnameA &&& returnA) >>> (arr import_with_dtd))
       >>=
       sequence