summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2010-03-04Again an url mistake, now the simpleblog works too.Jasper Van der Jeugt3-7/+6
2010-03-04Fixed url inclusion bug. Brochure example works now.Jasper Van der Jeugt1-4/+6
2010-03-04Got it to compile again, disabled Tags for now.Jasper Van der Jeugt7-155/+122
2010-03-04Work on migration to arrows. Compulation fails.Jasper Van der Jeugt4-30/+19
- Update readPage to produce a Hakyll Context. - Update createPagePath to produce a Context Arrow. - Move Page to internal modules.
2010-03-04First careful transition from data to arrows. It compiles, but that's about it.Jasper Van der Jeugt4-35/+77
2010-03-01Clean up pagination, disable first/last link when on first/last page.Jasper Van der Jeugt1-11/+17
2010-03-01Added simple pagination (unstable).Jasper Van der Jeugt3-11/+85
2010-02-27Some more documentation.Jasper Van der Jeugt1-0/+8
2010-02-27Readability improvements.Jasper Van der Jeugt2-8/+10
2010-02-27Cleanup with hlint.Jasper Van der Jeugt1-3/+4
2010-02-27Minor tweaks on site, made PagePath a newtype.Jasper Van der Jeugt1-2/+2
2010-02-16Updated tests.Jasper Van der Jeugt1-2/+6
2010-02-16Better lhs writing.Jasper Van der Jeugt1-0/+4
2010-02-12Added autocompile mode to replace preview mode.Jasper Van der Jeugt5-13/+46
2010-02-02Fixed indexUrl error with html pages.Jasper Van der Jeugt2-0/+3
2010-02-01Added indexUrl option - experimental.Jasper Van der Jeugt8-27/+52
This option will render, for example, about.html to about/index.html. This way, url's will generally look more pretty.
2010-01-31A little more documentation.Jasper Van der Jeugt2-4/+16
2010-01-31Better naming scheme.Jasper Van der Jeugt8-34/+34
2010-01-29Added a sortByBaseName function.Jasper Van der Jeugt1-1/+8
2010-01-28Some more documentation.Jasper Van der Jeugt1-0/+7
2010-01-28Categories are more or less stable now.Jasper Van der Jeugt3-6/+3
2010-01-28Documented Text.Hakyll.Tags.Jasper Van der Jeugt1-11/+30
2010-01-27Started a cleanup of Text.Hakyll.Tags.Jasper Van der Jeugt3-16/+43
2010-01-27Added an option for categories instead/in addition to tags. Experimental.Jasper Van der Jeugt4-6/+15
2010-01-27Added createListing, createListingWith functions.Jasper Van der Jeugt6-17/+55
These functions were added to have a simpler and more high-level way to do the common createCustomPage/renderAndConcat combination to create post lists, rss feeds, ...
2010-01-27Fixed typos in comments.Jasper Van der Jeugt1-2/+2
2010-01-25Made Arbitrary Page instance.Jasper Van der Jeugt1-2/+17
2010-01-24Added support for literate haskell files - patch by Mark Harris.Jasper Van der Jeugt2-1/+5
2010-01-24Changed test system. Wrote some test cases.Jasper Van der Jeugt1-2/+37
2010-01-24Module cleanup.Jasper Van der Jeugt5-20/+23
2010-01-24Added Template type (experimental).Jasper Van der Jeugt5-41/+106
2010-01-24Simplified pureRenderAndConcat function.Jasper Van der Jeugt1-8/+5
2010-01-24Use ascending list for serializing where possible.Jasper Van der Jeugt2-4/+4
2010-01-24Added tagMap caching.Jasper Van der Jeugt3-14/+33
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-24Wrote some more documentation.Jasper Van der Jeugt4-2/+9
2010-01-23Documentation++.Jasper Van der Jeugt5-15/+54
2010-01-23Added changeExtension ContextManipulation.Jasper Van der Jeugt1-1/+15
2010-01-23Strictness cleanup.Jasper Van der Jeugt2-9/+5
2010-01-21Some more documentation.Jasper Van der Jeugt3-3/+14
2010-01-20Speedup of factor 4 by switching to the Data.Binary library for serialization.Jasper Van der Jeugt2-8/+13
2010-01-20Added caching again. But now the more sexy, stable and fast version.Jasper Van der Jeugt2-5/+27
2010-01-20Made site and cache directory configurable. Caching stubs.Jasper Van der Jeugt6-47/+70
2010-01-19Made hakyll function backward-compatible. Version bump.Jasper Van der Jeugt1-3/+8
2010-01-19Removed debug output.Jasper Van der Jeugt1-1/+0
2010-01-19Removed page caching.Jasper Van der Jeugt3-47/+10
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-19Made page parser a little less strict.Jasper Van der Jeugt2-5/+6
2010-01-19Hakyll now passes HLint.Jasper Van der Jeugt11-48/+48
2010-01-19Cleaner page reading.Jasper Van der Jeugt1-10/+10
2010-01-19[awesome feature] Added combining of Renderables.Jasper Van der Jeugt1-8/+52
2010-01-19Unicode is a bitch.Jasper Van der Jeugt2-12/+10
I am leaving a character in one of the examples, so we would notice it directly, should we ever break it again.