335 Commits (bd2e3ba250dcd4b16c92cae104c6998b525769e7)
 

Author SHA1 Message Date
Scot Brown 1a75abb0e4 conditionally drop any posts with dates set in the future 8 years ago
Carmen La bb4d772611 Bump version, update deps 8 years ago
Carmen La 78804d61e8 Merge pull request #75 from benswift/master
bugfix for `compass-installed?`
8 years ago
Ben Swift c9828f6cc3 nicer pretty-printing of "compiling sass" 8 years ago
Ben Swift a66f8df5e4 in compile-sass-file!, sh doesn't like nil arg when no compass 8 years ago
Ben Swift fc1d1d725c bugfix for compass-installed?
catch the (previously uncaught) exception when there isn't a `compass`
binary on the `$PATH`, return `false` instead
8 years ago
Carmen La a4ab7f1409 Merge pull request #71 from matsu911/master
Fix toc entries for titles which are links
8 years ago
Shigeaki Matsumura 9858723403 fix toc entry for title which has a link 8 years ago
Carmen La fb80203554 Merge pull request #70 from matsu911/master
support sub directories in pages and posts
Resolves #57
8 years ago
Shigeaki Matsumura 510c33c23d support sub directories in pages and posts 8 years ago
Carmen La 98992b70de bump up deps and version number 8 years ago
Carmen La 52457c7b64 Add `:today` key to params for compiling posts 8 years ago
Arsene Rei 272d688010 Add test for no directories 8 years ago
Arsene Rei f383661e5e Fallback to resources/templates/{pages,posts}
By default, when using markdown files, Cryogen will look for
`resources/templates/md/pages/*.md`. This commits allows Cryogen to fall back to
`resources/templates/pages/*.md` in the case that it can't find any files in the
former directory. It works similarly for posts and Asciidoc files.

Since we're looking specifically for `*.md` for Markdown files and `*.asc` for
Ascii files, this is an opportunity to eliminate redundancy.
8 years ago
Carmen La 3e7d43b212 update dependencies/version 8 years ago
Carmen La ca8d5fe872 Bump version and dependencies 8 years ago
Carmen La 1f7fdd0cbe Merge branch 'jstepien-hawk' 8 years ago
Jan Stępień 0d1149a9c2 Use Hawk in cryogen-core.watcher
This is a follow-up to PR #46. It replaces the 300ms loop with a file
watcher. Hawk is a wrapper around java.nio.file.WatchService coming with
proper OS X support.

