reddit のソースを理解しようとしており、front.py の get_comments アクション メソッドを見ています。
これは、ストーリーを表示するアクションです。
http://code.reddit.com/browser/r2/r2/controllers/front.py#L139
具体的には、@Validate マーカーがあるメソッドの上部で何を行っているのでしょうか?
リターンの近くの下部では、オブジェクトをビュー ページに送信しています。
ここで呼び出されているビューページはどれですか?
211 res = LinkInfoPage(link = article, comment = comment,
212 content = displayPane,
213 subtitle = _("comments"),
214 nav_menus = [CommentSortMenu(default = sort),
215 NumCommentsMenu(article.num_comments,
216 default=num_comments)],
217 infotext = infotext).render()
218 return res