|
13 | 13 | pages = [ |
14 | 14 | PyRSS2Gen.RSSItem( |
15 | 15 | title = "Introduction", |
16 | | - link = "http://dev.stephendiehl.com/fun/introduction.html", |
| 16 | + link = "http://dev.stephendiehl.com/fun/000_introduction.html", |
17 | 17 | description = "", |
18 | | - guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/introduction.html"), |
| 18 | + guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/000_introduction.html"), |
19 | 19 | pubDate = jan + datetime.timedelta(1) ), |
20 | 20 |
|
21 | 21 | PyRSS2Gen.RSSItem( |
22 | 22 | title = "Haskell Basics", |
23 | | - link = "http://dev.stephendiehl.com/fun/basics.html", |
| 23 | + link = "http://dev.stephendiehl.com/fun/001_basics.html", |
24 | 24 | description = "", |
25 | | - guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/basics.html"), |
| 25 | + guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/001_basics.html"), |
26 | 26 | pubDate = jan + datetime.timedelta(2) ), |
27 | 27 |
|
28 | 28 | PyRSS2Gen.RSSItem( |
29 | 29 | title = "Parsing", |
30 | | - link = "http://dev.stephendiehl.com/fun/parsers.html", |
| 30 | + link = "http://dev.stephendiehl.com/fun/002_parsers.html", |
31 | 31 | description = "", |
32 | | - guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/parsers.html"), |
| 32 | + guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/002_parsers.html"), |
33 | 33 | pubDate = jan + datetime.timedelta(3)), |
34 | 34 |
|
35 | 35 | PyRSS2Gen.RSSItem( |
36 | 36 | title = "Lambda Calculus", |
37 | | - link = "http://dev.stephendiehl.com/fun/lambda_calculus.html", |
| 37 | + link = "http://dev.stephendiehl.com/fun/003_lambda_calculus.html", |
38 | 38 | description = "", |
39 | | - guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/lambda_calculus.html"), |
| 39 | + guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/003_lambda_calculus.html"), |
40 | 40 | pubDate = jan + datetime.timedelta(4)), |
41 | 41 |
|
42 | 42 | PyRSS2Gen.RSSItem( |
43 | 43 | title = "Type Systems", |
44 | | - link = "http://dev.stephendiehl.com/fun/type_systems.html", |
| 44 | + link = "http://dev.stephendiehl.com/fun/004_type_systems.html", |
45 | 45 | description = "", |
46 | | - guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/type_systems.html"), |
| 46 | + guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/004_type_systems.html"), |
47 | 47 | pubDate = jan + datetime.timedelta(5)), |
48 | 48 |
|
49 | 49 | PyRSS2Gen.RSSItem( |
50 | 50 | title = "Evaluation", |
51 | | - link = "http://dev.stephendiehl.com/fun/evaluation.html", |
| 51 | + link = "http://dev.stephendiehl.com/fun/005_evaluation.html", |
52 | 52 | description = "", |
53 | | - guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/evaluation.html"), |
| 53 | + guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/005_evaluation.html"), |
54 | 54 | pubDate = jan + datetime.timedelta(6)), |
55 | 55 |
|
56 | 56 | PyRSS2Gen.RSSItem( |
57 | 57 | title = "Hindley-Milner Inference", |
58 | | - link = "http://dev.stephendiehl.com/fun/hindley_milner.html", |
| 58 | + link = "http://dev.stephendiehl.com/fun/006_hindley_milner.html", |
59 | 59 | description = "", |
60 | | - guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/hindley_milner.html"), |
| 60 | + guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/006_hindley_milner.html"), |
61 | 61 | pubDate = jan + datetime.timedelta(7)), |
62 | 62 |
|
63 | 63 | PyRSS2Gen.RSSItem( |
64 | 64 | title = "Design of ProtoHaskell", |
65 | | - link = "http://dev.stephendiehl.com/fun/path.html", |
| 65 | + link = "http://dev.stephendiehl.com/fun/007_path.html", |
66 | 66 | description = "", |
67 | | - guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/path.html"), |
| 67 | + guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/007_path.html"), |
68 | 68 | pubDate = jan + datetime.timedelta(8)), |
| 69 | + |
| 70 | + PyRSS2Gen.RSSItem( |
| 71 | + title = "Extended Parser", |
| 72 | + link = "http://dev.stephendiehl.com/fun/008_extended_parser.html", |
| 73 | + description = "", |
| 74 | + guid = PyRSS2Gen.Guid("http://dev.stephendiehl.com/fun/008_extended_parser.html"), |
| 75 | + pubDate = datetime.datetime(2015, 1, 24, 14, 30, 28, 996866)) |
69 | 76 | ] |
70 | 77 |
|
71 | 78 | rss = PyRSS2Gen.RSS2( |
|
0 commit comments