Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add PatternSignatures LANGUAGE pragma to Main and Utils | David Waern | 2008-09-24 | 1 | -0/+2 | |
| | ||||||
* | Fix some warnings | Ian Lynagh | 2008-08-27 | 1 | -3/+0 | |
| | ||||||
* | Follow move of package string functions from PackageConfig to Module | David Waern | 2008-08-13 | 1 | -1/+1 | |
| | ||||||
* | Do not export ATs when not in list of subitems | David Waern | 2008-07-29 | 1 | -1/+8 | |
| | ||||||
* | Add LANGUAGE pragmas to source files | David Waern | 2008-05-01 | 1 | -0/+4 | |
| | ||||||
* | Change the representation of DocNames | David Waern | 2008-02-09 | 1 | -6/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 haddock.js to haddock-util.js | Simon Marlow | 2006-10-11 | 1 | -1/+1 | |
| | | | | | | haddock.js will be run automatically by Windows when you type 'haddock' if it is found on the PATH, so rename to avoid confusion. Spotted by Adrian Hey. | |||||
* | Fix conflicts | David Waern | 2007-11-11 | 1 | -3/+7 | |
| | ||||||
* | Eliminate dep on network by doing a little cut'n'paste | Duncan Coutts | 2006-09-08 | 1 | -10/+31 | |
| | | | | | haddock depending on the network causes a circular dependency at least if you want to build the network lib with haddock docs. | |||||
* | Introduce InstalledInterface structure and add more stuff to the .haddock files | David Waern | 2007-11-10 | 1 | -1/+7 | |
| | | | | | | | We introduce InstalledInterface capturing the part of Interface that is stored in the interface files. We change the ppHtmlContents and ppHtmllIndex to take this structure instead of a partial Interface. We add stuff like the doc map and exported names to the .haddock file (via InstalledInterface). | |||||
* | Improve parsing of doc options | David Waern | 2007-10-02 | 1 | -0/+12 | |
| | ||||||
* | Rename HaddockModule to Interface | David Waern | 2007-08-30 | 1 | -1/+1 | |
| | ||||||
* | Rename HaddockModule to Interface and a few more refactorings | David Waern | 2007-08-29 | 1 | -1/+1 | |
| | ||||||
* | Factor out typechecking phase into Haddock.Typecheck | David Waern | 2007-08-17 | 1 | -14/+1 | |
| | ||||||
* | Follow changes to record constructor representation | David Waern | 2007-07-11 | 1 | -2/+2 | |
| | ||||||
* | De-flatten the namespace | davve@dtek.chalmers.se | 2007-03-25 | 1 | -0/+340 | |