jekyll 1.5.1 → 2.0.0.alpha.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of jekyll might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CONTRIBUTING.markdown +6 -6
- data/History.markdown +99 -23
- data/README.markdown +7 -3
- data/Rakefile +5 -5
- data/bin/jekyll +101 -116
- data/features/embed_filters.feature +13 -0
- data/features/include_tag.feature +11 -0
- data/features/markdown.feature +3 -3
- data/features/site_configuration.feature +34 -3
- data/features/step_definitions/jekyll_steps.rb +47 -34
- data/features/support/env.rb +25 -28
- data/jekyll.gemspec +38 -18
- data/lib/jekyll.rb +7 -15
- data/lib/jekyll/commands/build.rb +2 -0
- data/lib/jekyll/commands/serve.rb +11 -1
- data/lib/jekyll/configuration.rb +22 -6
- data/lib/jekyll/converter.rb +16 -16
- data/lib/jekyll/converters/markdown.rb +30 -15
- data/lib/jekyll/converters/markdown/maruku_parser.rb +4 -5
- data/lib/jekyll/converters/markdown/redcarpet_parser.rb +34 -3
- data/lib/jekyll/converters/sass.rb +58 -0
- data/lib/jekyll/converters/textile.rb +2 -2
- data/lib/jekyll/convertible.rb +25 -6
- data/lib/jekyll/core_ext.rb +0 -35
- data/lib/jekyll/deprecator.rb +2 -2
- data/lib/jekyll/entry_filter.rb +61 -25
- data/lib/jekyll/excerpt.rb +8 -6
- data/lib/jekyll/filters.rb +46 -2
- data/lib/jekyll/layout_reader.rb +40 -0
- data/lib/jekyll/mime.types +19 -9
- data/lib/jekyll/page.rb +6 -4
- data/lib/jekyll/post.rb +11 -18
- data/lib/jekyll/site.rb +34 -32
- data/lib/jekyll/tags/highlight.rb +26 -4
- data/lib/jekyll/tags/include.rb +29 -17
- data/lib/jekyll/tags/post_url.rb +10 -1
- data/lib/jekyll/url.rb +0 -2
- data/lib/site_template/_config.yml +1 -1
- data/lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb +1 -1
- data/lib/site_template/css/main.css +8 -1
- data/script/bootstrap +2 -0
- data/script/branding +11 -0
- data/script/cibuild +5 -0
- data/script/rebund +140 -0
- data/site/_config.yml +2 -2
- data/site/_data/docs.yml +44 -0
- data/site/{css → _includes/css}/gridism.css +0 -0
- data/site/_includes/css/normalize.css +1 -0
- data/site/{css → _includes/css}/pygments.css +2 -0
- data/site/{css → _includes/css}/style.css +10 -0
- data/site/_includes/docs_contents.html +4 -12
- data/site/_includes/docs_contents_mobile.html +4 -17
- data/site/_includes/docs_option.html +1 -1
- data/site/_includes/docs_ul.html +2 -2
- data/site/_includes/footer.html +1 -1
- data/site/_includes/top.html +1 -4
- data/site/_layouts/news_item.html +2 -2
- data/site/_posts/2013-07-24-jekyll-1-1-1-released.markdown +4 -4
- data/site/_posts/2013-09-14-jekyll-1-2-1-released.markdown +1 -1
- data/site/_posts/2013-10-28-jekyll-1-3-0-rc1-released.markdown +1 -1
- data/site/_posts/2013-12-09-jekyll-1-4-1-released.markdown +20 -0
- data/site/_posts/2014-01-13-jekyll-1-4-3-released.markdown +1 -2
- data/site/css/screen.css +27 -0
- data/site/docs/assets.md +46 -0
- data/site/docs/configuration.md +18 -4
- data/site/docs/contributing.md +2 -2
- data/site/docs/datafiles.md +6 -6
- data/site/docs/deployment-methods.md +5 -0
- data/site/docs/extras.md +38 -2
- data/site/docs/frontmatter.md +2 -1
- data/site/docs/history.md +0 -22
- data/site/docs/installation.md +7 -7
- data/site/docs/migrations.md +1 -1
- data/site/docs/plugins.md +11 -2
- data/site/docs/posts.md +25 -4
- data/site/docs/sites.md +1 -1
- data/site/docs/structure.md +1 -1
- data/site/docs/templates.md +13 -8
- data/site/docs/troubleshooting.md +8 -5
- data/site/docs/usage.md +11 -0
- data/site/docs/variables.md +18 -0
- data/site/docs/windows.md +44 -0
- data/test/helper.rb +5 -8
- data/test/source/_includes/include.html +1 -0
- data/test/source/_includes/sig.markdown +2 -2
- data/test/source/_posts/2013-12-17-include-variable-filters.markdown +21 -0
- data/test/source/_posts/2013-12-20-properties.text +11 -0
- data/test/source/_sass/_grid.scss +1 -0
- data/test/source/css/main.scss +4 -0
- data/test/source/js/coffeescript.coffee +10 -0
- data/test/source/properties.html +8 -0
- data/test/source/unpublished.html +7 -0
- data/test/test_coffeescript.rb +49 -0
- data/test/test_configuration.rb +29 -18
- data/test/test_convertible.rb +7 -9
- data/test/test_core_ext.rb +0 -22
- data/test/test_entry_filter.rb +36 -2
- data/test/test_excerpt.rb +43 -1
- data/test/test_filters.rb +44 -5
- data/test/test_generated_site.rb +5 -1
- data/test/test_layout_reader.rb +17 -0
- data/test/test_page.rb +28 -10
- data/test/test_post.rb +32 -15
- data/test/test_redcarpet.rb +19 -3
- data/test/test_sass.rb +122 -0
- data/test/test_site.rb +56 -7
- data/test/test_tags.rb +102 -51
- metadata +154 -80
- data/site/_posts/2014-03-24-jekyll-1-5-0-released.markdown +0 -19
- data/site/_posts/2014-03-27-jekyll-1-5-1-released.markdown +0 -26
- data/site/css/normalize.css +0 -1
- data/test/source/_posts/2014-01-06-permalink-traversal.md +0 -5
- data/test/source/exploit.md +0 -5
- data/test/test_path_sanitization.rb +0 -18
@@ -59,10 +59,17 @@ a:visited { color: #a0a; }
|
|
59
59
|
font-size: 115%;
|
60
60
|
text-align: justify;
|
61
61
|
width: 42em;
|
62
|
-
margin:
|
62
|
+
margin: 0 auto 2em;
|
63
|
+
padding-top: 3em;
|
63
64
|
line-height: 1.5em;
|
64
65
|
}
|
65
66
|
|
67
|
+
@media screen and (max-width: 44em) {
|
68
|
+
.site {
|
69
|
+
width: 90%;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
66
73
|
.header a {
|
67
74
|
font-weight: bold;
|
68
75
|
text-decoration: none;
|
data/script/bootstrap
CHANGED
data/script/branding
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
#! /bin/bash
|
2
|
+
|
3
|
+
echo " ---------------------------------------------------------- "
|
4
|
+
echo " _ ______ _ __ __ __ _ _ "
|
5
|
+
echo " | | | ____| | |/ / \ \ / / | | | | "
|
6
|
+
echo " | | | |__ | ' / \ \_/ / | | | | "
|
7
|
+
echo " _ | | | __| | < \ / | | | | "
|
8
|
+
echo " | |__| | | |____ | . \ | | | |____ | |____ "
|
9
|
+
echo " \____/ |______| |_|\_\ |_| |______| |______| "
|
10
|
+
echo " "
|
11
|
+
echo " ---------------------------------------------------------- "
|
data/script/cibuild
ADDED
data/script/rebund
ADDED
@@ -0,0 +1,140 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
#
|
3
|
+
# rebund(1)
|
4
|
+
#
|
5
|
+
# Author: Julien Letessier
|
6
|
+
# Homepage: https://github.com/mezis/rebund
|
7
|
+
# License:
|
8
|
+
#
|
9
|
+
# Copyright (c) 2014 HouseTrip Ltd
|
10
|
+
#
|
11
|
+
# MIT License
|
12
|
+
#
|
13
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
14
|
+
# a copy of this software and associated documentation files (the
|
15
|
+
# "Software"), to deal in the Software without restriction, including
|
16
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
17
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
18
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
19
|
+
# the following conditions:
|
20
|
+
#
|
21
|
+
# The above copyright notice and this permission notice shall be
|
22
|
+
# included in all copies or substantial portions of the Software.
|
23
|
+
#
|
24
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
25
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
26
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
27
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
28
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
29
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
30
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
31
|
+
|
32
|
+
|
33
|
+
# Configuration
|
34
|
+
: ${REBUND_CREDENTIALS:=user:secret}
|
35
|
+
: ${REBUND_ENDPOINT=http://keyfile-production.herokuapp.com}
|
36
|
+
: ${REBUND_TARBALL:=bundle.tbz}
|
37
|
+
: ${REBUND_BUNDLE_DIR:=vendor/bundle}
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
log() {
|
42
|
+
echo "rebund: $*" > /dev/stderr
|
43
|
+
}
|
44
|
+
|
45
|
+
die() {
|
46
|
+
echo "fatal: $*" > /dev/stderr
|
47
|
+
exit 1
|
48
|
+
}
|
49
|
+
|
50
|
+
success() {
|
51
|
+
log "$*"
|
52
|
+
exit 0
|
53
|
+
}
|
54
|
+
|
55
|
+
on_error() {
|
56
|
+
die 'unknown error.'
|
57
|
+
}
|
58
|
+
|
59
|
+
get_ruby_version() {
|
60
|
+
bundle exec ruby --version
|
61
|
+
}
|
62
|
+
|
63
|
+
get_gemfile() {
|
64
|
+
bundle exec sh -c 'echo $BUNDLE_GEMFILE'
|
65
|
+
}
|
66
|
+
|
67
|
+
calculate_hash() {
|
68
|
+
(get_ruby_version ; cat $(get_gemfile)) | openssl sha256 | sed -e 's/.* //'
|
69
|
+
}
|
70
|
+
|
71
|
+
build_tarball() {
|
72
|
+
test -e $REBUND_BUNDLE_DIR || die "cannot find bundle directory in ${REBUND_BUNDLE_DIR}"
|
73
|
+
test -e $REBUND_TARBALL && success 'bundle already uploaded'
|
74
|
+
tar jcf $REBUND_TARBALL $REBUND_BUNDLE_DIR
|
75
|
+
}
|
76
|
+
|
77
|
+
upload_tarball() {
|
78
|
+
curl --fail \
|
79
|
+
-F filedata=@${REBUND_TARBALL} \
|
80
|
+
--digest --user $REBUND_CREDENTIALS \
|
81
|
+
${REBUND_ENDPOINT}/$(calculate_hash) \
|
82
|
+
|| success "could not upload bundle"
|
83
|
+
}
|
84
|
+
|
85
|
+
expand_tarball() {
|
86
|
+
test -e $REBUND_TARBALL || success "no tarball"
|
87
|
+
tar jxf $REBUND_TARBALL
|
88
|
+
}
|
89
|
+
|
90
|
+
download_tarball() {
|
91
|
+
curl --fail \
|
92
|
+
--location \
|
93
|
+
-o ${REBUND_TARBALL} \
|
94
|
+
--digest --user $REBUND_CREDENTIALS \
|
95
|
+
${REBUND_ENDPOINT}/$(calculate_hash) \
|
96
|
+
|| success "could not download bundle"
|
97
|
+
}
|
98
|
+
|
99
|
+
rebund_upload() {
|
100
|
+
build_tarball
|
101
|
+
upload_tarball
|
102
|
+
}
|
103
|
+
|
104
|
+
rebund_download() {
|
105
|
+
download_tarball
|
106
|
+
expand_tarball
|
107
|
+
}
|
108
|
+
|
109
|
+
rebund_usage() {
|
110
|
+
success "usage: $0 [-v] [upload|download]"
|
111
|
+
}
|
112
|
+
|
113
|
+
# cath errors
|
114
|
+
trap on_error ERR
|
115
|
+
|
116
|
+
# inherit the ERR trap in subprocesses
|
117
|
+
set -E
|
118
|
+
|
119
|
+
while test $# -gt 0 ; do
|
120
|
+
case $1 in
|
121
|
+
-v)
|
122
|
+
set -x
|
123
|
+
;;
|
124
|
+
upload)
|
125
|
+
rebund_upload
|
126
|
+
exit 0
|
127
|
+
;;
|
128
|
+
download)
|
129
|
+
rebund_download
|
130
|
+
exit 0
|
131
|
+
;;
|
132
|
+
*)
|
133
|
+
rebund_usage
|
134
|
+
exit 1
|
135
|
+
;;
|
136
|
+
esac
|
137
|
+
shift
|
138
|
+
done
|
139
|
+
|
140
|
+
rebund_usage
|
data/site/_config.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
|
1
|
+
highlighter: pygments
|
2
2
|
relative_permalinks: false
|
3
3
|
gauges_id: 503c5af6613f5d0f19000027
|
4
4
|
permalink: /news/:year/:month/:day/:title/
|
5
5
|
excerpt_separator: noifniof3nioaniof3nioafafinoafnoif
|
6
|
-
repository: https://github.com/
|
6
|
+
repository: https://github.com/jekyll/jekyll
|
data/site/_data/docs.yml
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
- title: Getting Started
|
2
|
+
docs:
|
3
|
+
- home
|
4
|
+
- quickstart
|
5
|
+
- installation
|
6
|
+
- usage
|
7
|
+
- structure
|
8
|
+
- configuration
|
9
|
+
|
10
|
+
- title: Your Content
|
11
|
+
docs:
|
12
|
+
- frontmatter
|
13
|
+
- posts
|
14
|
+
- drafts
|
15
|
+
- pages
|
16
|
+
- variables
|
17
|
+
- datafiles
|
18
|
+
- assets
|
19
|
+
- migrations
|
20
|
+
|
21
|
+
- title: Customization
|
22
|
+
docs:
|
23
|
+
- templates
|
24
|
+
- permalinks
|
25
|
+
- pagination
|
26
|
+
- plugins
|
27
|
+
- extras
|
28
|
+
|
29
|
+
- title: Deployment
|
30
|
+
docs:
|
31
|
+
- github-pages
|
32
|
+
- deployment-methods
|
33
|
+
|
34
|
+
- title: Miscellaneous
|
35
|
+
docs:
|
36
|
+
- troubleshooting
|
37
|
+
- sites
|
38
|
+
- resources
|
39
|
+
- upgrading
|
40
|
+
|
41
|
+
- title: Meta
|
42
|
+
docs:
|
43
|
+
- contributing
|
44
|
+
- history
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:0.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace, serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}
|
@@ -68,3 +68,5 @@
|
|
68
68
|
.highlight .vg { color: #98fb98} /* Name.Variable.Global */
|
69
69
|
.highlight .vi { color: #98fb98} /* Name.Variable.Instance */
|
70
70
|
.highlight .il { color: #ffffff} /* Literal.Number.Integer.Long */
|
71
|
+
|
72
|
+
.highlight .bash .nv {-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; }
|
@@ -289,10 +289,20 @@ body > footer a:hover img {
|
|
289
289
|
|
290
290
|
.quickstart .code .path {
|
291
291
|
color: #87ceeb;
|
292
|
+
-webkit-user-select: none; /* Chrome all / Safari all */
|
293
|
+
-moz-user-select: none; /* Firefox all */
|
294
|
+
-ms-user-select: none; /* IE 10+ */
|
295
|
+
-o-user-select: none;
|
296
|
+
user-select: none;
|
292
297
|
}
|
293
298
|
|
294
299
|
.quickstart .code .prompt {
|
295
300
|
color: #cd5c5c;
|
301
|
+
-webkit-user-select: none; /* Chrome all / Safari all */
|
302
|
+
-moz-user-select: none; /* Firefox all */
|
303
|
+
-ms-user-select: none; /* IE 10+ */
|
304
|
+
-o-user-select: none;
|
305
|
+
user-select: none;
|
296
306
|
}
|
297
307
|
|
298
308
|
.quickstart .code .command {
|
@@ -1,16 +1,8 @@
|
|
1
1
|
<div class="unit one-fifth hide-on-mobiles">
|
2
2
|
<aside>
|
3
|
-
|
4
|
-
{
|
5
|
-
|
6
|
-
{%
|
7
|
-
<h4>Customization</h4>
|
8
|
-
{% include docs_ul.html items='templates permalinks pagination plugins extras' %}
|
9
|
-
<h4>Deployment</h4>
|
10
|
-
{% include docs_ul.html items='github-pages deployment-methods' %}
|
11
|
-
<h4>Miscellaneous</h4>
|
12
|
-
{% include docs_ul.html items='troubleshooting sites resources upgrading' %}
|
13
|
-
<h4>Meta</h4>
|
14
|
-
{% include docs_ul.html items='contributing history' %}
|
3
|
+
{% for section in site.data.docs %}
|
4
|
+
<h4>{{ section.title }}</h4>
|
5
|
+
{% include docs_ul.html items=section.docs %}
|
6
|
+
{% endfor %}
|
15
7
|
</aside>
|
16
8
|
</div>
|
@@ -1,23 +1,10 @@
|
|
1
1
|
<div class="docs-nav-mobile unit whole show-on-mobiles">
|
2
2
|
<select onchange="if (this.value) window.location.href=this.value">
|
3
3
|
<option value="">Navigate the docs…</option>
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
<optgroup label="Your Content">
|
8
|
-
{% include docs_option.html items='frontmatter posts drafts pages variables datafiles migrations' %}
|
9
|
-
</optgroup>
|
10
|
-
<optgroup label="Customization">
|
11
|
-
{% include docs_option.html items='templates permalinks pagination plugins extras' %}
|
12
|
-
</optgroup>
|
13
|
-
<optgroup label="Deployment">
|
14
|
-
{% include docs_option.html items='github-pages deployment-methods' %}
|
15
|
-
</optgroup>
|
16
|
-
<optgroup label="Miscellaneous">
|
17
|
-
{% include docs_option.html items='troubleshooting sites resources upgrading' %}
|
18
|
-
</optgroup>
|
19
|
-
<optgroup label="Meta">
|
20
|
-
{% include docs_option.html items='contributing history' %}
|
4
|
+
{% for section in site.data.docs %}
|
5
|
+
<optgroup label="{{ section.title }}">
|
6
|
+
{% include docs_option.html items=section.docs %}
|
21
7
|
</optgroup>
|
8
|
+
{% endfor %}
|
22
9
|
</select>
|
23
10
|
</div>
|
data/site/_includes/docs_ul.html
CHANGED
data/site/_includes/footer.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
<footer>
|
2
2
|
<div class="grid">
|
3
3
|
<div class="unit one-third center-on-mobiles">
|
4
|
-
<p>
|
4
|
+
<p>The contents of this website are © 2013 <a href="http://tom.preston-werner.com/">Tom Preston-Werner</a> under the terms of the <a href="{{ site.repository }}/blob/master/LICENSE">MIT License</a>.</p>
|
5
5
|
</div>
|
6
6
|
<div class="unit two-thirds align-right center-on-mobiles">
|
7
7
|
<p>
|
data/site/_includes/top.html
CHANGED
@@ -8,10 +8,7 @@
|
|
8
8
|
<link rel="alternate" type="application/atom+xml" title="Recent commits to Jekyll’s master branch" href="{{ site.repository }}/commits/master.atom" />
|
9
9
|
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
|
10
10
|
<link href='http://fonts.googleapis.com/css?family=Arizonia' rel='stylesheet' type='text/css'>
|
11
|
-
<link rel="stylesheet" href="{{ site.url }}/css/
|
12
|
-
<link rel="stylesheet" href="{{ site.url }}/css/gridism.css" />
|
13
|
-
<link rel="stylesheet" href="{{ site.url }}/css/style.css" />
|
14
|
-
<link rel="stylesheet" href="{{ site.url }}/css/pygments.css" />
|
11
|
+
<link rel="stylesheet" href="{{ site.url }}/css/screen.css" />
|
15
12
|
<link rel="icon" type="image/png" href="{{ site.url }}/favicon.png" />
|
16
13
|
<script src="{{ site.url }}/js/modernizr-2.5.3.min.js"></script>
|
17
14
|
</head>
|
@@ -9,10 +9,10 @@ categories: [release]
|
|
9
9
|
|
10
10
|
|
11
11
|
Coming just 10 days after the release of v1.1.0, v1.1.1 is out with a patch for the nasty
|
12
|
-
excerpt inception bug ([1339][]) and non-zero exit codes for invalid commands
|
13
|
-
([1338][]).
|
12
|
+
excerpt inception bug ([#1339][]) and non-zero exit codes for invalid commands
|
13
|
+
([#1338][]).
|
14
14
|
|
15
|
-
To all those affected by the [strange excerpt bug in v1.1.0][1321], I'm sorry. I think we
|
15
|
+
To all those affected by the [strange excerpt bug in v1.1.0][#1321], I'm sorry. I think we
|
16
16
|
have it all patched up and it should be deployed to [GitHub Pages][gh_pages] in the next
|
17
17
|
couple weeks. Thank you for your patience!
|
18
18
|
|
@@ -23,7 +23,7 @@ See the [GitHub Release][] page for more a more detailed changelog for this rele
|
|
23
23
|
|
24
24
|
{% assign issue_numbers = "1339|1338|1321" | split: "|" %}
|
25
25
|
{% for issue in issue_numbers %}
|
26
|
-
[{{ issue }}]: {{ site.repository }}/issues/{{ issue }}
|
26
|
+
[#{{ issue }}]: {{ site.repository }}/issues/{{ issue }}
|
27
27
|
{% endfor %}
|
28
28
|
|
29
29
|
[GitHub Release]: {{ site.repository }}/releases/tag/v1.1.1
|
@@ -8,7 +8,7 @@ categories: [release]
|
|
8
8
|
---
|
9
9
|
|
10
10
|
Quick turnover, anyone? A [recent incompatibility with Liquid
|
11
|
-
v2.5.2](https://github.com/
|
11
|
+
v2.5.2](https://github.com/jekyll/jekyll/pull/1525) produced a nasty bug in
|
12
12
|
which `include` tags were not rendered properly within `if` blocks.
|
13
13
|
|
14
14
|
This release also includes a better handling of detached servers (prints pid and
|
@@ -13,7 +13,7 @@ available for any early adopters who want to give the latest and
|
|
13
13
|
greatest code a spin without having to clone a repository from git.
|
14
14
|
|
15
15
|
Please take this prerelease for a spin and [let us
|
16
|
-
know](https://github.com/
|
16
|
+
know](https://github.com/jekyll/jekyll/issues/new) if you run into any
|
17
17
|
issues!
|
18
18
|
|
19
19
|
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
layout: news_item
|
3
|
+
title: 'Jekyll 1.4.1 Released'
|
4
|
+
date: 2013-12-09 20:44:13 -0600
|
5
|
+
author: mattr-
|
6
|
+
version: 1.4.1
|
7
|
+
categories: [release]
|
8
|
+
---
|
9
|
+
|
10
|
+
Another quick turnover, anyone? A [critical
|
11
|
+
bug]({{ site.repository }}/issues/1794) in the reading of
|
12
|
+
posts snuck itself into the 1.4.0 release.
|
13
|
+
|
14
|
+
To address this issue, we're releasing v1.4.1 of Jekyll so that you can
|
15
|
+
keep on writing without any problems.
|
16
|
+
|
17
|
+
As always, you can find the full list of fixes in this release in the
|
18
|
+
[change log](/docs/history/)!
|
19
|
+
|
20
|
+
|
@@ -23,5 +23,4 @@ traversal, potentially overwriting otherwise-trusted content with arbitrary HTML
|
|
23
23
|
or Javascript depending on your server's configuration.
|
24
24
|
|
25
25
|
*Maintainer's note: Many thanks to @gregose and @charliesome for discovering
|
26
|
-
these vulnerabilities, and to @BenBalter and @alindeman for writing the patch
|
27
|
-
-@parkr*
|
26
|
+
these vulnerabilities, and to @BenBalter and @alindeman for writing the patch.*
|