summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-05-30 05:53:10 +0000
committerDries Buytaert <dries@buytaert.net>2003-05-30 05:53:10 +0000
commited1a9cbfa7263111ae19d5fa2c19bb02c3e8a49f (patch)
treeb0f05b1223354f1c4d860851cacdcdfb2ddaaab8
parent514a1a96ed01725c1e7c3d028e80e2a825ec76fd (diff)
downloadbrdo-ed1a9cbfa7263111ae19d5fa2c19bb02c3e8a49f.tar.gz
brdo-ed1a9cbfa7263111ae19d5fa2c19bb02c3e8a49f.tar.bz2
Patch by Al:
- Made the import module use theme_item_list() instead of emitting the HTML and CSS itself. - Renamed the "blog-it" tag to "icon" so it can be used for other (but similar) purposes.
-rw-r--r--misc/drupal.css6
-rw-r--r--modules/aggregator.module21
-rw-r--r--modules/aggregator/aggregator.module21
-rw-r--r--modules/import.module21
4 files changed, 45 insertions, 24 deletions
diff --git a/misc/drupal.css b/misc/drupal.css
index bf7d3a51b..d1bf5828d 100644
--- a/misc/drupal.css
+++ b/misc/drupal.css
@@ -2,9 +2,9 @@
.item-list ul { margin: 0 0 0.75em 0; padding: 0; }
.item-list ul li { margin: 0 0 0.25em 1.5em; padding: 0; list-style: disc; }
-.blog-it { color: #555; float: right; padding-left: 0.25em; }
-.blog-it a { color: #000; text-decoration: none; }
-.blog-it a:hover { color: #000; text-decoration: none; }
+.item-list .icon { color: #555; float: right; padding-left: 0.25em; }
+.item-list .icon a { color: #000; text-decoration: none; }
+.item-list .icon a:hover { color: #000; text-decoration: none; }
.poll-foreground { background-color: #000; float: left; height: 1em; }
.poll-background { background-color: #ddd; float: left; height: 1em; }
diff --git a/modules/aggregator.module b/modules/aggregator.module
index b1aea5d6e..04222cc42 100644
--- a/modules/aggregator.module
+++ b/modules/aggregator.module
@@ -72,7 +72,7 @@ function import_format_item($item, $feed = 0) {
if ($user->uid && user_access("maintain personal blog")) {
// $output .= "&nbsp;". l("<img src=\"". theme("image", "blog.gif") ."\" border=\"0\" width=\"12\" height=\"16\" alt=\"". t("Blog this item") ."\" />", "node/add/blog&amp;iid=$item->iid", array("title" => t("Comment on this news item in your personal blog.")));
- $output .= "<div class=\"blog-it\">(". l("b", "node/add/blog&amp;iid=$item->iid", array("title" => t("Comment on this news item in your personal blog."))) .")</div>";
+ $output .= "<div class=\"icon\">(". l("b", "node/add/blog&amp;iid=$item->iid", array("title" => t("Comment on this news item in your personal blog."))) .")</div>";
}
// external link
@@ -90,22 +90,29 @@ function import_bundle_block($attributes) {
$result = db_query_range("SELECT * FROM item WHERE ". implode(" OR ", $where) ." ORDER BY iid DESC", 0, variable_get("import_block_limit", 15));
}
- $output = "<div class=\"item-list\"><ul>";
+ $items = array();
while ($item = db_fetch_object($result)) {
- $output .= "<li>". import_format_item($item) ."</li>";
+ $items[] = import_format_item($item);
}
- $output .= "</ul></div>";
+
+ $output = "<div class=\"import-block\"><div class=\"bundle\">";
+ $output .= theme("theme_item_list", $items);
+ $output .= "</div></div>";
return $output;
}
function import_feed_block($feed) {
$result = db_query_range("SELECT * FROM item WHERE fid = %d ORDER BY iid DESC ", $feed->fid, 0, variable_get("import_block_limit", 15));
- $output = "<div class=\"item-list\"><ul>";
+
+ $items = array();
while ($item = db_fetch_object($result)) {
- $output .= "<li>". import_format_item($item) ."</li>";
+ $items[] = import_format_item($item);
}
- $output .= "</ul></div>";
+
+ $output = "<div class=\"import-block\"><div class=\"feed\">";
+ $output .= theme("theme_item_list", $items);
+ $output .= "</div></div>";
return $output;
}
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
index b1aea5d6e..04222cc42 100644
--- a/modules/aggregator/aggregator.module
+++ b/modules/aggregator/aggregator.module
@@ -72,7 +72,7 @@ function import_format_item($item, $feed = 0) {
if ($user->uid && user_access("maintain personal blog")) {
// $output .= "&nbsp;". l("<img src=\"". theme("image", "blog.gif") ."\" border=\"0\" width=\"12\" height=\"16\" alt=\"". t("Blog this item") ."\" />", "node/add/blog&amp;iid=$item->iid", array("title" => t("Comment on this news item in your personal blog.")));
- $output .= "<div class=\"blog-it\">(". l("b", "node/add/blog&amp;iid=$item->iid", array("title" => t("Comment on this news item in your personal blog."))) .")</div>";
+ $output .= "<div class=\"icon\">(". l("b", "node/add/blog&amp;iid=$item->iid", array("title" => t("Comment on this news item in your personal blog."))) .")</div>";
}
// external link
@@ -90,22 +90,29 @@ function import_bundle_block($attributes) {
$result = db_query_range("SELECT * FROM item WHERE ". implode(" OR ", $where) ." ORDER BY iid DESC", 0, variable_get("import_block_limit", 15));
}
- $output = "<div class=\"item-list\"><ul>";
+ $items = array();
while ($item = db_fetch_object($result)) {
- $output .= "<li>". import_format_item($item) ."</li>";
+ $items[] = import_format_item($item);
}
- $output .= "</ul></div>";
+
+ $output = "<div class=\"import-block\"><div class=\"bundle\">";
+ $output .= theme("theme_item_list", $items);
+ $output .= "</div></div>";
return $output;
}
function import_feed_block($feed) {
$result = db_query_range("SELECT * FROM item WHERE fid = %d ORDER BY iid DESC ", $feed->fid, 0, variable_get("import_block_limit", 15));
- $output = "<div class=\"item-list\"><ul>";
+
+ $items = array();
while ($item = db_fetch_object($result)) {
- $output .= "<li>". import_format_item($item) ."</li>";
+ $items[] = import_format_item($item);
}
- $output .= "</ul></div>";
+
+ $output = "<div class=\"import-block\"><div class=\"feed\">";
+ $output .= theme("theme_item_list", $items);
+ $output .= "</div></div>";
return $output;
}
diff --git a/modules/import.module b/modules/import.module
index b1aea5d6e..04222cc42 100644
--- a/modules/import.module
+++ b/modules/import.module
@@ -72,7 +72,7 @@ function import_format_item($item, $feed = 0) {
if ($user->uid && user_access("maintain personal blog")) {
// $output .= "&nbsp;". l("<img src=\"". theme("image", "blog.gif") ."\" border=\"0\" width=\"12\" height=\"16\" alt=\"". t("Blog this item") ."\" />", "node/add/blog&amp;iid=$item->iid", array("title" => t("Comment on this news item in your personal blog.")));
- $output .= "<div class=\"blog-it\">(". l("b", "node/add/blog&amp;iid=$item->iid", array("title" => t("Comment on this news item in your personal blog."))) .")</div>";
+ $output .= "<div class=\"icon\">(". l("b", "node/add/blog&amp;iid=$item->iid", array("title" => t("Comment on this news item in your personal blog."))) .")</div>";
}
// external link
@@ -90,22 +90,29 @@ function import_bundle_block($attributes) {
$result = db_query_range("SELECT * FROM item WHERE ". implode(" OR ", $where) ." ORDER BY iid DESC", 0, variable_get("import_block_limit", 15));
}
- $output = "<div class=\"item-list\"><ul>";
+ $items = array();
while ($item = db_fetch_object($result)) {
- $output .= "<li>". import_format_item($item) ."</li>";
+ $items[] = import_format_item($item);
}
- $output .= "</ul></div>";
+
+ $output = "<div class=\"import-block\"><div class=\"bundle\">";
+ $output .= theme("theme_item_list", $items);
+ $output .= "</div></div>";
return $output;
}
function import_feed_block($feed) {
$result = db_query_range("SELECT * FROM item WHERE fid = %d ORDER BY iid DESC ", $feed->fid, 0, variable_get("import_block_limit", 15));
- $output = "<div class=\"item-list\"><ul>";
+
+ $items = array();
while ($item = db_fetch_object($result)) {
- $output .= "<li>". import_format_item($item) ."</li>";
+ $items[] = import_format_item($item);
}
- $output .= "</ul></div>";
+
+ $output = "<div class=\"import-block\"><div class=\"feed\">";
+ $output .= theme("theme_item_list", $items);
+ $output .= "</div></div>";
return $output;
}