Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-02-04 | Add missing copyright notices and remove license boilerplate (#5112) | Albert Krewinkel | 1 | -2/+2 | |
Quite a few modules were missing copyright notices. This commit adds copyright notices everywhere via haddock module headers. The old license boilerplate comment is redundant with this and has been removed. Update copyright years to 2019. Closes #4592. | |||||
2018-11-30 | Fix warnings in Text.Pandoc.Process. | John MacFarlane | 1 | -2/+5 | |
2018-11-30 | Text.Pandoc.Process: update pipeProcess | Albert Krewinkel | 1 | -31/+60 | |
The implementation of `pipeProcess` was rewritten to fix sporadic failures caused by prematurely closed pipes. | |||||
2018-03-18 | Use NoImplicitPrelude and explicitly import Prelude. | John MacFarlane | 1 | -0/+2 | |
This seems to be necessary if we are to use our custom Prelude with ghci. Closes #4464. | |||||
2018-01-05 | Update copyright notices to include 2018 | Albert Krewinkel | 1 | -2/+2 | |
2017-05-13 | Update dates in copyright notices | Albert Krewinkel | 1 | -2/+2 | |
This follows the suggestions given by the FSF for GPL licensed software. <https://www.gnu.org/prep/maintain/html_node/Copyright-Notices.html> | |||||
2017-03-04 | Stylish-haskell automatic formatting changes. | John MacFarlane | 1 | -4/+4 | |
2017-01-25 | Process.pipeProcess: stream stderr rather than capturing. | John MacFarlane | 1 | -14/+8 | |
Signature of pipeProcess has changed: the return value is now IO (ExitCode, ByteString) -- with only stdout. Stderr is just inherited from the parent. This means that stderr from filters will now be streamed as the filters are run. Closes #2729. | |||||
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-04-26 | Updated copyright notices to -2015. Closes #2111. | John MacFarlane | 1 | -2/+2 | |
2014-05-11 | Process: Fix minor typo in pipeProcess' docs | Albert Krewinkel | 1 | -2/+1 | |
Replace fullstop with comma, adjust capitalisation. | |||||
2014-05-09 | Update copyright notices for 2014, add missing notices | Albert Krewinkel | 1 | -2/+2 | |
2013-08-08 | Added Text.Pandoc.Process (pipeProcess). | John MacFarlane | 1 | -0/+105 | |
A souped up version of readProcessWithErrorCode that uses lazy bytestrings and allows setting environment. |