Revert r32842, r32942 for now.
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 8 Apr 2008 18:20:28 +0000 (18:20 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 8 Apr 2008 18:20:28 +0000 (18:20 +0000)
* The date-split view is visually disjoint; loss of distinguishing bullets makes the lines harder to read and distinguish, while the extra date headers cause significant vertical expansion of log lists when searched on specific criteria.

RELEASE-NOTES
includes/DefaultSettings.php
includes/LogEventsList.php

index 9a8dce1..a8c1e67 100644 (file)
@@ -28,7 +28,6 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * Removed $wgAlternateMaster, use $wgLBFactoryConf
 * (bug 13562) Misspelled option $wgUserNotifedOnAllChanges changed to
   $wgUserNotifiedOnAllChanges
-* $wgDateGroupedLogs can be set to false to restore old log formatting
 
 === New features in 1.13 ===
 
@@ -64,7 +63,6 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 13490) Show upload/file size limit on upload form
 * Redesign of Special:Userrights
 * Make rev_deleted log entries more intelligible.
-* Logs are grouped under date headings similar to enhanced changes list
 * (6943) Added PAGESINCATEGORY: magic word
 * (13624) Fix regression with manual thumb= parameter on images
 
index 26a0752..e3efe8c 100644 (file)
@@ -2498,11 +2498,6 @@ $wgLogActions = array(
        'suppress/block'        => 'blocklogentry',
 );
 
-/**
- * Group logs under date headings similar to enhanced recent changes.
- */
-$wgDateGroupedLogs = true;
-
 /**
  * Experimental preview feature to fetch rendered text
  * over an XMLHttpRequest from JavaScript instead of
index b9a70a7..7a24ba1 100644 (file)
@@ -136,19 +136,13 @@ class LogEventsList {
        private function getTitlePattern( $pattern ) {
                return Xml::checkLabel( wfMsg( 'log-title-wildcard' ), 'pattern', 'pattern', $pattern );
        }
-
-
-       protected function getWrapperElement() {
-               global $wgDateGroupedLogs;
-               return $wgDateGroupedLogs ? 'div' : 'ul';
-       }
        
        public function beginLogEventsList() {
-               return Xml::openElement( $this->getWrapperElement() ) . "\n";
+               return "<ul>\n";
        }
        
        public function endLogEventsList() {
-               return Xml::closeElement( $this->getWrapperElement() ) . "\n";
+               return "</ul>\n";
        }
        
                /**
@@ -260,24 +254,8 @@ class LogEventsList {
                } else {
                        $action = LogPage::actionText( $row->log_type, $row->log_action, $title, $this->skin, $paramArray, true );
                }
-
-               global $wgDateGroupedLogs;
-               if ( $wgDateGroupedLogs ) {
-                       $time = $wgLang->time( wfTimestamp(TS_MW, $row->log_timestamp), true );
-                       $date = $wgLang->date( wfTimestamp(TS_MW, $row->log_timestamp), true );
-                       $line = Xml::tags('div', array( 'class' => 'mw-log-entry' ), "$del$time $userLink $action $comment $revert" );
-
-                       static $lastdate = false;
-                       if ( $date !== $lastdate ) {
-                               $lastdate = $date;
-                               return Xml::element('h4', null, $date) . "\n" . $line;
-                       } else {
-                               return $line;
-                       }
-               } else {
-                       return Xml::tags('li', null, "$del$time $userLink $action $comment $revert" );
-               }
-
+               
+               return "<li>$del$time $userLink $action $comment $revert</li>\n";
        }
        
        /**