summaryrefslogtreecommitdiff
path: root/_posts/2009-05-18-a-simple-feed-aggregator-with-modern-perl-part-4.1.md
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2013-12-09 22:08:44 -0800
committerFranck Cuny <franck.cuny@gmail.com>2013-12-09 22:08:44 -0800
commit7286cd50a139faef33da5eb50ad76b605e5886aa (patch)
treed8a0dbc50249fd17dc33c1e654e011ba576eccd2 /_posts/2009-05-18-a-simple-feed-aggregator-with-modern-perl-part-4.1.md
parentRemove a bunch of unused files. (diff)
downloadlumberjaph-7286cd50a139faef33da5eb50ad76b605e5886aa.tar.gz
Mostly, fix broken links.
Diffstat (limited to '')
-rw-r--r--_posts/2009-05-18-a-simple-feed-aggregator-with-modern-perl-part-4.1.md28
1 files changed, 14 insertions, 14 deletions
diff --git a/_posts/2009-05-18-a-simple-feed-aggregator-with-modern-perl-part-4.1.md b/_posts/2009-05-18-a-simple-feed-aggregator-with-modern-perl-part-4.1.md
index 8f0e033..0c3af16 100644
--- a/_posts/2009-05-18-a-simple-feed-aggregator-with-modern-perl-part-4.1.md
+++ b/_posts/2009-05-18-a-simple-feed-aggregator-with-modern-perl-part-4.1.md
@@ -138,19 +138,19 @@ We got `feed` which is chained to root. `index` is chained to feed, and take no
If you start the application, you will see the following routes:
-> .-------------------------------------+--------------------------------------.
-> | Path Spec | Private |
-> +-------------------------------------+--------------------------------------+
-> | /root/entry/* | /root (0) |
-> | | => /entry/view |
-> | /root/feed | /root (0) |
-> | | -> /feed/feed (0) |
-> | | => /feed/index |
-> | /root/feed/view/* | /root (0) |
-> | | -> /feed/feed (0) |
-> | | => /feed/view |
-> | /root | /root (0) |
-> | | => /index |
-> '-------------------------------------+--------------------------------------'
+ .-------------------------------------+--------------------------------------.
+ | Path Spec | Private |
+ +-------------------------------------+--------------------------------------+
+ | /root/entry/* | /root (0) |
+ | | => /entry/view |
+ | /root/feed | /root (0) |
+ | | -> /feed/feed (0) |
+ | | => /feed/index |
+ | /root/feed/view/* | /root (0) |
+ | | -> /feed/feed (0) |
+ | | => /feed/view |
+ | /root | /root (0) |
+ | | => /index |
+ '-------------------------------------+--------------------------------------'
I hope you got a better idea about chained action in catalyst now. And again, thanks to bobtfish for the code.