diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-01-21 18:34:18 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-01-21 18:34:18 +0000 |
commit | a5b0525afd997ebfc4fbdc5c071c13b53f1e3bfe (patch) | |
tree | 6c2500d24c8d258d01e8e82735be1c7b1d596d58 | |
parent | 9c044fffcfdd37fb2618415059df805c6b621c9a (diff) | |
download | brdo-a5b0525afd997ebfc4fbdc5c071c13b53f1e3bfe.tar.gz brdo-a5b0525afd997ebfc4fbdc5c071c13b53f1e3bfe.tar.bz2 |
- Forum module improvements.
-rw-r--r-- | modules/forum.module | 60 | ||||
-rw-r--r-- | modules/forum/forum.module | 60 | ||||
-rw-r--r-- | themes/xtemplate/xtemplate.css | 20 |
3 files changed, 82 insertions, 58 deletions
diff --git a/modules/forum.module b/modules/forum.module index d5aa94832..8a41b4f91 100644 --- a/modules/forum.module +++ b/modules/forum.module @@ -232,7 +232,7 @@ function _forum_last_reply($nid) { function _forum_format($topic) { if ($topic) { - return t("%date<br />by %author", array("%date" => format_date($topic->timestamp, "small"), "%author" => format_name($topic))); + return t("%time ago<br />by %author", array("%time" => format_interval(time() - $topic->timestamp), "%author" => format_name($topic))); } else { return message_na(); @@ -517,47 +517,51 @@ function theme_forum_list($forums, $parents, $tid) { foreach ($forums as $forum) { if ($forum->container) { - $forum->num_topics = ""; - $forum->num_posts = ""; - $forum->last_post = ""; - $new_topics = 0; - $links = array(); + $description = "<div style=\"margin-left: ". ($forum->depth * 30) ."px;\">\n"; + $description .= " <div class=\"name\">". l($forum->name, "forum/$forum->tid") ."</div>\n"; + + if ($forum->description) { + $description .= " <div class=\"description\">$forum->description</div>\n"; + } + $description .= "</div>\n"; + + $rows[] = array(array("data" => $description, "class" => "container", "colspan" => 4)); } else { if ($user->uid) { $new_topics = $forum->num_topics - $forum->old_topics; } + else { + $new_topics = 0; + } $links = array(); - if ($forum->last_post) { - $links[] = l(t("the most recent topic"), "node/view/". $forum->last_post->nid); - } - if ($new_topics) { - $links[] = l(t("the first new topic"), "forum/$forum->tid/new"); + $links[] = l(t("newest topic"), "forum/$forum->tid/new"); } - } - $description = "<div class=\"forum\" style=\"margin-left: ". ($forum->depth * 30) ."px;\">\n"; - $description .= " <div class=\"name\">". l($forum->name, "forum/$forum->tid") ."</div>\n"; - - if ($forum->description) { - $description .= " <div class=\"description\">$forum->description</div>\n"; - } - if ($links) { - $description .= " <div class=\"navigation\">". t("Jump to: %links", array("%links" => implode(", ", $links))) .".</div>\n"; - } - $description .= "</div>\n"; + if ($forum->last_post) { + $links[] = l(t("active topic"), "node/view/". $forum->last_post->nid); + } - $rows[] = array( - array("data" => $description, "class" => "description"), - array("data" => $forum->num_topics . ($new_topics ? "<br />(". t("%a new", array("%a" => $new_topics)) .")" : ""), "class" => "topics"), - array("data" => $forum->num_posts, "class" => "posts"), - array("data" => ($forum->container ? "" : _forum_format($forum->last_post)), "class" => "last-reply") + $description = "<div style=\"margin-left: ". ($forum->depth * 30) ."px;\">\n"; + $description .= " <div class=\"name\">". l($forum->name, "forum/$forum->tid") ."</div>\n"; - ); + if ($forum->description) { + $description .= " <div class=\"description\">$forum->description</div>\n"; + } + if ($links) { + $description .= " <div class=\"links\">". t("Jump to: %links", array("%links" => implode(", ", $links))) .".</div>\n"; + } + $description .= "</div>\n"; + $rows[] = array( + array("data" => $description, "class" => "forum"), + array("data" => $forum->num_topics . ($new_topics ? "<br />(". t("%a new", array("%a" => $new_topics)) .")" : ""), "class" => "topics"), + array("data" => $forum->num_posts, "class" => "posts"), + array("data" => _forum_format($forum->last_post), "class" => "last-reply")); + } } } diff --git a/modules/forum/forum.module b/modules/forum/forum.module index d5aa94832..8a41b4f91 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -232,7 +232,7 @@ function _forum_last_reply($nid) { function _forum_format($topic) { if ($topic) { - return t("%date<br />by %author", array("%date" => format_date($topic->timestamp, "small"), "%author" => format_name($topic))); + return t("%time ago<br />by %author", array("%time" => format_interval(time() - $topic->timestamp), "%author" => format_name($topic))); } else { return message_na(); @@ -517,47 +517,51 @@ function theme_forum_list($forums, $parents, $tid) { foreach ($forums as $forum) { if ($forum->container) { - $forum->num_topics = ""; - $forum->num_posts = ""; - $forum->last_post = ""; - $new_topics = 0; - $links = array(); + $description = "<div style=\"margin-left: ". ($forum->depth * 30) ."px;\">\n"; + $description .= " <div class=\"name\">". l($forum->name, "forum/$forum->tid") ."</div>\n"; + + if ($forum->description) { + $description .= " <div class=\"description\">$forum->description</div>\n"; + } + $description .= "</div>\n"; + + $rows[] = array(array("data" => $description, "class" => "container", "colspan" => 4)); } else { if ($user->uid) { $new_topics = $forum->num_topics - $forum->old_topics; } + else { + $new_topics = 0; + } $links = array(); - if ($forum->last_post) { - $links[] = l(t("the most recent topic"), "node/view/". $forum->last_post->nid); - } - if ($new_topics) { - $links[] = l(t("the first new topic"), "forum/$forum->tid/new"); + $links[] = l(t("newest topic"), "forum/$forum->tid/new"); } - } - $description = "<div class=\"forum\" style=\"margin-left: ". ($forum->depth * 30) ."px;\">\n"; - $description .= " <div class=\"name\">". l($forum->name, "forum/$forum->tid") ."</div>\n"; - - if ($forum->description) { - $description .= " <div class=\"description\">$forum->description</div>\n"; - } - if ($links) { - $description .= " <div class=\"navigation\">". t("Jump to: %links", array("%links" => implode(", ", $links))) .".</div>\n"; - } - $description .= "</div>\n"; + if ($forum->last_post) { + $links[] = l(t("active topic"), "node/view/". $forum->last_post->nid); + } - $rows[] = array( - array("data" => $description, "class" => "description"), - array("data" => $forum->num_topics . ($new_topics ? "<br />(". t("%a new", array("%a" => $new_topics)) .")" : ""), "class" => "topics"), - array("data" => $forum->num_posts, "class" => "posts"), - array("data" => ($forum->container ? "" : _forum_format($forum->last_post)), "class" => "last-reply") + $description = "<div style=\"margin-left: ". ($forum->depth * 30) ."px;\">\n"; + $description .= " <div class=\"name\">". l($forum->name, "forum/$forum->tid") ."</div>\n"; - ); + if ($forum->description) { + $description .= " <div class=\"description\">$forum->description</div>\n"; + } + if ($links) { + $description .= " <div class=\"links\">". t("Jump to: %links", array("%links" => implode(", ", $links))) .".</div>\n"; + } + $description .= "</div>\n"; + $rows[] = array( + array("data" => $description, "class" => "forum"), + array("data" => $forum->num_topics . ($new_topics ? "<br />(". t("%a new", array("%a" => $new_topics)) .")" : ""), "class" => "topics"), + array("data" => $forum->num_posts, "class" => "posts"), + array("data" => _forum_format($forum->last_post), "class" => "last-reply")); + } } } diff --git a/themes/xtemplate/xtemplate.css b/themes/xtemplate/xtemplate.css index 3f1862ac3..e783ffb87 100644 --- a/themes/xtemplate/xtemplate.css +++ b/themes/xtemplate/xtemplate.css @@ -60,7 +60,7 @@ pre { } table { /* make <td> sizes relative to body size! */ - font-size: 1em; + /* font-size: 1em; */ } .form-item { margin-top: 1em; @@ -269,15 +269,31 @@ table { #tracker td { vertical-align: top; padding: 1em 1em 1em 0; - border-bottom: 1px solid #ddd; + border-bottom: 1px solid #bbb; } #forum td { padding: 0.5em 0.5em 0.5em 0.5em; } +#forum td.container { + background-color: #ccc; +} +#forum td.container a { + color: #555; +} #forum td.statistics, #forum td.settings, #forum td.pager { height: 1.5em; border: 1px solid #bbb; } +#forum td .name { + color: #96c; +} +#forum td .links { + padding-top: 0.7em; + font-size: 0.9em; +} +#forum td .links a { + color: #77a; +} .block-forum h3 { margin-bottom: .5em; } |