aboutsummaryrefslogtreecommitdiff
path: root/haddock-api/src/Haddock.hs
Commit message (Collapse)AuthorAgeFilesLines
...
* Add basic support for cross-package hyperlink generation.Łukasz Hanuszczak2015-06-301-1/+1
|
* Rewrite source generation to fixed links and directory structure.Łukasz Hanuszczak2015-06-301-6/+5
|
* Make external hyperlinks point to locations specified by source URLs.Łukasz Hanuszczak2015-06-301-1/+6
|
* Make source hyperlinker generate output in apropriate directory.Łukasz Hanuszczak2015-06-301-2/+8
|
* Add support for providing custom CSS files for hyperlinked source.Łukasz Hanuszczak2015-06-301-1/+2
|
* Create hyperlinker module and plug it into the Haddock pipeline.Łukasz Hanuszczak2015-06-301-0/+4
|
* Make the error encountered when a package can't be found moreBen Gamari2015-03-251-12/+21
| | | | | | user-friendly Closes #369
* --package-name and --package-version flagsMateusz Kowalczyk2015-01-221-3/+24
| | | | | | Used for --hoogle amongst other things. Now we need to teach cabal to use it. The situation is still a bit sub-par because if the flags aren't passed in, the crash will occur. Closes #353.
* Add missing import for standalone haddock-api packageLuite Stegeman2014-12-221-0/+1
|
* hide projectVersion from DynFlags since it clashes with ↵Luite Stegeman2014-12-191-1/+1
| | | | Haddock.Version.projectVersion
* Properly render package ID (not package key) in index, fixes #329.Edward Z. Yang2014-12-121-2/+2
| | | | | | | Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu> Conflicts: haddock-api/src/Haddock/ModuleTree.hs
* Changes due to ghc api changes in package representationDuncan Coutts2014-12-121-5/+8
| | | | | | | | | | Also fix a bug with finding the package name and version given a module. This had become wrong due to the package key changes (it was very hacky in the first place). We now look up the package key in the package db to get the package info properly. Conflicts: haddock-api/src/Haddock.hs
* Revert "Merge branch 'reverts'"Mateusz Kowalczyk2014-12-121-5/+5
| | | | | | | | This reverts commit 5c93cc347773c7634321edd5f808d5b55b46301f, reversing changes made to 5b81a9e53894d2ae591ca0c6c96199632d39eb06. Conflicts: haddock-api/src/Haddock/Convert.hs
* Allow the parser to spit out meta-infoMateusz Kowalczyk2014-12-101-3/+6
| | | | | | | | | | | | | | | Currently we only use it only for ‘since’ annotations but with these patches it should be fairly simple to add new attributes if we wish to. Closes #26. It seems to work fine but due to 7.10 rush I don't have the chance to do more exhaustive testing right now. The way the meta is output (emphasis at the end of the whole comment) is fairly arbitrary and subject to bikeshedding. Note that this makes test for Bug310 fail due to interface version bump: it can't find the docs for base with this interface version so it fails. There is not much we can do to help this because it tests for ’built-in’ identifier, not something we can provide ourselves.
* Fix improper lazy IO usetreeowl2014-10-091-1/+1
| | | Make `getPrologue` force `parseParas dflags str` before returning. Without this, it will attempt to read from the file after it is closed, with unspecified and generally bad results.
* Move sources under haddock-api/srcMateusz Kowalczyk2014-08-231-0/+488