aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock/Backends
Commit message (Collapse)AuthorAgeFilesLines
* Fix compilation with GHC 6.13Simon Marlow2010-06-021-2/+1
|
* Get rid of H.Utils.pathJoin and use System.FilePath.joinPath insteadDavid Waern2010-05-135-31/+34
|
* Position of module header, this time in the HTML backendsDavid Waern2010-05-138-8/+0
|
* Position the module header the same way everywhereDavid Waern2010-05-135-5/+0
| | | | Silly, but nice with some consistency :-)
* Minor wibbles to HsBang stuffsimonpj2010-05-071-5/+1
|
* Fix buildIan Lynagh2010-05-061-1/+2
|
* Add markup support for interactive examplessimon.hengel2010-04-023-3/+22
|
* apply changes to Html.hs to Xhtml/*.hsMark Lentczner2010-03-201-5/+15
| | | | | | incorporate changes that were made between the time Html.hs was copied and split into Xhtml.hs and Xhtml/*.hs includes patchs after "Wibble" (!) through "Fix build with GHC 6.12.1"
* First, experimental XHTML renderingMark Lentczner2010-03-207-0/+2159
| | | | | | | | | | | | | | | | | | switch to using the xhtml package copied Html.hs to Xhtml.hs and split into sub-modules under Haddock/Backends/Xhtml and detabify moved footer into div, got ready for iface change headers converted to semantic markup contents in semantic markup summary as semantic markup description in semantic markup, info block in header fixed factored out rendering so during debug it can be readable (see renderToString)
* Fix build with GHC 6.12.1david.waern2010-03-182-6/+15
|
* Resolve conflictsIan Lynagh2010-02-201-4/+2
|
* Track changes in HsTyVarBndrsimonpj2010-02-102-5/+4
|
* Update Haddock for quasiquotessimonpj2010-02-101-1/+2
|
* Do not generate illegal character in HTML ID attribute.Yitzchak Gale2010-02-141-1/+1
|
* Put parenthesis around type signature arguments of function typeDavid Waern2010-01-221-3/+5
|
* fix html arg-doc off-by-one and sillinessIsaac Dupree2010-01-141-1/+6
|
* Rename HsDoc back into DocDavid Waern2009-11-282-18/+18
|
* Remove cruft due to compatibility with older GHCsDavid Waern2009-11-281-2/+1
|
* Remove Name from DocInstanceDavid Waern2009-11-281-1/+1
| | | | It's not used.
* Comments on instancesDavid Waern2009-11-241-21/+26
| | | | | | | | | | | | | | | Implementing this was a little trickier than I thought, since we need to match up instances from the renamed syntax with instances represented by InstEnv.Instance. This is due to the current design of Haddock, which matches comments with declarations from the renamed syntax, while getting the list of instances of a class/family directly using the GHC API. - Works for class instances only (Haddock has no support for type family instances yet) - The comments are rendered to the right of the instance head in the HTML output - No change to the .haddock file format - Works for normal user-written instances only. No comments are added on derived or TH-generated instances
* Track change in HsType for the right compiler versionDavid Waern2009-11-141-1/+1
|
* Track change in HsTypesimonpj2009-09-111-1/+2
|
* Backends.Html: ghc >= 6.10Isaac Dupree2009-08-231-4/+0
|
* Backends.DevHelp: ghc >= 6.10Isaac Dupree2009-08-231-3/+0
|
* Backends.Hoogle: eliminate warningsIsaac Dupree2009-08-231-4/+0
|
* re-implement function-argument docsIsaac Dupree2009-08-232-65/+67
| | | | | | | ..on top of the lexParseRn work. This patch doesn't change the InstalledInterface format, and thus, it does not work cross-package, but that will be easy to add subsequently.
* get rid of unused DocMap parameter in HtmlIsaac Dupree2009-08-231-18/+16
|
* Html: remove unnecessary+troublesome GHC. qualificationsIsaac Dupree2009-08-231-12/+12
|
* less big-Map-based proper extraction of constructor subdocsIsaac Dupree2009-08-232-18/+28
|
* hacks to make it compile without fnArgDocsnIsaac Dupree2009-08-231-5/+6
|
* Fix unused import warningsIan Lynagh2009-07-072-3/+0
|
* Implement GADT records in HTML backendIsaac Dupree2009-07-201-6/+24
|
* revert to split-index for large indicesIsaac Dupree2009-07-111-14/+55
| | | | | | | | | - remove the search-box, because browsers have search-for-text abilities anyway. - pick 150 items in index as the arbitrary time at which to split it - notice the bug that identifiers starting with non-ASCII characters won't be listed in split-index, but don't bother to fix it yet (see ticket #116, http://trac.haskell.org/haddock/ticket/116 )
* Follow HsRecTy change with an #if __GLASGOW_HASKEL__ >= 611David Waern2009-07-061-0/+2
|
* Fix (invisible) bug introduced by unicode patchDavid Waern2009-07-061-1/+1
|
* Fix warningsIan Lynagh2009-07-053-3/+9
|
* Fix #104 - create output directory if missingDavid Waern2009-06-271-0/+6
|
* Add Haddock module headersDavid Waern2009-06-246-26/+56
| | | | | | | | | 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.
* Resolve conflictDavid Waern2009-04-261-114/+132
|
* add unicode outputporges2008-12-071-190/+173
|
* Move H.GHC.Utils to H.GhcUtilsDavid Waern2009-04-052-2/+2
|
* WibbleDavid Waern2009-03-271-2/+2
|
* -Wall police in H.B.HoogleDavid Waern2009-03-271-12/+20
|
* Remove H.DocName and put DocName in H.TypesDavid Waern2009-03-271-1/+0
|
* Use docNameOcc instead of nameOccName . getNameDavid Waern2009-03-271-1/+1
|
* Remove docNameOrig and use getName everywhere insteadDavid Waern2009-03-271-6/+6
|
* Add verbosity flag and utils, remove "verbose" flagDavid Waern2008-12-071-1/+1
|
* -Wall police in H.B.HtmlDavid Waern2009-03-261-181/+224
|
* Fix warnings in H.B.DevHelpDavid Waern2009-03-241-9/+9
|
* Fix small bugDavid Waern2009-02-241-6/+17
| | | | | | | | The rule is to prefer type constructors to other things when an identifier in a doc string can refer to multiple things. This stopped working with newer GHC versions (due to a tiny change in the GHC renamer). We implement this rule in the HTML backend for now, instead of fixing it in GHC, since we will move renaming of doc strings to Haddock in the future anyway.