Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-12-23 | Remove old code for now | Jasper Van der Jeugt | 24 | -2297/+0 | |
2010-12-13 | ContextManipulations → Metadata | Jasper Van der Jeugt | 3 | -66/+57 | |
2010-12-13 | Experimental changes for a re-write | Jasper Van der Jeugt | 6 | -105/+211 | |
2010-11-15 | One implementation for toDestination and toCache | Jasper Van der Jeugt | 1 | -11/+19 | |
2010-11-14 | Add default title | Jasper Van der Jeugt | 2 | -15/+6 | |
2010-11-12 | Add renderMissingValue function | Jasper Van der Jeugt | 1 | -6/+19 | |
2010-10-28 | Fix compile error | Jasper Van der Jeugt | 1 | -1/+2 | |
2010-10-28 | Add a takeBody function | Jasper Van der Jeugt | 3 | -7/+13 | |
2010-10-28 | Arrow version of addField | Jasper Van der Jeugt | 1 | -4/+8 | |
2010-10-28 | Add an `addField` function | Jasper Van der Jeugt | 1 | -2/+15 | |
2010-10-04 | Provide an arrow-based interface to Pandoc module | Jasper Van der Jeugt | 1 | -20/+19 | |
2010-10-04 | Provide simple `renderActionWith` function | Jasper Van der Jeugt | 1 | -7/+13 | |
2010-10-04 | Clean up yesterday's work, fix tests | Jasper Van der Jeugt | 2 | -18/+25 | |
2010-10-04 | Clean up modules a bit | Jasper Van der Jeugt | 5 | -5/+13 | |
2010-10-04 | Separate pandoc from page reading, general caching | Jasper Van der Jeugt | 5 | -67/+116 | |
2010-10-02 | Disable partial functions (thanks chrisdone) | Jasper Van der Jeugt | 5 | -15/+9 | |
2010-10-01 | Add concurrency features | Jasper Van der Jeugt | 1 | -2/+23 | |
2010-10-01 | Document withTagMap function | Jasper Van der Jeugt | 1 | -0/+2 | |
2010-10-01 | Treat .page extensions as markdown | Jasper Van der Jeugt | 1 | -0/+1 | |
2010-09-27 | Fix warnings | Jasper Van der Jeugt | 1 | -2/+0 | |
2010-09-23 | Migrate to BlazeHtml for HTML generation | Jasper Van der Jeugt | 2 | -12/+18 | |
2010-09-23 | Export all modules in Text.Hakyll, for the lazy | Jasper Van der Jeugt | 2 | -1/+27 | |
2010-08-06 | Readable errors when hamlet parsing fails | Jasper Van der Jeugt | 1 | -2/+13 | |
2010-08-06 | Fix link bug in paginate module | Jasper Van der Jeugt | 1 | -1/+6 | |
2010-08-06 | Refactored Template data structure. | Jasper Van der Jeugt | 3 | -45/+52 | |
2010-08-05 | Hamlet support (experimental) | Jasper Van der Jeugt | 5 | -26/+92 | |
2010-08-02 | Add a simple static configuration | Jasper Van der Jeugt | 4 | -17/+93 | |
2010-08-02 | Add inHakyllDirectory function and test cases | Jasper Van der Jeugt | 3 | -0/+32 | |
2010-07-31 | Option to choose between preview modes | Jasper Van der Jeugt | 2 | -3/+40 | |
2010-06-22 | User can supply custom time locale for renderDate | Jasper Van der Jeugt | 1 | -3/+17 | |
2010-06-20 | Add newtype for Context | Jasper Van der Jeugt | 10 | -33/+42 | |
2010-06-18 | Allow markdown/tex/... in templates | Jasper Van der Jeugt | 2 | -9/+14 | |
2010-06-17 | Force setting of absoluteUrl with custom config. | Jasper Van der Jeugt | 1 | -4/+5 | |
2010-06-16 | Rewrote preview mode. | Jasper Van der Jeugt | 3 | -33/+29 | |
Preview mode is now based on server requests instead of time intervals. This should solve some problems out there. | |||||
2010-05-25 | Server allows URL's containing '?'. | Jasper Van der Jeugt | 1 | -1/+2 | |
2010-05-25 | Typo fix by masak. | Jasper Van der Jeugt | 1 | -1/+1 | |
2010-05-22 | Add possibility to change URL through Arrows. | Jasper Van der Jeugt | 6 | -18/+33 | |
2010-05-20 | Expose pandoc options (patch by JD Marble). | Jasper Van der Jeugt | 3 | -39/+52 | |
2010-04-04 | Added fix to allow dashes in pages. | Jasper Van der Jeugt | 1 | -10/+20 | |
Hakyll splits pages into metadata sections by lines starting with `---`. Because of this, thing like Header ------ Some text. will not parse. This commit fixes this, by fixating the length of the the dash pattern -- all dashed lines should contain the same number of dashes. Therefor, you can use something like --- title: Foobar --- Header ------ Some text. | |||||
2010-04-01 | Moved Arbitrary Template instance to tests. | Jasper Van der Jeugt | 1 | -34/+2 | |
This way, the code for Text.Hakyll.Internal.Template is cleaner, and our library does not depend on QuickCheck anymore. | |||||
2010-03-31 | Updated tutorial about categoryblog. | Jasper Van der Jeugt | 1 | -2/+2 | |
2010-03-27 | Fixed error causing post lists to be reversed. | Jasper Van der Jeugt | 2 | -11/+16 | |
This error was caused when rendering post lists produced by readTagMap. I also gave some shorter implementations for functions in Text.Hakyll.HakyllAction. | |||||
2010-03-26 | Fixed error when rendering literate Haskell. | Jasper Van der Jeugt | 1 | -4/+5 | |
Literate haskell was not listed in the pattern matching on FileType's, so it gave an error that the file type could not be rendered. This was quickly resolved by adding it to the list. | |||||
2010-03-26 | Added `.txt` support, tests update. | Jasper Van der Jeugt | 2 | -0/+4 | |
- Pure text files are now supported. - We now hide the Internal modules. - Tests should be run through ghci. - Added testing of page reading. | |||||
2010-03-14 | Added renderBody function. | Jasper Van der Jeugt | 1 | -0/+11 | |
2010-03-12 | Changes String to FilePath on appropriate places. | Jasper Van der Jeugt | 1 | -2/+2 | |
2010-03-11 | Started writing Hakyll 2.x tutorials. Updated brochure example. | Jasper Van der Jeugt | 1 | -0/+1 | |
2010-03-11 | Updated some comments. | Jasper Van der Jeugt | 3 | -13/+11 | |
2010-03-11 | Gave some functions better (more appropriate) names. | Jasper Van der Jeugt | 7 | -63/+57 | |
2010-03-11 | Moved some modules around for fun and profit. | Jasper Van der Jeugt | 13 | -105/+109 | |