aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Add some documentation for AST module of source hyperlinker.Łukasz Hanuszczak2015-06-301-10/+46
|
* Add some documentation for parser module of source hyperlinker.Łukasz Hanuszczak2015-06-301-0/+39
|
* Add support for parsing C preprocessor macros.Łukasz Hanuszczak2015-06-301-4/+16
|
* Fix issues with escaped newlines in comments.Łukasz Hanuszczak2015-06-301-8/+5
|
* Fix bug with improper newline handling.Łukasz Hanuszczak2015-06-301-1/+1
|
* Fix parsing of single line comments with broken up newlines.Łukasz Hanuszczak2015-06-301-1/+11
|
* Implement hyperlinking of imported module names.Łukasz Hanuszczak2015-06-302-18/+29
|
* Refactor the way AST names are handled within detailed tokens.Łukasz Hanuszczak2015-06-302-25/+29
|
* Fix external anchors to contain HTML file extension.Łukasz Hanuszczak2015-06-301-1/+1
|
* Add support for top-level function declaration anchors.Łukasz Hanuszczak2015-06-301-1/+6
|
* Add support for type declaration anchors.Łukasz Hanuszczak2015-06-302-8/+27
|
* Fix weird hyperlinking of parenthesized operators.Łukasz Hanuszczak2015-06-302-1/+7
|
* Fix span matching to allow parenthesized operators hyperlinking.Łukasz Hanuszczak2015-06-301-5/+5
|
* Implement module export- and import-list item hyperlinking.Łukasz Hanuszczak2015-06-301-1/+19
|
* Implement go-to-definition mechanism for local bindings.Łukasz Hanuszczak2015-06-301-7/+23
|
* Add support for binding token recognition.Łukasz Hanuszczak2015-06-302-1/+20
|
* Add support for type token recognition.Łukasz Hanuszczak2015-06-302-31/+68
|
* Constrain elements exported by hyperlinker modules.Łukasz Hanuszczak2015-06-302-2/+5
|
* Fix span matcher bug causing wrong items being hyperlinked.Łukasz Hanuszczak2015-06-301-1/+1
|
* Add dummy support for hyperlinking named tokens.Łukasz Hanuszczak2015-06-301-3/+20
|
* Create simple mechanism for associating tokens with AST names.Łukasz Hanuszczak2015-06-301-7/+23
|
* Implement utility method for extracting variable identifiers from AST.Łukasz Hanuszczak2015-06-301-0/+16
|
* Create scaffolding of module for associating tokens with AST names.Łukasz Hanuszczak2015-06-302-0/+21
|
* Add support for recognizing compiler pragmas in source parser.Łukasz Hanuszczak2015-06-302-0/+3
|
* Fix comment recognition in Haskell source parser.Łukasz Hanuszczak2015-06-301-2/+3
|
* Fix identifier recognition in Haskell source parser.Łukasz Hanuszczak2015-06-301-2/+5
|
* Add support for specifying the CSS file path in HTML source renderer.Łukasz Hanuszczak2015-06-301-15/+30
|
* Create simple HTML renderer for parsed source file.Łukasz Hanuszczak2015-06-302-1/+28
|
* Make parser module export all types and associated accessors.Łukasz Hanuszczak2015-06-301-3/+2
|
* Add record accessors to exports of hyperlinker parser module.Łukasz Hanuszczak2015-06-301-1/+6
|
* Adapt source span tagging to work with current whitespace handling.Łukasz Hanuszczak2015-06-301-4/+7
|
* Create basic token classification method.Łukasz Hanuszczak2015-06-301-6/+98
|
* Implement simple string chunking based on HsColour library.Łukasz Hanuszczak2015-06-301-1/+27
|
* Implement function for tagging parsed chunks with source spans.Łukasz Hanuszczak2015-06-301-1/+8
|
* Create scaffolding for Haskell source parser module.Łukasz Hanuszczak2015-06-302-0/+37
|
* Update tests for the CSS changesMateusz Kowalczyk2015-06-1413-576/+719
|
* Fix alignment of Source links in instance table in FirefoxPhil Ruffwind2015-06-122-2/+16
| | | | | | | | | | | | | | | | | | | Due to a Firefox bug [1], a combination of 'whitespace: nowrap' on the parent element with 'float: right' on the inner element can cause the floated element to be displaced downwards for no apparent reason. To work around this, the left side is wrapped in its own <span> and set to 'float: left'. As a precautionary measure to prevent the parent element from collapsing entirely, we also add the classic "clearfix" hack. The latter is not strictly needed but it helps prevent bugs if the layout is altered again in the future. Fixes #384. Remark: line 159 of src/Haddock/Backends/Xhtml/Layout.hs was indented to prevent confusion over the operator precedence of (<+>) vs (<<). [1]: https://bugzilla.mozilla.org/show_bug.cgi?id=488725
* Update changelogMateusz Kowalczyk2015-06-121-0/+2
| | | | Closes #398
* Attach to instance location the name that has the same location filejpmoresmau2015-06-126-25/+39
| | | | Fixes #383
* Changelog for #207Mateusz Kowalczyk2015-06-121-0/+2
| | | | Fixes #207, closes #402
* Fix haddock: internal error: spliceURL UnhelpfulSpan (#207)Bartosz Nitka2015-06-121-5/+11
| | | | | | | | Inferred type signatures don't have SrcSpans, so let's use the one from the declaration. I've tested this manually on the test-case from #207, but I got stuck at trying to run the test-suite.
* Update changelog for -threadedMateusz Kowalczyk2015-06-121-0/+2
| | | | Closes #400
* Build executable with '-threaded' (fixes #399)Emanuel Borsboom2015-06-124-1/+118
|
* Refine hacking instructions slightlyMateusz Kowalczyk2015-06-081-3/+7
|
* Fix markdownBartosz Nitka2015-06-071-0/+2
|
* Add some Hacking docs for getting startedBartosz Nitka2015-06-071-0/+19
|
* Update some meta data at the top of the docsMateusz Kowalczyk2015-06-031-2/+11
|
* Update docs with info on new list nesting ruleMateusz Kowalczyk2015-06-031-0/+11
| | | | Fixes #278 through commits from PR #401
* Add arbitrary-indent spec test for parser.Łukasz Hanuszczak2015-06-031-0/+17
|
* Add simple test case for arbitrary-depth list nesting.Łukasz Hanuszczak2015-05-272-10/+54
|