aboutsummaryrefslogtreecommitdiff
path: root/src/HaddockHtml.hs
diff options
context:
space:
mode:
authorpanne <unknown>2003-02-20 21:31:40 +0000
committerpanne <unknown>2003-02-20 21:31:40 +0000
commit871f65df490f46d66523b38df2cf6311ecaabe39 (patch)
tree744f87cecc17da7a4d9f0a3e6dac99d7cc22c411 /src/HaddockHtml.hs
parent30e32d5eb13879e72e462cc7fd71ab8c97e51094 (diff)
[haddock @ 2003-02-20 21:31:40 by panne]
* Add varsyms and consyms to index * Exclude empty entries from index
Diffstat (limited to 'src/HaddockHtml.hs')
-rw-r--r--src/HaddockHtml.hs22
1 files changed, 14 insertions, 8 deletions
diff --git a/src/HaddockHtml.hs b/src/HaddockHtml.hs
index db4016bf..27dc1094 100644
--- a/src/HaddockHtml.hs
+++ b/src/HaddockHtml.hs
@@ -18,8 +18,8 @@ import IO
import Maybe ( fromJust, isJust )
import FiniteMap
import List ( sortBy )
-import Char ( toUpper, toLower )
-import Monad ( when )
+import Char ( toUpper, toLower, isAlpha, ord )
+import Monad ( when, unless )
import Html
import qualified Html
@@ -82,7 +82,9 @@ contentsHtmlFile = "index.html"
indexHtmlFile = "doc-index.html"
subIndexHtmlFile :: Char -> Char -> String
-subIndexHtmlFile k a = "doc-index-" ++ k:a:".html"
+subIndexHtmlFile k a = "doc-index-" ++ [k] ++ b ++ ".html"
+ where b | isAlpha a = [a]
+ | otherwise = show (ord a)
footer :: HtmlTable
footer =
@@ -229,8 +231,8 @@ ppHtmlIndex odir doctitle ifaces = do
)
when split_indices
- (do mapM_ (do_sub_index "Type/Class" tycls_index 't') ['A'..'Z']
- mapM_ (do_sub_index "Function/Constructor" var_index 'v') ['A'..'Z']
+ (do mapM_ (do_sub_index "Type/Class" tycls_index 't') initialChars
+ mapM_ (do_sub_index "Function/Constructor" var_index 'v') initialChars
)
writeFile (odir ++ pathSeparator:indexHtmlFile) (renderHtml html)
@@ -243,14 +245,16 @@ ppHtmlIndex odir doctitle ifaces = do
td << table ! [cellpadding 0, cellspacing 5] <<
besides [ td << anchor ! [href (subIndexHtmlFile kind c)] <<
toHtml [c]
- | c <- ['A'..'Z'] ]
+ | c <- initialChars
+ , any ((`nameBeginsWith` c) . fst) this_ix ]
| otherwise =
td << table ! [cellpadding 0, cellspacing 5] <<
aboves (map indexElt this_ix)
do_sub_index descr this_ix kind c
- = writeFile (odir ++ pathSeparator:subIndexHtmlFile kind c)
- (renderHtml html)
+ = unless (null index_part) $
+ writeFile (odir ++ pathSeparator:subIndexHtmlFile kind c)
+ (renderHtml html)
where
html = header (thetitle (toHtml (doctitle ++ " (" ++ descr ++ "Index)")) +++
thelink ! [href cssFile,
@@ -292,6 +296,8 @@ ppHtmlIndex odir doctitle ifaces = do
anchor ! [href (linkId (Module mdl) nm)] << toHtml mdl
| (Module mdl, defining) <- entries ])
+ initialChars = [ 'A'..'Z' ] ++ ":!#$%&*+./<=>?@\\^|-~"
+
nameBeginsWith :: HsName -> Char -> Bool
nameBeginsWith (HsTyClsName id0) c = idBeginsWith id0 c
nameBeginsWith (HsVarName id0) c = idBeginsWith id0 c