forked from jekyll/jekyll
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
133 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
#!/bin/sh | ||
|
||
script/branding | ||
bundle install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#! /bin/bash | ||
|
||
echo " ---------------------------------------------------------- " | ||
echo " _ ______ _ __ __ __ _ _ " | ||
echo " | | | ____| | |/ / \ \ / / | | | | " | ||
echo " | | | |__ | ' / \ \_/ / | | | | " | ||
echo " _ | | | __| | < \ / | | | | " | ||
echo " | |__| | | |____ | . \ | | | |____ | |____ " | ||
echo " \____/ |______| |_|\_\ |_| |______| |______| " | ||
echo " " | ||
echo " ---------------------------------------------------------- " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#! /bin/bash | ||
|
||
script/bootstrap | ||
script/branding | ||
script/bootstrap > /dev/null 2>&1 | ||
bundle exec rake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
- title: Getting Started | ||
docs: | ||
- home | ||
- quickstart | ||
- installation | ||
- usage | ||
- structure | ||
- configuration | ||
|
||
- title: Your Content | ||
docs: | ||
- frontmatter | ||
- posts | ||
- drafts | ||
- pages | ||
- variables | ||
- datafiles | ||
- migrations | ||
|
||
- title: Customization | ||
docs: | ||
- templates | ||
- permalinks | ||
- pagination | ||
- plugins | ||
- extras | ||
|
||
- title: Deployment | ||
docs: | ||
- github-pages | ||
- deployment-methods | ||
|
||
- title: Miscellaneous | ||
docs: | ||
- troubleshooting | ||
- sites | ||
- resources | ||
- upgrading | ||
|
||
- title: Meta | ||
docs: | ||
- contributing | ||
- history |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,8 @@ | ||
<div class="unit one-fifth hide-on-mobiles"> | ||
<aside> | ||
<h4>Getting Started</h4> | ||
{% include docs_ul.html items='home quickstart installation usage structure configuration' %} | ||
<h4>Your Content</h4> | ||
{% include docs_ul.html items='frontmatter posts drafts pages variables datafiles migrations' %} | ||
<h4>Customization</h4> | ||
{% include docs_ul.html items='templates permalinks pagination plugins extras' %} | ||
<h4>Deployment</h4> | ||
{% include docs_ul.html items='github-pages deployment-methods' %} | ||
<h4>Miscellaneous</h4> | ||
{% include docs_ul.html items='troubleshooting sites resources upgrading' %} | ||
<h4>Meta</h4> | ||
{% include docs_ul.html items='contributing history' %} | ||
{% for section in site.data.docs %} | ||
<h4>{{ section.title }}</h4> | ||
{% include docs_ul.html items=section.docs %} | ||
{% endfor %} | ||
</aside> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,10 @@ | ||
<div class="docs-nav-mobile unit whole show-on-mobiles"> | ||
<select onchange="if (this.value) window.location.href=this.value"> | ||
<option value="">Navigate the docs…</option> | ||
<optgroup label="Getting started"> | ||
{% include docs_option.html items='home quickstart installation usage structure configuration' %} | ||
</optgroup> | ||
<optgroup label="Your Content"> | ||
{% include docs_option.html items='frontmatter posts drafts pages variables datafiles migrations' %} | ||
</optgroup> | ||
<optgroup label="Customization"> | ||
{% include docs_option.html items='templates permalinks pagination plugins extras' %} | ||
</optgroup> | ||
<optgroup label="Deployment"> | ||
{% include docs_option.html items='github-pages deployment-methods' %} | ||
</optgroup> | ||
<optgroup label="Miscellaneous"> | ||
{% include docs_option.html items='troubleshooting sites resources upgrading' %} | ||
</optgroup> | ||
<optgroup label="Meta"> | ||
{% include docs_option.html items='contributing history' %} | ||
{% for section in site.data.docs %} | ||
<optgroup label="{{ section.title }}"> | ||
{% include docs_option.html items=section.docs %} | ||
</optgroup> | ||
{% endfor %} | ||
</select> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
layout: news_item | ||
title: 'Jekyll 1.4.3 Released' | ||
date: 2014-01-13 17:43:32 -0800 | ||
author: benbalter | ||
version: 1.4.3 | ||
categories: [release] | ||
--- | ||
|
||
Jekyll 1.4.3 contains two **critical** security fixes. If you run Jekyll locally | ||
and do not run Jekyll in "safe" mode (e.g. you do not build Jekyll sites on behalf | ||
of others), you are not affected and are not required to update at this time. | ||
([See pull request.]({{ site.repository }}/pull/1944)) | ||
|
||
Versions of Jekyll prior to 1.4.3 and greater than 1.2.0 may allow malicious | ||
users to expose the content of files outside the source directory in the | ||
generated output via improper symlink sanitization, potentially resulting in an | ||
inadvertent information disclosure. | ||
|
||
Versions of Jekyll prior to 1.4.3 may also allow malicious users to write | ||
arbitrary `.html` files outside of the destination folder via relative path | ||
traversal, potentially overwriting otherwise-trusted content with arbitrary HTML | ||
or Javascript depending on your server's configuration. | ||
|
||
*Maintainer's note: Many thanks to @gregose and @charliesome for discovering | ||
these vulnerabilities, and to @BenBalter and @alindeman for writing the patch.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters