Skip to content

Commit efb5484

Browse files
committed
Use a consistent blog post url format
1 parent 704120c commit efb5484

6 files changed

+10
-1
lines changed

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ gem "minima", "~> 2.5"
1616
# If you have any plugins, put them here!
1717
group :jekyll_plugins do
1818
gem "jekyll-feed", "~> 0.12"
19+
gem "jekyll-redirect-from", "0.16"
1920
end
2021

2122
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem

Gemfile.lock

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ GEM
3131
terminal-table (~> 2.0)
3232
jekyll-feed (0.15.1)
3333
jekyll (>= 3.7, < 5.0)
34+
jekyll-redirect-from (0.16.0)
35+
jekyll (>= 3.3, < 5.0)
3436
jekyll-sass-converter (2.1.0)
3537
sassc (> 2.0.1, < 3.0)
3638
jekyll-seo-tag (2.7.1)
@@ -77,6 +79,7 @@ PLATFORMS
7779
DEPENDENCIES
7880
jekyll (~> 4.2.0)
7981
jekyll-feed (~> 0.12)
82+
jekyll-redirect-from (= 0.16)
8083
minima (~> 2.5)
8184
tzinfo (~> 1.2)
8285
tzinfo-data

_config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ show_excerpts: true
3131
contributor_excerpt: "" # TODO: write something here, goes right under "Contributors" heading
3232
blog-intro: Create an issue if you see something wrong. Edit posts or create new ones via PR on <a target="_blank" href="https://github.com/RustPython/rustpython.github.io">github.com/RustPython/rustpython.github.io</a>
3333

34+
permalink: /blog/:year/:month/:day/:title:output_ext
35+
3436
navigation:
3537
- title: Blog
3638
url: /blog
@@ -49,6 +51,7 @@ dashboards:
4951
theme: minima
5052
plugins:
5153
- jekyll-feed
54+
- jekyll-redirect-from
5255

5356
# Exclude from processing.
5457
# The following items will not be processed, by default.

_posts/2020-03-12-thing-explainer-parser.markdown

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
layout: post
33
title: "Introduction to the RustPython parser"
44
date: 2020-04-02 11:34:01 -0400
5+
redirect_from: /2020/04/02/thing-explainer-parser.html
56
---
67

78
This post goes over the RustPython parser. You can see the source code at [RustPython/parser/](https://github.com/RustPython/RustPython/tree/master/parser).

_posts/2020-04-05-how-to-contribute-by-cpython-unittest.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: post
33
title: "How to contribute to RustPython using CPython's unit tests"
44
date: 2020-04-05 01:45:00 +0900
55
categories: [guideline, featured]
6-
permalink: guideline/2020/04/04/how-to-contribute-by-cpython-unittest.html
6+
redirect_from: /guideline/2020/04/04/how-to-contribute-by-cpython-unittest.html
77
---
88

99
At the very end of 2019, we finally reached one of our short-term goals: CPython `unittest` support which makes finding CPython compatibility errors easier than ever.

_posts/2021-01-27-pip-support.markdown

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ layout: post
33
title: "pip is working! 🎉 🎉 "
44
date: 2021-01-27 01:45:00 +0900
55
categories: [featured]
6+
redirect_from: /featured/2021/01/26/pip-support.html
67
---
78

89
7380 commits and 1940 pull requests later, **pip** and **get-pip.py** are working with RustPython 🎉 🎉. pip can install itself and setuptools!

0 commit comments

Comments
 (0)