Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-03-04 | Stylish-haskell automatic formatting changes. | John MacFarlane | 1 | -4/+5 | |
2017-02-23 | Removed unnecessary import. | John MacFarlane | 1 | -5/+1 | |
2017-02-23 | Fix compiler warning for older GHC versions. | John MacFarlane | 1 | -2/+5 | |
2017-02-23 | Error: Changed PandocFileReadError to PandocIOError | John MacFarlane | 1 | -2/+3 | |
2017-02-19 | Error: added PandocMakePDFError | John MacFarlane | 1 | -0/+2 | |
2017-02-10 | Added Text.Pandoc.Logging (exported module). | John MacFarlane | 1 | -8/+3 | |
This now contains the Verbosity definition previously in Options, as well as a new LogMessage datatype that will eventually be used instead of raw strings for warnings. This will enable us, among other things, to provide machine-readable warnings if desired. See #3392. | |||||
2017-01-25 | Generic instance for PandocError. | John MacFarlane | 1 | -1/+2 | |
2017-01-25 | Error: change type of handleError. | John MacFarlane | 1 | -11/+11 | |
It now lives in IO and gives a proper message + exit instead of calling 'error'. We shouldn't be making it easier for people to raise error on pure code. And this is better for the main application in IO. | |||||
2017-01-25 | Unify Errors. | Jesse Rosenthal | 1 | -8/+18 | |
2016-09-02 | Remove Text.Pandoc.Compat.Except | Jesse Rosenthal | 1 | -5/+0 | |
2016-08-06 | Fix out of index error in handleError | Matthew Pickering | 1 | -4/+8 | |
In the latex parser when includes are processed, the text of the included file is directly included into the parse stream. This caused problems when there was an error in the included file (and the included file was longer than the original file) as the error would be reported at this position. The error handling tries to display the line and position where the error occured. It works by including a copy of the input and finding the place in the input when given the position of the error. In the previously described scenario, the input file would be the original source file but the error position would be the position of the error in the included file. The fix is to not try to show the exact line when it would cause an out-of-bounds error. | |||||
2016-03-22 | Updated copyright dates to include 2016. | John MacFarlane | 1 | -2/+2 | |
2015-11-09 | Revert "Use -XNoImplicitPrelude and 'import Prelude' explicitly." | John MacFarlane | 1 | -1/+0 | |
This reverts commit c423dbb5a34c2d1195020e0f0ca3aae883d0749b. | |||||
2015-11-08 | Use -XNoImplicitPrelude and 'import Prelude' explicitly. | John MacFarlane | 1 | -0/+1 | |
This is needed for ghci to work with pandoc, given that we now use a custom prelude. Closes #2503. | |||||
2015-10-11 | Removed unnecessary import. | John MacFarlane | 1 | -1/+1 | |
2015-10-11 | Define Typeable and Exception instances for PandocError. | John MacFarlane | 1 | -1/+6 | |
Closes #2386. | |||||
2015-02-18 | Move utility error functions to Text.Pandoc.Shared | Matthew Pickering | 1 | -8/+1 | |
2015-02-18 | Update haddocks and copyright notices | Matthew Pickering | 1 | -2/+34 | |
2015-02-18 | Add Text.Pandoc.Error module with PandocError type | Matthew Pickering | 1 | -0/+39 | |