2002-01-22 19:41:26 +00:00
|
|
|
checkIfLoggedIn(this.href(req.action));
|
2001-10-07 19:31:19 +00:00
|
|
|
|
2002-06-02 16:17:31 +00:00
|
|
|
var deny = this.isDeleteDenied(session.user);
|
2001-09-05 21:54:06 +00:00
|
|
|
if (deny) {
|
|
|
|
res.message = deny;
|
2002-06-26 16:15:43 +00:00
|
|
|
res.redirect(this.site.href());
|
2001-09-05 21:54:06 +00:00
|
|
|
}
|
2001-06-18 08:57:33 +00:00
|
|
|
|
2001-12-10 23:29:13 +00:00
|
|
|
if (req.data.submit == "cancel" || req.data.cancel)
|
2002-06-26 16:15:43 +00:00
|
|
|
res.redirect(path.site.stories.href());
|
2001-12-10 23:29:13 +00:00
|
|
|
else if (req.data.submit == "delete" || req.data.remove) {
|
2002-06-26 16:15:43 +00:00
|
|
|
var result = this.site.stories.deleteStory(this);
|
2001-12-10 23:29:13 +00:00
|
|
|
res.message = result.message;
|
2002-06-26 16:15:43 +00:00
|
|
|
res.redirect(path.site.stories.href());
|
2001-12-10 23:29:13 +00:00
|
|
|
}
|
2001-06-18 08:57:33 +00:00
|
|
|
|
2002-05-15 23:12:41 +00:00
|
|
|
res.data.action = this.href(req.action);
|
|
|
|
|
2002-06-26 16:15:43 +00:00
|
|
|
res.data.title = this.site.title;
|
2002-03-27 13:03:39 +00:00
|
|
|
if (this.title)
|
|
|
|
res.data.title += " - " + encode(this.title);
|
2001-06-18 08:57:33 +00:00
|
|
|
|
2001-09-05 21:54:06 +00:00
|
|
|
var skinParam = new Object();
|
2001-12-10 23:29:13 +00:00
|
|
|
if (this.title)
|
|
|
|
skinParam.what = "the story "" + this.title + """;
|
|
|
|
else
|
|
|
|
skinParam.what = "a story";
|
2002-06-26 16:15:43 +00:00
|
|
|
skinParam.what += " from <b>" + this.creator.name + "</b>";
|
2002-06-02 16:17:31 +00:00
|
|
|
res.data.body = this.renderSkinAsString("delete",skinParam);
|
|
|
|
|
2002-06-26 16:15:43 +00:00
|
|
|
path.site.renderSkin("page");
|