-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathredirects.py
More file actions
executable file
·29 lines (29 loc) · 2.14 KB
/
Copy pathredirects.py
File metadata and controls
executable file
·29 lines (29 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# manual redirects from old urls to new
redirects = {
'/kb/serialization-in-c#.html' : '/article/Serialization-in-C.html',
'/articles/' : '/articles/index.html',
'/software/' : '/software/index.html',
'/software/fofou' : '/software/fofou/index.html',
'/software/sumatra' : '/software/sumatrapdf/free-pdf-reader.html',
'/software/sumatrapdf' : '/software/sumatrapdf/free-pdf-reader.html',
'/software/sumatrapdf/index.html' : '/software/sumatrapdf/free-pdf-reader.html',
'/software/sumatrapdf/download.html' : '/software/sumatrapdf/download-free-pdf-viewer.html',
'/software/sumatrapdf/prerelase.html' : '/software/sumatrapdf/prerelease.html',
'/extremeoptimizations' : '/extremeoptimizations/index.html',
'/extremeoptimizations/' : '/extremeoptimizations/index.html',
'/atom.xml' : 'http://feeds.feedburner.com/KrzysztofKowalczykBlog',
'/feed/rss2/atom.xml' : 'http://feeds.feedburner.com/KrzysztofKowalczykBlog',
'/feed/rss2/' : 'http://feeds.feedburner.com/KrzysztofKowalczykBlog',
'/feed/rss2' : 'http://feeds.feedburner.com/KrzysztofKowalczykBlog',
'/feed/' : 'http://feeds.feedburner.com/KrzysztofKowalczykBlog',
'/feed' : 'http://feeds.feedburner.com/KrzysztofKowalczykBlog',
'/articles/cocoa-objectivec-reference.html' : '/articles/cocoa-reference.html',
'/forum_sumatra/rss.php' : 'http://forums.fofou.org/sumatrapdf/rss',
'/forum_sumatra' : 'http://forums.fofou.org/sumatrapdf',
'/google6dba371684d43cd6.html' : '/static/google6dba371684d43cd6.html',
'/software/sumatrapdf/sumatra-shot-00.gif' : 'http://kjkpub.s3.amazonaws.com/blog/sumatra/sumatra-shot-00.gif',
'/software/sumatrapdf/sumatra-shot-01.gif' : 'http://kjkpub.s3.amazonaws.com/blog/sumatra/sumatra-shot-01.gif',
'/software/sumatrapdf/sumatra-shot-00-full.gif' : 'http://kjkpub.s3.amazonaws.com/blog/sumatra/sumatra-shot-00-full.gif',
'/software/sumatrapdf/sumatra-shot-01-full.gif' : 'http://kjkpub.s3.amazonaws.com/blog/sumatra/sumatra-shot-01-full.gif',
'/software/sumatrapdf/SumatraSplash.png' : 'http://kjkpub.s3.amazonaws.com/blog/sumatra/SumatraSplash.png'
}