summaryrefslogtreecommitdiff
path: root/_posts/2009-05-18-a-simple-feed-aggregator-with-modern-perl-part-4.1.md
diff options
context:
space:
mode:
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.