Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-01-24 | Use ascending list for serializing where possible. | Jasper Van der Jeugt | 1 | -2/+2 | |
2010-01-24 | Added tagMap caching. | Jasper Van der Jeugt | 1 | -6/+6 | |
Because the readTagMap function was currently one of the bottlenexks, this has caused a speedup of 900% for some test cases, so yay for that. | |||||
2010-01-24 | Wrote some more documentation. | Jasper Van der Jeugt | 1 | -1/+1 | |
2010-01-23 | Documentation++. | Jasper Van der Jeugt | 1 | -1/+0 | |
2010-01-23 | Strictness cleanup. | Jasper Van der Jeugt | 1 | -7/+3 | |
2010-01-21 | Some more documentation. | Jasper Van der Jeugt | 1 | -1/+2 | |
2010-01-20 | Speedup of factor 4 by switching to the Data.Binary library for serialization. | Jasper Van der Jeugt | 1 | -1/+8 | |
2010-01-20 | Added caching again. But now the more sexy, stable and fast version. | Jasper Van der Jeugt | 1 | -3/+13 | |
2010-01-19 | Removed debug output. | Jasper Van der Jeugt | 1 | -1/+0 | |
2010-01-19 | Removed page caching. | Jasper Van der Jeugt | 1 | -40/+9 | |
I am removing page caching for the following reasons (in no particular order): - It is very error-prone because the pandoc output might interfere with the Hakyll page layout (and thus would pages be read incorrectly). - Timestamping is a much better method to save compilation time. - It would also mess up Unicode sometimes. - Hakyll is aimed at small to medium sites. This caching would not bring a huge speedup anyway. Note: there still is timestamp checking! | |||||
2010-01-19 | Made page parser a little less strict. | Jasper Van der Jeugt | 1 | -3/+4 | |
2010-01-19 | Hakyll now passes HLint. | Jasper Van der Jeugt | 1 | -3/+4 | |
2010-01-19 | Cleaner page reading. | Jasper Van der Jeugt | 1 | -10/+10 | |
2010-01-19 | Unicode is a bitch. | Jasper Van der Jeugt | 1 | -10/+9 | |
I am leaving a character in one of the examples, so we would notice it directly, should we ever break it again. | |||||
2010-01-19 | Enable Pandoc's smart typography parsing. | Sebastian Schwarz | 1 | -1/+5 | |
Something like: -- to – and ... to … | |||||
2010-01-18 | Added basic support for metadata sections. | Jasper Van der Jeugt | 1 | -30/+48 | |
2010-01-18 | Added liftIO. | Jasper Van der Jeugt | 1 | -1/+1 | |
2010-01-18 | Merge branch 'master' of git://github.com/seschwar/Hakyll into experimental | Jasper Van der Jeugt | 1 | -5/+4 | |
Conflicts: hakyll.cabal src/Text/Hakyll/Page.hs src/Text/Hakyll/Render/Internal.hs | |||||
2010-01-18 | Added reStructuredText support. | Sebastian Schwarz | 1 | -0/+1 | |
Why not? Quickly tested. Seems to work fine. | |||||
2010-01-18 | Added support for other common Markdown file extensions. | Sebastian Schwarz | 1 | -4/+2 | |
2010-01-18 | Added UTF8 where nessecary. | Jasper Van der Jeugt | 1 | -12/+13 | |
2010-01-18 | Fixed bug in section metadata writing. | Jasper Van der Jeugt | 1 | -1/+1 | |
2010-01-17 | Added section metadata writing. | Jasper Van der Jeugt | 1 | -1/+8 | |
2010-01-17 | Changed to tibbe's style guide for imports. | Jasper Van der Jeugt | 1 | -4/+2 | |
2010-01-17 | Documentation++. | Jasper Van der Jeugt | 1 | -2/+1 | |
2010-01-17 | Fixed warnings when compiling with the new GHC 6.12.1. | Jasper Van der Jeugt | 1 | -1/+1 | |
2010-01-15 | Moved some more functions from the IO monad to the Hakyll monad stack. | Jasper Van der Jeugt | 1 | -9/+13 | |
2010-01-14 | Parallel version bump. | Jasper Van der Jeugt | 1 | -2/+2 | |
Conflicts: src/Text/Hakyll/Page.hs | |||||
2010-01-14 | Parallel version bump. | Jasper Van der Jeugt | 1 | -2/+2 | |
2010-01-14 | Added ReaderT to our stack. | Jasper Van der Jeugt | 1 | -11/+13 | |
2010-01-12 | Fixed bug in page loading. | Jasper Van der Jeugt | 1 | -2/+2 | |
2010-01-12 | Some more strictness. | Jasper Van der Jeugt | 1 | -7/+6 | |
2010-01-11 | Readability++. | Jasper Van der Jeugt | 1 | -22/+29 | |
2010-01-11 | Added some strictness. | Jasper Van der Jeugt | 1 | -2/+5 | |
2010-01-10 | Added custom Template system. Highly experimental. | Jasper Van der Jeugt | 1 | -22/+17 | |
2010-01-10 | Worked on substitution. | Jasper Van der Jeugt | 1 | -9/+0 | |
2010-01-10 | Started working on relative-url branch. | Jasper Van der Jeugt | 1 | -0/+1 | |
2010-01-03 | Added context manipulating functions and associated render functions. Also, ↵ | Jasper Van der Jeugt | 1 | -12/+0 | |
version bump. | |||||
2009-12-29 | Expplicit use of Context, in an attempt to solve build errors on hackage. | Jasper Van der Jeugt | 1 | -6/+7 | |
2009-12-27 | More explicit imports. | Jasper Van der Jeugt | 1 | -7/+7 | |
2009-12-26 | Added original page path to Page records. | Jasper Van der Jeugt | 1 | -8/+12 | |
2009-12-25 | Added getValue function. | Jasper Van der Jeugt | 1 | -0/+6 | |
2009-12-25 | Added copyValueWith. | Jasper Van der Jeugt | 1 | -0/+12 | |
2009-12-17 | Splitted Text.Hakyll.Util into Text.Hakyll.File and Text.Hakyll.Util. | Jasper Van der Jeugt | 1 | -0/+1 | |
2009-12-13 | Moved writePage to Text.Hakyll.Page. | Jasper Van der Jeugt | 1 | -1/+9 | |
2009-12-13 | Removed some deprecated functions. | Jasper Van der Jeugt | 1 | -12/+3 | |
2009-12-12 | Wrote documentation for Text.Hakyll.Page and Text.Hakyll.Renderable. | Jasper Van der Jeugt | 1 | -1/+7 | |
2009-12-10 | Pages should only contain ByteStrings. | Jasper Van der Jeugt | 1 | -22/+21 | |
2009-12-10 | Made an abstract Renderable class. Still need some cleanup now. | Jasper Van der Jeugt | 1 | -29/+23 | |
2009-12-07 | Added basic dependency checking. | Jasper Van der Jeugt | 1 | -2/+7 | |