diff options
author | David Waern <david.waern@gmail.com> | 2010-07-21 13:50:43 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2010-07-21 13:50:43 +0000 |
commit | 0506631071a6d358749207bf502bc63efb9ec1bc (patch) | |
tree | e7132c35bcec48aeb6ccc748e9d20f40d4ca825c | |
parent | 9c35fb711009ace5815bd0941466cfc0c8e4ec75 (diff) |
Style police
-rw-r--r-- | src/Haddock/Backends/Xhtml/Layout.hs | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/Haddock/Backends/Xhtml/Layout.hs b/src/Haddock/Backends/Xhtml/Layout.hs index eb9fc28d..775a1cdb 100644 --- a/src/Haddock/Backends/Xhtml/Layout.hs +++ b/src/Haddock/Backends/Xhtml/Layout.hs @@ -35,6 +35,7 @@ module Haddock.Backends.Xhtml.Layout ( topDeclElem, declElem, ) where + import Haddock.Backends.Xhtml.DocMarkup import Haddock.Backends.Xhtml.Types import Haddock.Backends.Xhtml.Utils @@ -45,7 +46,11 @@ import Text.XHtml hiding ( name, title, p, quote ) import FastString ( unpackFS ) import GHC --- Sections of the document + +-------------------------------------------------------------------------------- +-- * Sections of the document +-------------------------------------------------------------------------------- + miniBody :: Html -> Html miniBody = body ! [identifier "mini"] @@ -54,6 +59,7 @@ miniBody = body ! [identifier "mini"] sectionDiv :: String -> Html -> Html sectionDiv i = thediv ! [identifier i] + sectionName :: Html -> Html sectionName = paragraph ! [theclass "caption"] @@ -76,12 +82,15 @@ divAlphabet = sectionDiv "alphabet" divModuleList = sectionDiv "module-list" +-------------------------------------------------------------------------------- +-- * Declaration containers +-------------------------------------------------------------------------------- --- | Declaration containers shortDeclList :: [Html] -> Html shortDeclList items = ulist << map (li ! [theclass "src short"] <<) items + shortSubDecls :: [Html] -> Html shortSubDecls items = ulist ! [theclass "subs"] << map (li <<) items @@ -92,6 +101,7 @@ divTopDecl = thediv ! [theclass "top"] type SubDecl = (Html, Maybe (Doc DocName), [Html]) + divSubDecls :: (HTML a) => String -> a -> Maybe Html -> Html divSubDecls cssClass captionName = maybe noHtml wrap where @@ -115,6 +125,7 @@ subDlist decls = Just $ dlist << map subEntry decls ma `with` bs = ma +++ bs -} + subTable :: [SubDecl] -> Maybe Html subTable [] = Nothing subTable decls = Just $ table << aboves (concatMap subRow decls) @@ -125,6 +136,7 @@ subTable decls = Just $ table << aboves (concatMap subRow decls) docElement td << nonEmpty (fmap docToHtml mdoc)) : map (cell . (td <<)) subs + subBlock :: [Html] -> Maybe Html subBlock [] = Nothing subBlock hs = Just $ toHtml hs @@ -133,21 +145,26 @@ subBlock hs = Just $ toHtml hs subArguments :: [SubDecl] -> Html subArguments = divSubDecls "arguments" "Arguments" . subTable + subAssociatedTypes :: [Html] -> Html subAssociatedTypes = divSubDecls "associated-types" "Associated Types" . subBlock + subConstructors :: [SubDecl] -> Html subConstructors = divSubDecls "constructors" "Constructors" . subTable + subFields :: [SubDecl] -> Html subFields = divSubDecls "fields" "Fields" . subTable + subInstances :: String -> [SubDecl] -> Html subInstances id_ = divSubDecls "instances" instCaption . instTable where instCaption = collapsebutton id_ +++ " Instances" instTable = fmap (thediv ! [identifier id_] <<) . subTable + subMethods :: [Html] -> Html subMethods = divSubDecls "methods" "Methods" . subBlock @@ -156,6 +173,7 @@ subMethods = divSubDecls "methods" "Methods" . subBlock declElem :: Html -> Html declElem = paragraph ! [theclass "src"] + -- a box for top level documented names -- it adds a source and wiki link at the right hand side of the box topDeclElem :: LinksInfo -> SrcSpan -> DocName -> Html -> Html |