aboutsummaryrefslogtreecommitdiff
path: root/haddock-api
Commit message (Collapse)AuthorAgeFilesLines
...
* Integrate instance specification type into class instance definition.Łukasz Hanuszczak2015-08-215-9/+23
|
* Fix unwitting compilation bug.Łukasz Hanuszczak2015-08-211-1/+1
|
* Refactor type renamer to rebinding and pure renaming phases.Łukasz Hanuszczak2015-08-211-45/+60
|
* Fix another bug where type renamer was generating incorrect names.Łukasz Hanuszczak2015-08-211-1/+1
|
* Add some documentation and refactor type specialization module.Łukasz Hanuszczak2015-08-211-21/+74
|
* Fix type renamer bug with incorrect names being generated.Łukasz Hanuszczak2015-08-211-15/+30
|
* Make type renamer first try single-letter names as alternatives.Łukasz Hanuszczak2015-08-211-1/+9
|
* Improve placement of instance methods expander button.Łukasz Hanuszczak2015-08-212-7/+13
|
* Attach source locations to the specialized class methods.Łukasz Hanuszczak2015-08-211-6/+5
|
* Make specialized methods be nicely formatted again.Łukasz Hanuszczak2015-08-211-4/+8
|
* Make specialized signatures refer to original signature declaration.Łukasz Hanuszczak2015-08-212-3/+10
|
* Hook type renamer with instance method HTML pretty-printer.Łukasz Hanuszczak2015-08-212-3/+8
|
* Move `SetName` class definition to types module.Łukasz Hanuszczak2015-08-212-5/+18
|
* Fix compilation error caused by incorrect type signature.Łukasz Hanuszczak2015-08-211-1/+1
|
* Create function for retrieving free variables from given type.Łukasz Hanuszczak2015-08-211-0/+20
|
* Add SYB-like utility function for performing stateful queries.Łukasz Hanuszczak2015-08-211-1/+15
|
* Fix logic behind binder type renaming.Łukasz Hanuszczak2015-08-211-4/+7
|
* Fill in stub behaviour with actual environment renaming.Łukasz Hanuszczak2015-08-211-14/+28
|
* Implement simple mechanism for generating new type names.Łukasz Hanuszczak2015-08-211-3/+26
|
* Change state of the type renaming monad.Łukasz Hanuszczak2015-08-211-14/+16
|
* Remove code duplication in specialized type renamer.Łukasz Hanuszczak2015-08-211-6/+10
|
* Fill in missing cases in specialized type renaming function.Łukasz Hanuszczak2015-08-211-11/+15
|
* Create scaffolding of a framework for renaming specialized types.Łukasz Hanuszczak2015-08-212-1/+97
|
* Get rid of code duplication in type specialization module.Łukasz Hanuszczak2015-08-211-18/+12
|
* Implement tuple syntax sugaring logic for specialized types.Łukasz Hanuszczak2015-08-211-2/+34
|
* Implement list syntax sugaring logic for specialized types.Łukasz Hanuszczak2015-08-211-3/+16
|
* Create stub functions for sugaring specialized types.Łukasz Hanuszczak2015-08-212-1/+14
|
* Hook type specialization logic with HTML pretty-printer.Łukasz Hanuszczak2015-08-212-12/+22
|
* Create convenience functions for type specialization module.Łukasz Hanuszczak2015-08-211-5/+26
|
* Move dummy post-family instances for `DocName` to `Types` module.Łukasz Hanuszczak2015-08-212-14/+15
|
* Add expandable method section for each class instance declaration.Łukasz Hanuszczak2015-08-212-18/+50
|
* Refactor instance head type to record instead of a meaningless tuple.Łukasz Hanuszczak2015-08-216-38/+63
|
* Make HTML class instance printer take optional signature argument.Łukasz Hanuszczak2015-08-211-9/+14
|
* Make type of type specialization function more general.Łukasz Hanuszczak2015-08-211-3/+3
|
* Create simple utility module for type specialization.Łukasz Hanuszczak2015-08-212-0/+22
|
* Implement generic transformation constructor.Łukasz Hanuszczak2015-08-211-0/+9
|
* Implement `everywhere` transformation in SYB module.Łukasz Hanuszczak2015-08-211-1/+7
|
* Move SYB utilities to standalone module.Łukasz Hanuszczak2015-08-213-14/+28
|
* Apply promoted type quoting to type-level consing.Łukasz Hanuszczak2015-08-061-1/+6
|
* Fix quote syntax for promoted types.Łukasz Hanuszczak2015-08-062-3/+10
|
* Override source line flags when source hyperlinker is enabled.Łukasz Hanuszczak2015-08-021-2/+7
|
* Make hyperlinked source renderer generate line anchors.Łukasz Hanuszczak2015-08-021-3/+23
|
* Add some utility definitions for generating line anchors.Łukasz Hanuszczak2015-08-021-2/+23
|
* Fix record field alignment when name is too longPhil Ruffwind2015-08-022-20/+19
| | | | | | | | | | | Change <dl> to <ul> and use display:table rather than floats to layout the record fields. This avoids bug #301 that occurs whenever the field name gets too long. Slight aesthetic change: the entire cell of the field's source code is now shaded gray rather than just the area where text exists. Fixes #301. Closes #421
* Fix typo in Haddock.Backends.Xhtml.Layout: divSynposis -> divSynopsisPhil Ruffwind2015-08-022-4/+4
| | | | Closes #408
* Link to the definitions to themselvesPhil Ruffwind2015-08-022-8/+16
| | | | | | | | | | | | | | | | | | Currently, the definitions already have an anchor tag that allows URLs with fragment identifiers to locate them, but it is rather inconvenient to obtain such a URL (so-called "permalink") as it would require finding the a link to the corresponding item in the Synopsis or elsewhere. This commit adds hyperlinks to the definitions themselves, allowing users to obtain links to them easily. To preserve the original aesthetics of the definitions, we alter the color of the link so as to be identical to what it was, except it now has a hover effect indicating that it is clickable. Additionally, the anchor now uses the 'id' attribute instead of the (obsolete) 'name' attribute. Closes #407
* Avoid JavaScript error during page load in non-frame modePhil Ruffwind2015-08-021-1/+1
| | | | | | | | | | In non-frame mode, parent.window.synopsis refers to the synopsis div rather than the nonexistent frame. Unfortunately, the script wrongly assumes that if it exists it must be a frame, leading to an error where it tries to access the nonexistent attribute 'replace' of an undefined value (synopsis.location). Closes #406
* Make some version changes after 2.16.1 releaseMateusz Kowalczyk2015-07-221-1/+1
|
* Fix expansion icon for user-collapsible sectionsMateusz Kowalczyk2015-07-111-2/+3
| | | | Closes #412
* Delete trailing whitespaceMateusz Kowalczyk2015-07-075-23/+23
|