Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-11-18 | Detect change if metadata file is deleted | Jasper Van der Jeugt | 1 | -1/+3 | |
Closes #191 | |||||
2013-08-29 | add preview port Configuration field | Jorge Israel Peña | 1 | -0/+5 | |
Make it possible to specify the default port to listen on when the preview server is run. This is useful if another service on the system already runs on port 8000 (the default), since it's a hassle to keep providing the port overriding option. For example: ./site preview vs. ./site preview -p 4000 | |||||
2013-08-14 | Fix versions & metadata loading issue | Jasper Van der Jeugt | 3 | -3/+9 | |
Closes #171 | |||||
2013-06-30 | Correct example code: parseGlob ==> fromGlob | uu1101 | 1 | -1/+1 | |
2013-06-17 | Merge pull request #162 from uu1101/seq-stderr | Jasper Van der Jeugt | 1 | -0/+2 | |
Deepseq stderr before closing the handle | |||||
2013-06-17 | Only add teaser when <!--more--> is there | Jasper Van der Jeugt | 1 | -17/+26 | |
2013-06-14 | Set handle encoding as per locale | uu1101 | 1 | -0/+1 | |
2013-06-14 | Deepseq stderr before closing the handle | uu1101 | 1 | -0/+1 | |
Otherwise laziness allows for the handle to be closed withouth receiving the input. This caused that no error messages were printed when `unixFilter`s failed. | |||||
2013-06-06 | teaserContext -> teaserField | Jasper Van der Jeugt | 1 | -1/+0 | |
2013-05-22 | Deploy should propagate error code | Simonas Kazlauskas | 1 | -3/+4 | |
And return 1 if neither deployCommand and deploySite is set. | |||||
2013-05-07 | Add partials to template system | Jasper Van der Jeugt | 1 | -1/+1 | |
2013-05-06 | Implement foreach structure | Jasper Van der Jeugt | 1 | -1/+1 | |
2013-05-05 | Logged dependencies adding for debugging purposes. | Ivan N. Veselov | 1 | -1/+5 | |
2013-05-04 | Added "teasers" support to be used in posts index. | Ivan N. Veselov | 1 | -0/+20 | |
Just add "<!-- teaser_end -->" to separate the teaser and the rest of the article and use "$teaser$" key in the template! Closes issue #35. | |||||
2013-05-04 | Minor style changes | Jasper Van der Jeugt | 2 | -13/+11 | |
2013-05-04 | Created tests and fixed isMember function | noxx | 1 | -11/+10 | |
2013-05-04 | Added isMember to load function | noxx | 1 | -7/+3 | |
2013-05-04 | Added isMember functions for Store | noxx | 1 | -0/+22 | |
2013-05-04 | Style changes, move stuff to common parser module | Jasper Van der Jeugt | 3 | -4/+35 | |
2013-05-04 | Merge remote-tracking branch 'sphynx/master' | Jasper Van der Jeugt | 1 | -0/+8 | |
2013-05-03 | Added MonadError's instance for Compiler. | Ivan N. Veselov | 1 | -0/+8 | |
2013-05-03 | Close open cache files as soon as possible | Jasper Van der Jeugt | 1 | -15/+24 | |
See #124 | |||||
2013-05-03 | More granular dependencies for routes | Jasper Van der Jeugt | 3 | -13/+29 | |
See #121 | |||||
2013-04-04 | Add event filtering based on pattern | Jasper Van der Jeugt | 2 | -6/+16 | |
2013-04-04 | Debug info for Alternative instances | Jasper Van der Jeugt | 5 | -29/+35 | |
See #126 | |||||
2013-04-03 | Add `getResourceFilePath` | Jasper Van der Jeugt | 1 | -1/+10 | |
See #130 | |||||
2013-04-03 | Account for absolute paths in `shouldIgnoreFile` | Jasper Van der Jeugt | 4 | -26/+43 | |
2013-03-30 | We'll do it ourselves | Jasper Van der Jeugt | 1 | -7/+10 | |
2013-03-30 | UnixFilter improvements | Jasper Van der Jeugt | 1 | -20/+57 | |
Closes #128 | |||||
2013-03-24 | Allow overriding the `deploy` command with Haskell code | Samuel Tardieu | 1 | -0/+13 | |
By overriding `deploySite` with a `Configuration -> IO ()` code, the user can execute Haskell code to deploy the site rather than shell code. The default behaviour honors the `deployCommand` configuration field and is backward compatible. | |||||
2013-03-24 | Fix issue in Compiler Alternative instance | Jasper Van der Jeugt | 1 | -2/+3 | |
2013-03-11 | Merge remote-tracking branch 'piyush-kurur/master' | Jasper Van der Jeugt | 1 | -0/+4 | |
Conflicts: hakyll.cabal | |||||
2013-03-07 | Use resourceFilePath for copyFileCompiler | Jasper Van der Jeugt | 2 | -11/+9 | |
Closes #117 | |||||
2013-03-07 | refactored the Default instance of Configuration | Piyush P Kurur | 1 | -18/+1 | |
2013-03-07 | fixing the coding style | Piyush P Kurur | 1 | -12/+12 | |
2013-03-07 | added a default instance for Configuration | Piyush P Kurur | 1 | -0/+21 | |
2013-03-07 | Add utility getMetadataField | Jasper Van der Jeugt | 1 | -0/+22 | |
2013-03-05 | Add makePatternDependency | Jasper Van der Jeugt | 2 | -0/+11 | |
2013-02-26 | Fix broken test case for #115 | Jasper Van der Jeugt | 1 | -1/+1 | |
2013-02-26 | Add testcase for #115 | Jasper Van der Jeugt | 2 | -2/+4 | |
2013-02-26 | Ignore initial whitespace in a continuation line for a metadata field | Peter Jones | 1 | -2/+3 | |
When parsing a metadata field that spans several lines skip over the initial whitespace on each line. This allows alignment of metadata fields: --- description: A long description that would look better if it spanned multiple lines and was indented --- | |||||
2013-02-16 | Merge branch 'master' into dev-metadata-route | Jasper Van der Jeugt | 1 | -16/+8 | |
Conflicts: tests/Hakyll/Core/Rules/Tests.hs | |||||
2013-02-16 | Add a test for compiler/route ordering | Jasper Van der Jeugt | 1 | -16/+8 | |
2013-02-14 | Merge branch 'master' into dev-metadata-route | Jasper Van der Jeugt | 12 | -172/+194 | |
2013-02-10 | Fix apparent remaining provider rewrite issues | Jasper Van der Jeugt | 2 | -10/+8 | |
2013-02-09 | Start provider rewrite | Jasper Van der Jeugt | 7 | -171/+167 | |
2013-02-06 | Ignore files sooner, small speedup | Jasper Van der Jeugt | 3 | -8/+8 | |
2013-02-06 | Use mtime instead of hashing files, much faster | Jasper Van der Jeugt | 2 | -22/+44 | |
2013-02-02 | Bail when different compilers for the same id | Jasper Van der Jeugt | 1 | -7/+13 | |
2013-02-02 | Fix unixFilterLBS example to use unixFilterLBS | Miikka Koskinen | 1 | -1/+1 | |