aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Document OPTIONS_HADDOCKDavid Waern2008-01-071-10/+4
|
* Remove the documenation section on derived instancesDavid Waern2008-01-071-32/+0
| | | | The problem mentioned there doesn't exist in Haddock 2.0.0.0
* Document the --optghc flagDavid Waern2008-01-071-0/+11
|
* Update the "Using literate or pre-processed source" sectionDavid Waern2008-01-071-23/+6
|
* Remove --no-implicit-prelide flagDavid Waern2008-01-071-3/+0
|
* Remove --use-package, --package & --no-implicit.. flags from docsDavid Waern2008-01-071-49/+0
|
* Update CHANGESDavid Waern2008-01-071-0/+5
|
* Document -B optionDavid Waern2008-01-071-0/+12
|
* Update docs to say that Haddock accets .lhs files and module namesDavid Waern2008-01-071-3/+2
|
* Documentation fixDavid Waern2008-01-071-3/+1
|
* Update CHANGESDavid Waern2008-01-071-0/+2
|
* Change url to repo in documentationDavid Waern2008-01-071-1/+1
|
* WibbleDavid Waern2008-01-071-1/+1
|
* Update CHANGES for 2.0.0.0David Waern2008-01-071-0/+24
|
* Remove the -use-package flag, we don't support it anywayDavid Waern2008-01-071-3/+0
|
* Manually merge over changes to CHANGES for 0.9David Waern2008-01-071-0/+26
|
* Change version in docs and specDavid Waern2008-01-072-2/+2
|