Skip to content

Commit 4a50506

Browse files
committed
Redirect matplotblog to Scientific Python blog
Fixes #31
1 parent f7f99c3 commit 4a50506

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

matplotlib.org.yml

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
- devdocs
1717
- governance
1818
- ipympl
19-
- matplotblog
2019
- mpl-bench
2120
- mpl-gui
2221
- mpl-sphinx-theme

templates/Caddyfile.j2

+24
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,30 @@ http://{{ caddy.addresses.main }}, http://{{ ansible_fqdn }} {
7474
import subproject {{ site }}
7575
{% endfor %}
7676

77+
# Moved matplotblog to Scientific Python blog.
78+
@matplotblog {
79+
# Top-level post listings go to matplotlib tag.
80+
path /matplotblog
81+
path /matplotblog/
82+
path /matplotblog/index.html
83+
path /matplotblog/posts
84+
path /matplotblog/posts/
85+
path /matplotblog/posts/index.html
86+
path /matplotblog/page
87+
path /matplotblog/page/*
88+
}
89+
redir @matplotblog https://blog.scientific-python.org/posts/matplotlib/
90+
@matplotblog_processed_image {
91+
# New blog doesn't do any post-processing of images, so go to original image.
92+
path_regexp image /matplotblog/posts/(.*)_hu[a-z0-9]+_[0-9]+_(400x300_fit|800x0_resize)_(q75_lanczos|lanczos_3).(png|jpeg|jpg)
93+
}
94+
redir @matplotblog_processed_image https://blog.scientific-python.org/posts/matplotlib/{re.image.1}.{re.image.4}
95+
@matplotblog_post {
96+
# Everything else is a post or its assets, so redirect to the right post page/asset.
97+
path_regexp post /matplotblog/posts/(.*)
98+
}
99+
redir @matplotblog_post https://blog.scientific-python.org/posts/matplotlib/{re.post.1}
100+
77101
# Hide mpl-altair until the site is fixed.
78102
redir /mpl-altair https://github.com/matplotlib/mpl-altair temporary
79103
redir /mpl-altair/* https://github.com/matplotlib/mpl-altair temporary

0 commit comments

Comments
 (0)