aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add initial structure for outputting documentation as well, but does not yet ↵Neil Mitchell2008-06-141-5/+21
| | | | output anything
* Simplify the newtype/data outputting in Hoogle, as haddock does it automaticallyNeil Mitchell2008-06-141-6/+2
|
* Rewrite the --hoogle flag supportNeil Mitchell2008-06-072-137/+64
|
* Add hide options to some source filesDavid Waern2008-05-013-0/+9
|
* Export DocName in the APIDavid Waern2008-05-011-1/+3
|
* Add extensions to cabal fileDavid Waern2008-05-011-2/+4
|
* Add LANGUAGE pragmas to source filesDavid Waern2008-05-013-0/+10
|
* Remove -fglasgow-exts and -fasmDavid Waern2008-05-011-2/+1
|
* Add Haddock.DocName to the cabal fileDavid Waern2008-05-011-0/+1
|
* Add a synopsisDavid Waern2008-05-011-0/+1
|
* Update CHANGESDavid Waern2008-05-011-0/+13
|
* Remove claim of backwards compatibility from docs for readInterfaceFileDavid Waern2008-05-011-2/+0
|
* Update version number in spec and docsDavid Waern2008-05-012-2/+2
|
* Update test READMEDavid Waern2008-04-121-3/+8
|
* Remove two fixed bugs from TODODavid Waern2008-04-121-8/+0
|
* Add a script for copying test output to "expected" outputDavid Waern2008-04-121-0/+23
|
* Simplify test suite and add testsDavid Waern2008-04-1265-45/+12816
| | | | | I move all tests into one single directory to simplify things, and add a test for the last bug that was fixed.
* Fix missing parenthesis in constructor args bugDavid Waern2008-04-121-4/+4
|
* Fix printing of data bindersDavid Waern2008-04-122-3/+9
|
* Add a flag for turning off all warningsDavid Waern2008-04-114-9/+12
|
* Turn off GHC warnings when running testsDavid Waern2008-04-111-1/+1
|
* Use the in-place haddock when running testsDavid Waern2008-04-111-1/+1
|
* Add a bug to TODODavid Waern2008-04-111-0/+5
|
* Bump the version number to 2.1.0David Waern2008-02-111-1/+1
| | | | | | | Since the exported datatype DocName has changed, we need to bump the major version number. Let's also drop the fourth version component, it's not that useful.
* Remove yet another item from TODO that was not an actual bugDavid Waern2008-02-101-3/+0
|
* Remove bugs from TODO that weren't actual bugsDavid Waern2008-02-101-12/+2
|
* Remove bugs from TODO that don't apply anymore since the portDavid Waern2008-02-101-11/+0
|
* Update the version message to fit in small terminalsDavid Waern2008-02-101-2/+2
|
* Fix some trivial warnings in H.InterfaceFileDavid Waern2008-02-101-4/+7
|
* H.GHC.Utils: add some functions that were removed by mistakeDavid Waern2008-02-101-0/+8
|
* H.GHC.Utils: remove unused imports/exportsDavid Waern2008-02-091-40/+4
|
* Change the representation of DocNamesDavid Waern2008-02-0912-116/+141
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Add a comment about UNPACK bug in TODODavid Waern2008-02-021-1/+2
|
* Add Hidden.html.ref to testsDavid Waern2008-01-251-0/+88
|
* Accept test outputDavid Waern2008-01-251-6/+8
|
* Change Hidden.hs (test) to use OPTIONS_HADDOCKDavid Waern2008-01-251-1/+1
|
* Accept test outputDavid Waern2008-01-2513-29/+25
|
* Accept test outputDavid Waern2008-01-251-1/+1
|
* A a bug report to TODODavid Waern2008-01-231-0/+13
|
* Add a bug reported by Ross to TODODavid Waern2008-01-231-0/+3
|
* Record a bug in TODODavid Waern2008-01-161-0/+2
|
* Add feature-requsts from Henning Thielemann to TODODavid Waern2008-01-161-0/+18
|
* Remove dep on processDavid Waern2008-01-071-1/+0
|
* Remove dep on CabalDavid Waern2008-01-071-1/+0
|
* Export necessary stuff from Distribution.HaddockDavid Waern2008-01-072-0/+6
|
* Add documentation for readInterfaceFileDavid Waern2008-01-071-1/+5
|
* Change my email address in the cabal fileDavid Waern2008-01-071-1/+1
|
* Change synopsis field to descriptionDavid Waern2008-01-071-1/+1
|
* WibbleDavid Waern2008-01-071-3/+3
|
* WibbleDavid Waern2008-01-071-1/+1
|