/offline_action
Sourcecode in StoryMgr/actions.js:
1:   function offline_action() {
2:      res.data.storylist = renderList(this.offline, "mgrlistitem", 10, req.data.page);
3:      res.data.pagenavigation = renderPageNavigation(this.offline, this.href(req.action), 10, req.data.page);
4:      res.data.title = getMessage("Story.offlineStoriesTitle", {siteTitle: this._parent.title});
5:      res.data.body = this.renderSkinAsString("main");
6:      this._parent.renderSkin("page");
7:      return;
8:   }