[Change +? to +&, a better name
Neil Mitchell**20080805124946] {
hunk ./src/Web/Action.hs 50
- ," Query: " +? pre ++ "" +? post2 ++ "
"
+ ," Query: " +& pre ++ "" +& post2 ++ "
"
hunk ./src/Web/Action.hs 52
- ," Error: " +? drop 1 (dropWhile (/= ':') $ show err) ++ "
"
+ ," Error: " +& drop 1 (dropWhile (/= ':') $ show err) ++ "
"
hunk ./src/Web/Action.hs 103
- url (TagHyperlink _ x) = Just $ "" ++ showTagHTML x ++
- ""
+ url (TagHyperlink _ x) = Just $ "" ++ showTagHTML x ++
+ ""
hunk ./src/Web/Action.hs 114
-a +? b = a ++ escapeHTML b
+-- | Escape the second argument before appending
+(+&) :: String -> String -> String
+a +& b = a ++ escapeHTML b
hunk ./src/Web/Action.hs 138
- g (TagHyperlink url x) = "" ++ showTagHTML x ++ ""
+ g (TagHyperlink url x) = "" ++ showTagHTML x ++ ""
}