Now rebuilds should be instantaneous.
8 years ago
Carmen La ef1422c42c Bump up version 8 years ago
Carmen La 42d4a9098c Merge pull request #65 from dhable/master
Make archive grouping configurable
8 years ago
Dan Hable 683bcad292 Make archive grouping configurable
The blog that I'm moving to cryogen currently groups the posts by year instead of by year/month. This change makes the grouping configurable while defaulting to the current behavior of year/month grouping on posts.
8 years ago
Carmen La 36656de029 Update dependencies 8 years ago
Carmen La a1e783d44f Merge pull request #64 from cqsd/clean-urls
Implement clean URLs feature 
Issue #89 in cryogen-project/cryogen
8 years ago
Tom L 0c4156f43f Add servlet context to tags, archives rendering. 9 years ago
Tom L c18c3d60f2 Implement clean URLs feature (Issue #89)
When `clean-urls?` is set in config, emit pages as subdirectories
`prefix/root/page-name/index.html` instead of
`prefix/root/page-name.html`. Links in emitted HTML then point to
`prefix/root/page-name/`. When `clean-urls?` not set, behaves as
before.

Refactor most URI generation into a new `page-uri` function.
`page-uri` replaces most calls* to `path`, all calls to `post-uri`
and all calls to the old `page-uri`.

Introduce function `create-file-recursive`. Function creates
file parent if not exists.

Introduce function `write-html`. When `clean-urls?` is set, spits
emitted HTML into subdirectories as described above; otherwise
behaves like `create-file`. Replaces most* calls to `create-file`
Calls `create-file` or `create-file-recursive`.

* Exceptions made for sitemap XML and RSS feed XML pages
9 years ago
Carmen La b3bdba2804 Bump up version 9 years ago
Carmen La 2635126ca3 Merge pull request #63 from tomasz-biernacki/authors
Add multiple authors filtering support
9 years ago
Tomasz Biernacki c84b550f92 Add multiple authors filtering support 9 years ago
Carmen La 394ff37643 Bump up version 9 years ago
Carmen La 4989fc04d7 Merge pull request #62 from tomasz-biernacki/rss-auth-desc
Add author and (short) description for RSS
9 years ago
Tomasz Biernacki e5395a362a Add author and (short) description for RSS 9 years ago
Yogthos e1a03943c4 bumped up dependency 9 years ago
Dmitri Sotnikov c0a3084d39 bumped up dependencies and version 9 years ago
Carmen La a0cf654453 Bump up version 9 years ago
Carmen La 69385c1f22 Merge pull request #61 from seanirby/patch-1
Add home to index params when previews are enabled
9 years ago
Sean 852b431d71 Add home to index params when previews are enabled 9 years ago
Dmitri Sotnikov 1fb621e6ed Update project.clj 9 years ago
Dmitri Sotnikov 8ab65e0297 Merge pull request #60 from ponkore/better-support-for-preview
content-with-more-marker returns with correct html closing tags
9 years ago
ponkore 556fe84ef8 content-with-more-marker returns with correct tags
`content-with-more-marker` returns a HTML string when the `content`
conteins more marker ("<!--more-->").

In many case, HTML tags in `content` is balanced.
ex.
------------------------------
<div id='post'>
  <div class='post-content'>
    this post has more marker
<!--more-->
and more content.
  </div>
</div>
------------------------------

But original code breaks the balance.
------------------------------
<div id='post'>
  <div class='post-content'>
    this post has more marker
------------------------------

Afer this patch applied, `tagsoup` read above text and `hiccup`
re-render to HTML text with correct balanced tags.
------------------------------
<div id='post'>
  <div class='post-content'>
    this post has more marker
</div></div>
------------------------------
9 years ago
Yogthos 13c445ff17 bumped up dependencies, version 9 years ago
Dmitri Sotnikov a95b58bd00 Merge pull request #59 from ponkore/rewrite-hrefs-fix
Fix #58
9 years ago
ponkore 792833facb rewrite-hrefs bug fix (when :blog-prefix is blank)
When :blog-prefix in `config.edn` is set nil or "",
rewrite-hrefs should return `text` itself.
9 years ago
Carmen La 839ed5c469 Remove unnecesasry tag-root key 9 years ago
Carmen La 1abc4c6137 Fix bug with rewrite-href function 9 years ago
Carmen La bcd841d3df bump up version and dependencies 9 years ago
Carmen La 7040e1d573 Merge pull request #56 from sbondaryev/feature/custom-uri
Blog/Page/Post/Tag uri customisation
9 years ago
Sergiy BONDARYEV eea999e1d7 add Blog/Page/Post/Tag uri customisation
add :tag-root-uri :page-root-uri :post-root-uri parsing

replace {entity}-root with {entity}-root-uri parameters to set uri

fix root-path call

fix root-path function params order
(worked erlier because of keyword<->map transposition)

fix keyword :{entity}-root-uri to :{entity}-root transformation

misprint: congig -> config

add function to compose file path

add create-file function

add function to compose a path

handle empty blog-path using path function

fix filename for preview
9 years ago
Yogthos 5b13b3b761 added :draft? key to allow creation of draft posts that won't be published 9 years ago
Carmen La 2eb469ee3f Merge pull request #55 from Artiavis/fixing-generate-toc-true
Add regression for the old style of using {:toc true}
9 years ago
Jeff Rabinowitz e34ea8c989 Fixed a regression under which the old style of using :toc true would throw an exception because the tag was not properly cast to a :ul or :ol tag. Added unit testing for all cases. 9 years ago