aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock/Backends/DevHelp.hs
Commit message (Collapse)AuthorAgeFilesLines
* remove --html-help support - it was old, out-of-date, and mostly missingMark Lentczner2010-07-221-86/+0
|
* refactoring of anchor ID and fragment handlingMark Lentczner2010-07-191-1/+1
|
* Get rid of H.Utils.pathJoin and use System.FilePath.joinPath insteadDavid Waern2010-05-131-1/+2
|
* Position the module header the same way everywhereDavid Waern2010-05-131-1/+0
| | | | Silly, but nice with some consistency :-)
* Backends.DevHelp: ghc >= 6.10Isaac Dupree2009-08-231-3/+0
|
* Add Haddock module headersDavid Waern2009-06-241-4/+10
| | | | | | | | | Add a proper Haddock module header to each module, with a more finegrained copyright. If you feel mis-accreditted, please correct any copyright notice! The maintainer field is set to haddock@projects.haskell.org. Next step is to add a brief description to each module.
* Fix warnings in H.B.DevHelpDavid Waern2009-03-241-9/+9
|
* Add DeclInfo to H.TypesDavid Waern2008-10-151-1/+1
|
* Follow move of package string functions from PackageConfig to ModuleDavid Waern2008-08-131-2/+4
|
* Change the representation of DocNamesDavid Waern2008-02-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ross Paterson reported a bug where links would point to the defining module instead of the "best" module for an identifier (e.g Int pointing to GHC.Base instead of Data.Int). This patch fixes this problem by refactoring the way renamed names are represented. Instead of representing them by: > data DocName = Link Name | NoLink Name they are now represented as such: > data DocName = Documented Name Module | Undocumented Name and the the link-env looks like this: > type LinkEnv = Map Name Module There are several reasons for this. First of all, the bug was caused by changing the module part of Names during the renaming process, without changing the Unique field. This caused names to be overwritten during the loading of .haddock files (which caches names using the NameCache of the GHC session). So we might create new Uniques during renaming to fix this (but I'm not sure that would be problem-free). Instead, we just keep the Name and add the Module where the name is best documented, since it can be useful to keep the original Name around (for e.g. source-code location info and for users of the Haddock API). Also, the names Link/NoLink don't really make sense, since wether to use links or not is entirely up to the users of DocName. In the process of following this change into H.Backends.Html I removed the assumption that binder names are Undocumented (which was just an unnecessary assumption, the OccName is the only thing needed to render these). This will probably make it possible to get rid of the renamer and replace it with a traversal from SYB or Uniplate. Since DocName has changed, InterfaceFile has changed so this patch also increments the file-format version. No backwards-compatibility is implemented.
* Rename HaddockModule to InterfaceDavid Waern2007-08-301-4/+4
|
* Rename HaddockModule to Interface and a few more refactoringsDavid Waern2007-08-291-1/+1
|
* Major refactoringDavid Waern2007-08-291-0/+81