aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock/Backends
Commit message (Collapse)AuthorAgeFilesLines
* removed commented out code that can't be maintainedMark Lentczner2010-04-101-65/+0
|
* data decls are now a sequence of paragraphs, not a tableMark Lentczner2010-04-101-10/+3
|
* clean up processExport and place a div around each declMark Lentczner2010-04-051-15/+16
|
* all decls now generate Html not HtmlTableMark Lentczner2010-04-044-126/+73
| | | | | | | | | | | - ppDecl return Html, and so now do all of the functions it calls - added some internal tables to some decls, which is wrong, and will have to be fixed - decl "Box" functions became "Elem" functions to make clear they aren't in a table anymore (see Layout.hs) - docBox went away, as only used in one place (and its days are numbered) - cleaned up logic in a number of places, removed dead code - added maybeDocToHtml which simplified a number of places in the code
* clean up Doc formatting codeMark Lentczner2010-04-032-46/+39
| | | | | - add CSS for lists - renderToString now uses showHtml since prettyHtml messes up <pre> sections
* add exports to Xhtml modulesMark Lentczner2010-03-216-0/+6
|
* Fix a few stylistic whitespace issues in LaTeX backendDavid Waern2010-07-011-80/+80
|
* LaTeX backend (new options: --latex, --latex-style=<style>)Simon Marlow2010-06-301-0/+1082
|
* 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
|