diff options
| author | Ben Gamari <ben@smart-cactus.org> | 2016-02-08 17:56:17 +0100 | 
|---|---|---|
| committer | Ben Gamari <ben@smart-cactus.org> | 2016-02-08 17:56:17 +0100 | 
| commit | f84ddf06c9daf86a2e15bf44cf877ce2324967cf (patch) | |
| tree | 6dc24b56fdf8d99d0d798c25621ae4f205af57a3 /haddock-api/src/Haddock/Backends/Xhtml/Layout.hs | |
| parent | 228a0d72baa04be161b0fc918266f2edb0c6519b (diff) | |
| parent | 8410dd341a1730f708af3f0d96d13f2b5f7b9df5 (diff) | |
Merge branch 'anchors-redux'
Diffstat (limited to 'haddock-api/src/Haddock/Backends/Xhtml/Layout.hs')
| -rw-r--r-- | haddock-api/src/Haddock/Backends/Xhtml/Layout.hs | 11 | 
1 files changed, 7 insertions, 4 deletions
diff --git a/haddock-api/src/Haddock/Backends/Xhtml/Layout.hs b/haddock-api/src/Haddock/Backends/Xhtml/Layout.hs index 98df09fe..26aeaff8 100644 --- a/haddock-api/src/Haddock/Backends/Xhtml/Layout.hs +++ b/haddock-api/src/Haddock/Backends/Xhtml/Layout.hs @@ -43,12 +43,13 @@ import Haddock.Backends.Xhtml.DocMarkup  import Haddock.Backends.Xhtml.Types  import Haddock.Backends.Xhtml.Utils  import Haddock.Types -import Haddock.Utils (makeAnchorId) +import Haddock.Utils (makeAnchorId, nameAnchorId)  import qualified Data.Map as Map  import Text.XHtml hiding ( name, title, p, quote )  import FastString            ( unpackFS )  import GHC +import Name (nameOccName)  --------------------------------------------------------------------------------  -- * Sections of the document @@ -256,9 +257,11 @@ topDeclElem lnks loc splice names html =  -- | Adds a source and wiki link at the right hand side of the box.  -- Name must be documented, otherwise we wouldn't get here.  links :: LinksInfo -> SrcSpan -> Bool -> DocName -> Html -links ((_,_,sourceMap,lineMap), (_,_,maybe_wiki_url)) loc splice (Documented n mdl) = -   (srcLink <+> wikiLink) -  where srcLink = let nameUrl = Map.lookup origPkg sourceMap +links ((_,_,sourceMap,lineMap), (_,_,maybe_wiki_url)) loc splice docName@(Documented n mdl) = +  srcLink <+> wikiLink <+> (selfLink ! [theclass "selflink"] << "#") +  where selfLink = linkedAnchor (nameAnchorId (nameOccName (getName docName))) + +        srcLink = let nameUrl = Map.lookup origPkg sourceMap                        lineUrl = Map.lookup origPkg lineMap                        mUrl | splice    = lineUrl                                          -- Use the lineUrl as a backup  | 
