From af43886456ebd248b8972e3050e78009efe4f521 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Tue, 24 Jan 2006 08:18:26 +0000
Subject: [PATCH] - Patch #33861 by Morbus et al: clean up the watchdog view.

---
 includes/path.inc                |  3 ++-
 misc/drupal.css                  |  3 +++
 modules/watchdog.module          | 27 +++++++++++++++++----------
 modules/watchdog/watchdog.module | 27 +++++++++++++++++----------
 4 files changed, 39 insertions(+), 21 deletions(-)

diff --git a/includes/path.inc b/includes/path.inc
index e2da7c29083b..0202c4820d5e 100644
--- a/includes/path.inc
+++ b/includes/path.inc
@@ -1,4 +1,5 @@
-<?
+<?php
+// $Id$
 
 /**
  * @file
diff --git a/misc/drupal.css b/misc/drupal.css
index 680fb64604ae..6484675c1bf2 100644
--- a/misc/drupal.css
+++ b/misc/drupal.css
@@ -459,6 +459,9 @@ img.screenshot {
   font-size: 0.85em;
   text-align: right;
 }
+table.watchdog-event th {
+  border-bottom: 1px solid #ccc;
+}
 tr.watchdog-user {
   background: #ffd;
 }
diff --git a/modules/watchdog.module b/modules/watchdog.module
index 4f19dce27bd4..3c66a7564624 100644
--- a/modules/watchdog.module
+++ b/modules/watchdog.module
@@ -156,20 +156,27 @@ function watchdog_event($id) {
   $output = '';
   $result = db_query('SELECT w.*, u.name, u.uid FROM {watchdog} w INNER JOIN {users} u ON w.uid = u.uid WHERE w.wid = %d', $id);
   if ($watchdog = db_fetch_object($result)) {
-    $output .= '<table border="1" cellpadding="2" cellspacing="2">';
-    $output .= ' <tr><th>'. t('Type') .'</th><td>' . t($watchdog->type) . '</td></tr>';
-    $output .= ' <tr><th>'. t('Date') .'</th><td>'. format_date($watchdog->timestamp, 'large') .'</td></tr>';
-    $output .= ' <tr><th>'. t('User') .'</th><td>'. theme('username', $watchdog) .'</td></tr>';
-    $output .= ' <tr><th>'. t('Location') ."</th><td>". l($watchdog->location, $watchdog->location) ."</td></tr>";
-    $output .= ' <tr><th>'. t('Referrer') ."</th><td>". l($watchdog->referer, $watchdog->referer) ."</td></tr>";
-    $output .= ' <tr><th>'. t('Message') ."</th><td>$watchdog->message</td></tr>";
-    $output .= ' <tr><th>'. t('Severity') .'</th><td>'. $severity[$watchdog->severity] .'</td></tr>';
-    $output .= ' <tr><th>'. t('Hostname') ."</th><td>$watchdog->hostname</td></tr>";
-    $output .= '</table>';
+    $header = array(t('Type'), t('Date'), t('User'), t('Location'), t('Referrer'), t('Message'), t('Severity'), t('Hostname'));
+    $data = array(t($watchdog->type), format_date($watchdog->timestamp, 'large'), theme('username', $watchdog), l($watchdog->location, $watchdog->location), l($watchdog->referer, $watchdog->referer), $watchdog->message, $severity[$watchdog->severity], $watchdog->hostname);
+    $output = theme('watchdog_event', $header, $data);
   }
   return $output;
 }
 
+function theme_watchdog_event($header, $data) {
+  $output = '';
+  $output .= '<table class="watchdog-event">';
+
+  $n = count($header);
+  for ($i = 0; $i < $n; $i++) {
+    $output .= '<tr class="' . ($i % 2 == 0 ? 'even' : 'odd') . '"><th>' . $header[$i] . '</th><td>' . $data[$i] . '</td></tr>';
+  }
+
+  $output .= '</table>';
+
+  return $output;
+}
+
 function _watchdog_get_message_types() {
   $types = array();
 
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module
index 4f19dce27bd4..3c66a7564624 100644
--- a/modules/watchdog/watchdog.module
+++ b/modules/watchdog/watchdog.module
@@ -156,20 +156,27 @@ function watchdog_event($id) {
   $output = '';
   $result = db_query('SELECT w.*, u.name, u.uid FROM {watchdog} w INNER JOIN {users} u ON w.uid = u.uid WHERE w.wid = %d', $id);
   if ($watchdog = db_fetch_object($result)) {
-    $output .= '<table border="1" cellpadding="2" cellspacing="2">';
-    $output .= ' <tr><th>'. t('Type') .'</th><td>' . t($watchdog->type) . '</td></tr>';
-    $output .= ' <tr><th>'. t('Date') .'</th><td>'. format_date($watchdog->timestamp, 'large') .'</td></tr>';
-    $output .= ' <tr><th>'. t('User') .'</th><td>'. theme('username', $watchdog) .'</td></tr>';
-    $output .= ' <tr><th>'. t('Location') ."</th><td>". l($watchdog->location, $watchdog->location) ."</td></tr>";
-    $output .= ' <tr><th>'. t('Referrer') ."</th><td>". l($watchdog->referer, $watchdog->referer) ."</td></tr>";
-    $output .= ' <tr><th>'. t('Message') ."</th><td>$watchdog->message</td></tr>";
-    $output .= ' <tr><th>'. t('Severity') .'</th><td>'. $severity[$watchdog->severity] .'</td></tr>';
-    $output .= ' <tr><th>'. t('Hostname') ."</th><td>$watchdog->hostname</td></tr>";
-    $output .= '</table>';
+    $header = array(t('Type'), t('Date'), t('User'), t('Location'), t('Referrer'), t('Message'), t('Severity'), t('Hostname'));
+    $data = array(t($watchdog->type), format_date($watchdog->timestamp, 'large'), theme('username', $watchdog), l($watchdog->location, $watchdog->location), l($watchdog->referer, $watchdog->referer), $watchdog->message, $severity[$watchdog->severity], $watchdog->hostname);
+    $output = theme('watchdog_event', $header, $data);
   }
   return $output;
 }
 
+function theme_watchdog_event($header, $data) {
+  $output = '';
+  $output .= '<table class="watchdog-event">';
+
+  $n = count($header);
+  for ($i = 0; $i < $n; $i++) {
+    $output .= '<tr class="' . ($i % 2 == 0 ? 'even' : 'odd') . '"><th>' . $header[$i] . '</th><td>' . $data[$i] . '</td></tr>';
+  }
+
+  $output .= '</table>';
+
+  return $output;
+}
+
 function _watchdog_get_message_types() {
   $types = array();
 
-- 
GitLab