Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-12-11 | Add necessary powerpoint functions to Class. | Jesse Rosenthal | 1 | -0/+64 | |
2017-10-29 | Export all of Text.Pandoc.Class from Text.Pandoc. | John MacFarlane | 1 | -1/+0 | |
2017-10-29 | Source code reformatting. | John MacFarlane | 1 | -0/+1 | |
2017-10-27 | hlint suggestions. | John MacFarlane | 1 | -1/+0 | |
2017-10-27 | hlint suggestions. | John MacFarlane | 1 | -5/+4 | |
2017-10-26 | Comment reformat. | John MacFarlane | 1 | -6/+4 | |
2017-10-24 | Added some haddock docs for Text.Pandoc.Class functions. | John MacFarlane | 1 | -3/+22 | |
2017-10-23 | Back to using [WARNING] and [INFO] to mark messages. | John MacFarlane | 1 | -4/+2 | |
2017-10-23 | More pleasing presentation of warnings and info messages. | John MacFarlane | 1 | -4/+5 | |
!! warning -- info | |||||
2017-10-15 | Remove openURL from Shared (API change). | John MacFarlane | 1 | -7/+44 | |
Now all the guts of openURL have been put into openURL from Class. openURL is now sensitive to stRequestHeaders in CommonState and will add these custom headers when making a request. It no longer looks at the USER_AGENT environment variable, since you can now set the `User-Agent` header directly. | |||||
2017-10-15 | Class: add stRequestHeaders to CommonState, and setRequestHeader. | John MacFarlane | 1 | -0/+13 | |
2017-09-30 | Text.Pandoc.Class - add getVerbosity. | John MacFarlane | 1 | -0/+5 | |
2017-09-30 | Removed writerSourceURL, add source URL to common state. | John MacFarlane | 1 | -17/+37 | |
Removed `writerSourceURL` from `WriterOptions` (API change). Added `stSourceURL` to `CommonState`. It is set automatically by `setInputFiles`. Text.Pandoc.Class now exports `setInputFiles`, `setOutputFile`. The type of `getInputFiles` has changed; it now returns `[FilePath]` instead of `Maybe [FilePath]`. Functions in Class that formerly took the source URL as a parameter now have one fewer parameter (`fetchItem`, `downloadOrRead`, `setMediaResource`, `fillMediaBag`). Removed `WriterOptions` parameter from `makeSelfContained` in `SelfContained`. | |||||
2017-09-30 | Text.Pandoc.Lua: add mediabag submodule | Albert Krewinkel | 1 | -9/+19 | |
2017-08-20 | Protect OVERLAPS pragma with CPP. | John MacFarlane | 1 | -0/+4 | |
2017-08-20 | Use OverlappingInstances instead of OVERLAPS for ghc 7.8.4. | John MacFarlane | 1 | -0/+4 | |
2017-08-20 | Removed redundant import. | John MacFarlane | 1 | -1/+0 | |
2017-08-19 | Simplify instances in Class by parameterizing on MonadTrans. | John MacFarlane | 1 | -67/+21 | |
2017-08-12 | Improved error report on loading translation file. | John MacFarlane | 1 | -4/+6 | |
2017-08-12 | Change to yaml for translation files. | John MacFarlane | 1 | -6/+7 | |
2017-08-11 | Fixed import. | John MacFarlane | 1 | -1/+1 | |
2017-08-11 | More redundant imports. | John MacFarlane | 1 | -2/+1 | |
2017-08-11 | Avoid some warnings when compiled wo/ embed_data_files flag. | John MacFarlane | 1 | -2/+3 | |
2017-08-11 | Add getFileName to PandocMonad. | John MacFarlane | 1 | -2/+16 | |
We need this for getDefaultDataFile. | |||||
2017-08-11 | Added support for translations (localization) (see #3559). | John MacFarlane | 1 | -46/+212 | |
* readDataFile, readDefaultDataFile, getReferenceDocx, getReferenceODT have been removed from Shared and moved into Class. They are now defined in terms of PandocMonad primitives, rather than being primitve methods of the class. * toLang has been moved from BCP47 to Class. * NoTranslation and CouldNotLoudTranslations have been added to LogMessage. * New module, Text.Pandoc.Translations, exporting Term, Translations, readTranslations. * New functions in Class: translateTerm, setTranslations. Note that nothing is loaded from data files until translateTerm is used; setTranslation just sets the language to be used. * Added two translation data files in data/translations. * LaTeX reader: Support `\setmainlanguage` or `\setdefaultlanguage` (polyglossia) and `\figurename`. | |||||
2017-08-10 | Removed datadir param from readDataFile and getDefaultTemplate. | John MacFarlane | 1 | -14/+20 | |
In Text.Pandoc.Class and Text.Pandoc.Template, resp. We now get the datadir from CommonState. | |||||
2017-08-10 | Class: add setUserDataDir and getUserDataDir. | John MacFarlane | 1 | -5/+21 | |
* Add stUserDataDir to CommonState. * Rename stUserDataDir/stCabalDataDir in PureState to stUserDataFiles/stCabalDataFiles. | |||||
2017-08-10 | Expose getDefaultDataFile in both Shared and Class. | John MacFarlane | 1 | -3/+13 | |
2017-07-30 | Class: more haddocks. | John MacFarlane | 1 | -0/+12 | |
2017-07-30 | Class: Removed unnecessary withMedia, improved haddocks. | John MacFarlane | 1 | -7/+22 | |
2017-07-19 | Class: started adding haddocks. | John MacFarlane | 1 | -10/+39 | |
2017-07-15 | Don't rely on listDirectory, which is only in newer versions... | John MacFarlane | 1 | -2/+5 | |
of directory. | |||||
2017-07-14 | Class: make addToFileTree handle directories recursively. | John MacFarlane | 1 | -6/+15 | |
2017-07-14 | Class: remove stFontFiles in PureState, 'glob' searches stFiles. | John MacFarlane | 1 | -4/+2 | |
2017-07-14 | Class: added addToFileTree | John MacFarlane | 1 | -0/+8 | |
2017-06-19 | Tracing: give less misleading line information with parseWithString. | John MacFarlane | 1 | -2/+7 | |
Previously positions would be reported past the end of the chunk. We now reset the source position within the chunk and report positions "in chunk." | |||||
2017-06-19 | Separated tracing from logging. | John MacFarlane | 1 | -5/+22 | |
Formerly tracing was just log messages with a DEBUG log level. We now make these things independent. Tracing can be turned on or off in PandocMonad using `setTrace`; it is independent of logging. * Removed `DEBUG` from `Verbosity`. * Removed `ParserTrace` from `LogMessage`. * Added `trace`, `setTrace` to `PandocMonad`. | |||||
2017-06-17 | Use Control.Monad.State.Strict throughout. | John MacFarlane | 1 | -1/+1 | |
This gives 20-30% speedup and reduction of memory usage in most of the writers. | |||||
2017-06-12 | Changed "extracting..." warning to a regular log message. | John MacFarlane | 1 | -4/+19 | |
This makes it sensitive to proper verbosity settings. (It is now treated as INFO rather than WARNING, so one doesn't get these messages for creation of tmp images while making a pdf.) API changes: * Removed extractMediaBag from Text.Pandoc.MediaBag. * Added Extracting as constructor for LogMessage. | |||||
2017-06-02 | hlint suggestions. | John MacFarlane | 1 | -1/+1 | |
2017-06-01 | Some hlint refactoring. | John MacFarlane | 1 | -16/+13 | |
2017-06-01 | Trivial reformatting. | John MacFarlane | 1 | -3/+7 | |
2017-05-18 | Don't double extract images from docx. | John MacFarlane | 1 | -9/+14 | |
This fixes a regression that was introduced when `--extract-media` was generalized to work with any input format. We were getting two versions of each image extracted from a docx, one with a hash, one with the original filename, though only the hash one was used. This patch restores the original behavior (using the original filename). Pointed out in comments on #3674. Thanks to @laperouse. | |||||
2017-05-07 | Rename fillMedia -> fillMediaBag. | John MacFarlane | 1 | -3/+3 | |
2017-05-07 | Moved fillMedia, extractMedia from App to Class. | John MacFarlane | 1 | -3/+53 | |
Also generalized type of fillMedia to any instance of PandocMonad. | |||||
2017-05-07 | Added PandocHttpException, trap exceptions in fetching from URLs. | John MacFarlane | 1 | -1/+4 | |
Closes #3646. | |||||
2017-05-02 | Added PandocResourceNotFound error. | John MacFarlane | 1 | -8/+4 | |
Use this instead of PandocIOError when a resource is not found in path. This improves the error message in this case, see #3629. | |||||
2017-03-09 | Changed display format for messages. | John MacFarlane | 1 | -8/+8 | |
2017-03-04 | Add hanging indent to log messages. | John MacFarlane | 1 | -3/+12 | |
This makes them easier to read. | |||||
2017-02-24 | Shared: remove 'warn'. | John MacFarlane | 1 | -4/+1 | |
PDF writer: Use 'report' instead of 'warn', make it sensitive to verbosity settings. |