diff options
author | Mark Lentczner <markl@glyphic.com> | 2010-07-20 17:25:52 +0000 |
---|---|---|
committer | Mark Lentczner <markl@glyphic.com> | 2010-07-20 17:25:52 +0000 |
commit | 248b76b4dc77dbbdbb0f7a2081188c81ee35ca77 (patch) | |
tree | 6d97ffa87c643532dd31e2e223b9ab3cc947ffba /src/Haddock/Backends/Xhtml.hs | |
parent | 87b91ac86d97fdc0297e10639d491bbe0dd33571 (diff) |
move CSS Theme functions into Themes.hs
Diffstat (limited to 'src/Haddock/Backends/Xhtml.hs')
-rw-r--r-- | src/Haddock/Backends/Xhtml.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Haddock/Backends/Xhtml.hs b/src/Haddock/Backends/Xhtml.hs index 18204a2b..b249ddf3 100644 --- a/src/Haddock/Backends/Xhtml.hs +++ b/src/Haddock/Backends/Xhtml.hs @@ -26,6 +26,7 @@ import Haddock.Backends.Xhtml.Decl import Haddock.Backends.Xhtml.DocMarkup import Haddock.Backends.Xhtml.Layout import Haddock.Backends.Xhtml.Names +import Haddock.Backends.Xhtml.Themes import Haddock.Backends.Xhtml.Types import Haddock.Backends.Xhtml.Utils import Haddock.ModuleTree @@ -154,7 +155,7 @@ copyHtmlBits odir libdir _maybe_css = do copyFile (joinPath [libhtmldir, f]) (joinPath [odir, f]) --copyFile css_file css_destination mapM_ copyLibFile cssFiles - mapM_ copyLibFile [ iconFile, plusFile, minusFile, jsFile, framesFile ] + mapM_ copyLibFile [ plusFile, minusFile, jsFile, framesFile ] headHtml :: String -> Maybe String -> Html |