]> gitweb.michael.orlitzky.com - dead/halcyon.git/commitdiff
Add support for … and … XML entities.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 15 Oct 2010 16:58:31 +0000 (12:58 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 15 Oct 2010 16:58:31 +0000 (12:58 -0400)
src/Twitter/Xml.hs

index a278081688b2542c59385f5dfff8361ea6a492af..b34c6fbae94c4ca8629eec48ad849becb98c23e8 100644 (file)
@@ -51,13 +51,15 @@ user_screen_name = keep /> (tag "screen_name") /> txt
 -- character represented by that entity.
 xml_entities :: [(String, String)]
 xml_entities = [("[lr]dquo", "\""),
-                ("quot", "\""),
+                ("quot",     "\""),
                 ("[mn]dash", "-"),
                 ("nbsp",     " "),
                 ("#8217",    "'"),
                 ("amp",      "&"),
                 ("lt",       "<"),
-                ("gt",       ">")]
+                ("gt",       ">"),
+                ("#8230",    "..."),
+                ("hellip",   "...")]
 
 -- |Replace all of the XML entities in target.
 replace_entities :: String -> String
@@ -84,5 +86,5 @@ test_replace_entities :: Test
 test_replace_entities =
     TestCase $ assertEqual "All entities are replaced correctly." expected_text actual_text
     where
-      actual_text = (replace_entities "&quot;The moon is gay,&quot; said &lt;insert the current president of the United States of America&gt;. &ldquo;It&#8217;s OK&mdash;&ndash;he&#8217;s not a real doctor.&rdquo;")
-      expected_text = "\"The moon is gay,\" said <insert the current president of the United States of America>. \"It's OK--he's not a real doctor.\""
+      actual_text = (replace_entities "&quot;The moon is gay&#8230;&hellip;&quot; said &lt;insert the current president of the United States of America&gt;. &ldquo;It&#8217;s OK&mdash;&ndash;he&#8217;s not a real doctor.&rdquo;")
+      expected_text = "\"The moon is gay......\" said <insert the current president of the United States of America>. \"It's OK--he's not a real doctor.\""