[Flesh out the front page Neil Mitchell**20080817093105] { hunk ./src/Web/Page.hs 48 - ," Hoogle is a Haskell API search engine, have fun!" + ," Hoogle is a Haskell API search engine, which allows you to search many standard Haskell libraries" + ," by either function name, or by approximate type signature." + ,"
" + ,""
+ ," Example searches:
"
+ ," " ++ search "map"
+ ," " ++ search "(a -> b) -> [a] -> [b]"
+ ," " ++ search "Ord a => [a] -> [a]"
+ ," " ++ search "Data.Map.insert"
+ ,"
Enter your own search at the top of the page."
+ ,"
" + ," The Hoogle manual contains more details," + ," including further details on search queries, how to install Hoogle as a command line application" + ," and how to integrate Hoogle with Firefox/Emacs/Vim etc." + ,"
" + ,""
+ ," I am very interested in any feedback you may have. Please "
+ ," email me, or add an entry to my"
+ ," bug tracker."
hunk ./src/Web/Page.hs 70
+ where
+ search x = "" +& x ++ "
"
hunk ./src/res/hoogle.css 157
+.example {
+ margin: auto;
+ margin-top: 20px;
+ margin-bottom: 20px;
+ padding: 3px;
+ width: 300px;
+ border: 2px solid #cc0;
+ background-color: #ffc;
+ font-size: 10pt;
+ text-align: left;
+}
hunk ./src/res/hoogle.css 169
-
+.example a {
+ margin-left: 20px;
+}
}