aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump ‘base’ constraintMateusz Kowalczyk2014-12-123-3/+3
| | | | Follows the similar commit made on ghc-head branch
* Follow changes to TypeAnnot in GHC HEADAlan Zimmerman2014-12-122-11/+26
| | | | | | | Signed-off-by: Austin Seipp <aseipp@pobox.com> Conflicts: haddock-api/src/Haddock/Convert.hs
* Import Data.Word w/o import-listHerbert Valerio Riedel2014-12-121-1/+1
| | | | | | | This is needed to keep the compilation warning free (and thus pass GHC's ./validate) regardless of whether Word is re-exported from Prelude or not See https://ghc.haskell.org/trac/ghc/ticket/9531 for more details
* Changes due to ghc api changes in package representationDuncan Coutts2014-12-123-27/+17
| | | | | | | | | | 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-1215-59/+67
| | | | | | | | This reverts commit 5c93cc347773c7634321edd5f808d5b55b46301f, reversing changes made to 5b81a9e53894d2ae591ca0c6c96199632d39eb06. Conflicts: haddock-api/src/Haddock/Convert.hs
* header could contain several linesjpmoresmau2014-12-101-1/+1
| | | | Closes #348
* Update doctest parts of commentsMateusz Kowalczyk2014-12-101-18/+22
|
* Allow the parser to spit out meta-infoMateusz Kowalczyk2014-12-1022-112/+407
| | | | | | | | | | | | | | | 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.
* List new module in cabal fileMateusz Kowalczyk2014-12-091-0/+1
|
* (wip) Add support for @since (closes #26)Simon Hengel2014-11-166-23/+82
|
* State intention rather than implementation details in Haddock commentSimon Hengel2014-11-161-1/+1
|
* newtype-wrap parser monadSimon Hengel2014-11-084-3/+131
|
* Minor code simplificationSimon Hengel2014-11-081-4/+3
|
* Fix parsing of identifiers written in infix wayMateusz Kowalczyk2014-11-044-12/+23
|
* Fix warningsMateusz Kowalczyk2014-11-043-6/+4
|
* Turn some uses of error into recoverable warningsMateusz Kowalczyk2014-11-043-106/+141
| | | | | | | This should at the very least not abort when something weird happens. It does feel like we should have a type that carries these errors until the end however as the user might not see them unless they are printed at the end.
* Fix re-exports of built-in type familiesMateusz Kowalczyk2014-11-044-4/+102
| | | | Fixes #310
* whitespace onlyMateusz Kowalczyk2014-11-041-9/+9
|
* Allow an optional colon after the closing bracket of definition listsSimon Hengel2014-11-034-25/+36
| | | | | This is to disambiguate them from markdown links and will be require with a future release.
* Add support for markdown imagesSimon Hengel2014-11-034-23/+34
|
* Update documentationSimon Hengel2014-11-031-12/+32
|
* Allow markdown links at the beginning of a paragraphSimon Hengel2014-11-032-5/+43
|
* Add support for markdown links (closes #336)Simon Hengel2014-11-033-10/+69
|
* parser: Try to parse definition lists right before text paragraphsSimon Hengel2014-11-031-1/+1
|
* Minor refactoringSimon Hengel2014-11-031-22/+28
|
* Remove unused language extensionsSimon Hengel2014-11-032-5/+0
|
* Derive more instancesSimon Hengel2014-11-031-8/+1
|
* Get rid of StandaloneDerivingSimon Hengel2014-11-031-10/+3
|
* Remove -fobject-code from .ghciSimon Hengel2014-11-021-1/+1
| | | | (this slows down reloads on modifications)
* Experimental support for collapsable headersMateusz Kowalczyk2014-10-2910-34/+296
| | | | Closes #335
* 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.
* Delete stale ANNOUNCEMateusz Kowalczyk2014-09-121-60/+0
|
* Mention --print-missing-docsMateusz Kowalczyk2014-09-041-0/+12
|
* CONTRIBUTING file for issuesMateusz Kowalczyk2014-09-031-0/+17
|
* Make the doc parser not complainMateusz Kowalczyk2014-08-311-1/+9
|
* Remove references to deleted filesMateusz Kowalczyk2014-08-311-2/+0
|
* Bump haddock-library versionMateusz Kowalczyk2014-08-312-2/+2
|
* Bump version in docMateusz Kowalczyk2014-08-311-1/+1
|
* Delete few unused/irrelevant/badly-place files.Mateusz Kowalczyk2014-08-246-225/+4
|
* Update CHANGESMateusz Kowalczyk2014-08-241-1/+18
|
* Omit unnecessary foralls and fix #315Niklas Haas2014-08-243-25/+159
| | | | This also fixes #86.
* Fix extra whitespace on signatures and update all test casesNiklas Haas2014-08-2434-110/+202
| | | | | This was long overdue, now running ./accept.lhs on a clean test from master will not generate a bunch of changes.
* Remove compat stuffMateusz Kowalczyk2014-08-232-20/+0
|
* Move sources under haddock-api/srcMateusz Kowalczyk2014-08-2334-3/+3
|
* install dependencies for haddock-api on travisLuite Stegeman2014-08-221-1/+1
|
* ghc 7.8.2 compatibilityLuite Stegeman2014-08-224-3/+21
|
* export things to allow customizing how the Ghc session is runLuite Stegeman2014-08-222-11/+26
|
* Add deprecated compatibility moduleSimon Hengel2014-08-222-0/+20
|
* Bump version to 2.15.0 and add version constraintsSimon Hengel2014-08-222-4/+4
|
* Move Haddock API to a separate packageSimon Hengel2014-08-2222-119/+138
|