Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita47028a

Browse files
Merge pull request#40 from RustPython/consistent-post-url
Use a consistent blog post url format not dependent on categories
2 parents7c68e77 +efb5484 commita47028a

File tree

6 files changed

+34
-25
lines changed

6 files changed

+34
-25
lines changed

‎Gemfile‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ source "https://rubygems.org"
77
#
88
# This will help ensure the proper Jekyll version is running.
99
# Happy Jekylling!
10-
gem"jekyll","~> 4.0.0"
10+
gem"jekyll","~> 4.2.0"
1111
# This is the default theme for new Jekyll sites. You may change this to anything you like.
1212
gem"minima","~> 2.5"
1313
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
@@ -16,6 +16,7 @@ gem "minima", "~> 2.5"
1616
# If you have any plugins, put them here!
1717
group:jekyll_pluginsdo
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‎

Lines changed: 26 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,69 +4,71 @@ GEM
44
addressable (2.7.0)
55
public_suffix (>=2.0.2,<5.0)
66
colorator (1.1.0)
7-
concurrent-ruby (1.1.6)
8-
em-websocket (0.5.1)
7+
concurrent-ruby (1.1.8)
8+
em-websocket (0.5.2)
99
eventmachine (>=0.12.9)
1010
http_parser.rb (~>0.6.0)
1111
eventmachine (1.2.7)
12-
ffi (1.12.2)
12+
ffi (1.15.0)
1313
forwardable-extended (2.6.0)
1414
http_parser.rb (0.6.0)
15-
i18n (1.8.2)
15+
i18n (1.8.9)
1616
concurrent-ruby (~>1.0)
17-
jekyll (4.0.0)
17+
jekyll (4.2.0)
1818
addressable (~>2.4)
1919
colorator (~>1.0)
2020
em-websocket (~>0.5)
21-
i18n (>=0.9.5,<2)
21+
i18n (~>1.0)
2222
jekyll-sass-converter (~>2.0)
2323
jekyll-watch (~>2.0)
24-
kramdown (~>2.1)
24+
kramdown (~>2.3)
2525
kramdown-parser-gfm (~>1.0)
2626
liquid (~>4.0)
27-
mercenary (~>0.3.3)
27+
mercenary (~>0.4.0)
2828
pathutil (~>0.9)
2929
rouge (~>3.0)
3030
safe_yaml (~>1.0)
31-
terminal-table (~>1.8)
32-
jekyll-feed (0.13.0)
31+
terminal-table (~>2.0)
32+
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)
36-
jekyll-seo-tag (2.6.1)
37-
jekyll (>=3.3,<5.0)
38+
jekyll-seo-tag (2.7.1)
39+
jekyll (>=3.8,<5.0)
3840
jekyll-watch (2.2.1)
3941
listen (~>3.0)
40-
kramdown (2.3.0)
42+
kramdown (2.3.1)
4143
rexml
4244
kramdown-parser-gfm (1.1.0)
4345
kramdown (~>2.0)
4446
liquid (4.0.3)
45-
listen (3.2.1)
47+
listen (3.5.0)
4648
rb-fsevent (~>0.10,>=0.10.3)
4749
rb-inotify (~>0.9,>=0.9.10)
48-
mercenary (0.3.6)
50+
mercenary (0.4.0)
4951
minima (2.5.1)
5052
jekyll (>=3.5,<5.0)
5153
jekyll-feed (~>0.9)
5254
jekyll-seo-tag (~>2.1)
5355
pathutil (0.16.2)
5456
forwardable-extended (~>2.6)
55-
public_suffix (4.0.3)
56-
rb-fsevent (0.10.3)
57+
public_suffix (4.0.6)
58+
rb-fsevent (0.10.4)
5759
rb-inotify (0.10.1)
5860
ffi (~>1.0)
5961
rexml (3.2.4)
60-
rouge (3.17.0)
62+
rouge (3.26.0)
6163
safe_yaml (1.0.5)
62-
sassc (2.2.1)
64+
sassc (2.4.0)
6365
ffi (~>1.9)
64-
terminal-table (1.8.0)
66+
terminal-table (2.0.0)
6567
unicode-display_width (~>1.1,>=1.1.1)
6668
thread_safe (0.3.6)
67-
tzinfo (1.2.6)
69+
tzinfo (1.2.9)
6870
thread_safe (~>0.1)
69-
tzinfo-data (1.2019.3)
71+
tzinfo-data (1.2021.1)
7072
tzinfo (>=1.0.0)
7173
unicode-display_width (1.7.0)
7274
wdm (0.1.1)
@@ -75,8 +77,9 @@ PLATFORMS
7577
ruby
7678

7779
DEPENDENCIES
78-
jekyll (~>4.0.0)
80+
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‎

Lines changed: 3 additions & 0 deletions
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‎

Lines changed: 1 addition & 0 deletions
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‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 1 addition & 0 deletions
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)

[8]ページ先頭

©2009-2025 Movatter.jp