From c711d61e01227c7b2d76aeedbf2e0575343c2512 Mon Sep 17 00:00:00 2001 From: panne Date: Mon, 2 Aug 2004 21:16:02 +0000 Subject: [haddock @ 2004-08-02 21:16:02 by panne] Removed WinDoze CRs --- src/HaddockHH2.hs | 106 +++++++++++++++++++++++++++--------------------------- 1 file changed, 53 insertions(+), 53 deletions(-) (limited to 'src/HaddockHH2.hs') diff --git a/src/HaddockHH2.hs b/src/HaddockHH2.hs index d28e8181..3cee48e3 100644 --- a/src/HaddockHH2.hs +++ b/src/HaddockHH2.hs @@ -23,12 +23,12 @@ ppHH2Contents odir doctitle maybe_package tree = do contentsHH2File = package++".HxT" doc = - text "" $$ + text "" $$ text "" $$ text "" $$ - nest 4 (text "text doctitle<>text"\" Url=\"index.html\">" $$ - nest 4 (ppModuleTree [] tree) $+$ - text "") $$ + nest 4 (text "text doctitle<>text"\" Url=\"index.html\">" $$ + nest 4 (ppModuleTree [] tree) $+$ + text "") $$ text "" writeFile (pathJoin [odir, contentsHH2File]) (render doc) where @@ -69,18 +69,18 @@ ppHH2Index odir maybe_package ifaces = do indexKHH2File = package++"K.HxK" indexNHH2File = package++"N.HxK" docK = - text "" $$ - text "" $$ + text "" $$ + text "" $$ text "" $$ nest 4 (ppList index) $+$ text "" docN = - text "" $$ - text "" $$ + text "" $$ + text "" $$ text "" $$ - text "" $$ - nest 4 (text "text contentsHtmlFile<>text "\"/>") $$ - text "" $$ + text "" $$ + nest 4 (text "text contentsHtmlFile<>text "\"/>") $$ + text "" $$ text "" writeFile (pathJoin [odir, indexKHH2File]) (render docK) writeFile (pathJoin [odir, indexNHH2File]) (render docN) @@ -95,9 +95,9 @@ ppHH2Index odir maybe_package ifaces = do ppList [] = empty ppList ((name,mdls):vs) = - text " text (escapeStr (show name)) <> text "\">" $$ - nest 4 (vcat (map (ppJump name) mdls)) $$ - text "" $$ + text " text (escapeStr (show name)) <> text "\">" $$ + nest 4 (vcat (map (ppJump name) mdls)) $$ + text "" $$ ppList vs ppJump name (Module mdl) = text " text (nameHtmlRef mdl name) <> text "\"/>" @@ -109,41 +109,41 @@ ppHH2Files :: FilePath -> Maybe String -> [(Module,Interface)] -> [FilePath] -> ppHH2Files odir maybe_package ifaces pkg_paths = do let filesHH2File = package++".HxF" doc = - text "" $$ - text "" $$ - text "" $$ - nest 4 (ppMods ifaces $$ - text "text contentsHtmlFile<>text "\"/>" $$ - text "text indexHtmlFile<>text "\"/>" $$ - ppIndexFiles chars $$ - ppLibFiles ("":pkg_paths)) $$ - text "" + text "" $$ + text "" $$ + text "" $$ + nest 4 (ppMods ifaces $$ + text "text contentsHtmlFile<>text "\"/>" $$ + text "text indexHtmlFile<>text "\"/>" $$ + ppIndexFiles chars $$ + ppLibFiles ("":pkg_paths)) $$ + text "" writeFile (pathJoin [odir, filesHH2File]) (render doc) where package = fromMaybe "pkg" maybe_package ppMods [] = empty ppMods ((Module mdl,_):ifaces) = - text " text (moduleHtmlFile mdl) <> text "\"/>" $$ + text " text (moduleHtmlFile mdl) <> text "\"/>" $$ ppMods ifaces ppIndexFiles [] = empty ppIndexFiles (c:cs) = - text "text (subIndexHtmlFile c)<>text "\"/>" $$ + text "text (subIndexHtmlFile c)<>text "\"/>" $$ ppIndexFiles cs - - ppLibFiles [] = empty - ppLibFiles (path:paths) = - ppLibFile cssFile $$ - ppLibFile iconFile $$ - ppLibFile jsFile $$ - ppLibFile plusFile $$ - ppLibFile minusFile $$ - ppLibFiles paths - where - toPath fname | null path = fname + + ppLibFiles [] = empty + ppLibFiles (path:paths) = + ppLibFile cssFile $$ + ppLibFile iconFile $$ + ppLibFile jsFile $$ + ppLibFile plusFile $$ + ppLibFile minusFile $$ + ppLibFiles paths + where + toPath fname | null path = fname | otherwise = pathJoin [path, fname] - ppLibFile fname = text "text (toPath fname)<>text "\"/>" + ppLibFile fname = text "text (toPath fname)<>text "\"/>" chars :: [Char] chars = keysFM (foldr getIfaceIndex emptyFM ifaces) @@ -160,20 +160,20 @@ ppHH2Collection odir doctitle maybe_package = do collectionHH2File = package++".HxC" doc = - text "" $$ - text "" $$ - text " text doctitle <> text "\">" $$ - nest 4 (text "" $$ - nest 4 (text " text package <> text ".HxF\"/>") $$ - text "" $$ - text " text package <> text ".HxT\"/>" $$ - text " text package <> text "K.HxK\"/>" $$ - text " text package <> text "N.HxK\"/>" $$ - text "" $$ - text "" $$ - text "" $$ - text "" $$ - text "" $$ - text "") $$ - text "" + text "" $$ + text "" $$ + text " text doctitle <> text "\">" $$ + nest 4 (text "" $$ + nest 4 (text " text package <> text ".HxF\"/>") $$ + text "" $$ + text " text package <> text ".HxT\"/>" $$ + text " text package <> text "K.HxK\"/>" $$ + text " text package <> text "N.HxK\"/>" $$ + text "" $$ + text "" $$ + text "" $$ + text "" $$ + text "" $$ + text "") $$ + text "" writeFile (pathJoin [odir, collectionHH2File]) (render doc) -- cgit v1.2.3