Commit Graph

9568 Commits

Author SHA1 Message Date
Stephen Checkoway
6167c09569 Run hooks in priority order.
Low priority hooks are being run before higher priority hooks. This is easy to
demonstrate with the following plugin:

    1.upto(10).each do |n|
      Jekyll::Hooks.register :site, :after_reset, priority: Jekyll::Hooks::PRIORITY_MAP[:low] do
        puts "Low #{n}"
      end
      Jekyll::Hooks.register :site, :after_reset, priority: Jekyll::Hooks::PRIORITY_MAP[:normal] do
        puts "Normal #{n}"
      end
      Jekyll::Hooks.register :site, :after_reset, priority: Jekyll::Hooks::PRIORITY_MAP[:high] do
        puts "High #{n}"
      end
    end

Sorting by the negative of the priority and then by the order the hook was
added does the right thing.
2016-08-06 20:56:34 -05:00
jekyllbot
bc7aaf5274 Update history to reflect merge of #5183 [ci skip] 2016-08-06 12:30:35 -07:00
jekyllbot
d0f55d7207 Merge pull request #5183 from nhoizey/patch-1
Merge pull request 5183
2016-08-06 12:30:34 -07:00
jekyllbot
c9bf8d0726 Update history to reflect merge of #5196 [ci skip] 2016-08-06 12:27:49 -07:00
jekyllbot
61eda2ee40 Merge pull request #5196 from jekyll/site-template-jekyll-feed
Merge pull request 5196
2016-08-06 12:27:48 -07:00
Frank Taillandier
aa8d7772d5 fix hightlight tag 2016-08-05 21:25:19 +02:00
Frank Taillandier
6ab8b5ffe1 Documentation : new-theme command 2016-08-05 21:15:57 +02:00
Jeff Kolesky
e0ce4a00f8 Fixes link tag to work with static files 2016-08-04 20:03:01 -07:00
Jeff Kolesky
05445b81c7 Fixes tests to account for new info.md file 2016-08-04 19:40:14 -07:00
Frank Taillandier
50854d2f76 add more link tag usage examples 2016-08-04 10:56:39 +02:00
Jeff Kolesky
82d6657ae8 Adds ability to link to all files
Fixes request made in #4624 and bug found in #5182
2016-08-03 15:08:26 -07:00
jekyllbot
bc7eb70385 Update history to reflect merge of #5190 [ci skip] 2016-08-03 11:57:52 -07:00
jekyllbot
a63a6d8487 Merge pull request #5190 from shingo-nakanishi/master
Merge pull request 5190
2016-08-03 11:57:51 -07:00
jekyllbot
9e4f469469 Update history to reflect merge of #5194 [ci skip] 2016-08-03 11:57:21 -07:00
jekyllbot
ca77dae267 Merge pull request #5194 from nhoizey/patch-2
Merge pull request 5194
2016-08-03 11:57:20 -07:00
Ben Balter
58cd8f3f4e use jekyll-feed for default site RSS feed 2016-08-03 12:10:44 -04:00
Nicolas Hoizey
ddff013696 Fix path in the prompt 2016-08-03 14:00:53 +02:00
shingo-nakanishi
f084de7bc9 need subcommand build
simply run the `jekyll` shows

```
A subcommand is required. 
jekyll 3.2.1 -- Jekyll is a blog-aware, static site generator in Ruby
``` 

need subcommand build
2016-08-03 10:56:43 +09:00
jekyllbot
01c59004e9 Update history to reflect merge of #5180 [ci skip] 2016-08-02 17:42:13 -07:00
jekyllbot
cb99cf603a Merge pull request #5180 from XhmikosR/patch-1
Merge pull request 5180
2016-08-02 17:42:12 -07:00
jekyllbot
d3ae8403ea Update history to reflect merge of #5185 [ci skip] 2016-08-02 17:30:21 -07:00
jekyllbot
997c61470b Merge pull request #5185 from crispgm/doc-for-filters
Merge pull request 5185
2016-08-02 17:30:20 -07:00
Parker Moore
2bd592077d Site#configure_theme: do not set theme unless it's a string
Some previous ad-hoc 'themes' used this configuration option to store a hash of values.
In that case, we should simply pretend we have no theme.
2016-08-02 17:11:40 -07:00
Parker Moore
da0b456288 Release 💎 3.2.1 v3.2.1 2016-08-02 17:06:23 -07:00
Parker Moore
eef3687486 Merge pull request #5187 from jekyll/release-3-2-1
Site updates for v3.2.1
2016-08-02 17:04:36 -07:00
Parker Moore
b5dcd4b295 New site/latest_version.txt 2016-08-02 16:17:28 -07:00
Parker Moore
57c6408b7f Do not generate the site in verbose mode. 2016-08-02 16:17:28 -07:00
Parker Moore
d504eb5ce9 Gemfile: Be looser about jekyll plugin versions. 2016-08-02 16:17:28 -07:00
Parker Moore
15dc18343c Add release post for 3.2.1 & update History & version 2016-08-02 16:17:28 -07:00
jekyllbot
d4a68eb642 Update history to reflect merge of #5188 [ci skip] 2016-08-02 16:13:07 -07:00
jekyllbot
a7bc7ff9c7 Merge pull request #5188 from jekyll/default-site-read-from-local
Merge pull request 5188
2016-08-02 16:13:06 -07:00
Parker Moore
3943de066c script/default-site: read Jekyll source from local clone
If you bump the version in the repo, then it all goes haywire.
2016-08-02 15:55:33 -07:00
DirtyF
d5e96757a5 [docs] link tag example for a post
* put link tag before post_url
* example of link to a post with link tag
2016-08-02 20:24:30 +02:00
XhmikosR
801d12b916 Gemfile: specify x64_mingw for the optional deps. 2016-08-02 20:39:27 +03:00
XhmikosR
050aacfc85 Update appveyor.yml.
* rename variables
* add `default-site` target
* remove `fast_finish` in order to match Travis CI behavior
* run cucumber tests only on the latest Ruby
2016-08-02 20:39:27 +03:00
David Zhang
3f1b12972b Fix inspect 2016-08-03 01:21:27 +08:00
David Zhang
20e1da8d0b Document for to_integer and inspect filters 2016-08-03 01:10:58 +08:00
Nicolas Hoizey
9ccd0d767a Add the Jekyll Cloudinary plugin 2016-08-02 14:41:14 +02:00
DirtyF
bf8c15f949 [docs] Document link Liquid tag 2016-08-02 09:28:36 +02:00
jekyllbot
6d2b344c0e Update history to reflect merge of #5178 [ci skip] 2016-08-01 22:06:56 -07:00
jekyllbot
88b57ce649 Merge pull request #5178 from jekyll/default-site-specify-gemfile
Merge pull request 5178
2016-08-01 22:06:55 -07:00
Parker Moore
663117403d script/default-site: specify BUNDLE_GEMFILE for new site 2016-08-01 21:56:28 -07:00
jekyllbot
c4483a3a29 Update history to reflect merge of #5168 [ci skip] 2016-08-01 17:36:40 -07:00
jekyllbot
896a502129 Merge pull request #5168 from jekyll/change-quickstart
Merge pull request 5168
2016-08-01 17:36:40 -07:00
jekyllbot
8408449551 Update history to reflect merge of #5164 [ci skip] 2016-08-01 17:34:52 -07:00
jekyllbot
6e0119d5e1 Merge pull request #5164 from jekyll/fix-windows-error
Merge pull request 5164
2016-08-01 17:34:52 -07:00
jekyllbot
b113c01198 Merge pull request #5169 from DirtyF/change-quickstart
Merge pull request 5169
2016-08-01 17:34:17 -07:00
jekyllbot
c6417e8c82 Update history to reflect merge of #5169 [ci skip] 2016-08-01 17:34:17 -07:00
jekyllbot
c6f2459b4e Update history to reflect merge of #5154 [ci skip] 2016-08-01 17:33:55 -07:00
jekyllbot
73b7bd8172 Merge pull request #5154 from jekyll/build-the-site
Merge pull request 5154
2016-08-01 17:33:54 -07:00