r43768 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r43767‎ | r43768 | r43769 >
Date:19:05, 20 November 2008
Author:ialex
Status:ok
Tags:
Comment:
Added a border to all table cells
Modified paths:
  • /trunk/extensions/Configure/CHANGELOG (modified) (history)
  • /trunk/extensions/Configure/Configure.css (modified) (history)
  • /trunk/extensions/Configure/Configure.ext.php (modified) (history)
  • /trunk/extensions/Configure/Configure.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Configure/CHANGELOG
@@ -1,6 +1,9 @@
22 This file lists changes on this extension.
33 Localisation updates are done on betawiki and aren't listed here.
44
 5+0.10.2 - 20 November 2008
 6+ Added a border to all table cells.
 7+
58 0.10.1 - 19 November 2008
69 * Added links for APC and User Merge extensions.
710 * Settings descriptions are now also shown on differences.
Index: trunk/extensions/Configure/Configure.ext.php
@@ -143,7 +143,7 @@
144144 }
145145 $use = wfMsgExt( 'configure-ext-use', array( 'parseinline' ) );
146146 $ret .= "<h2>{$use}</h2>\n";
147 - $ret .= "<table class=\"configure-table\"><tr><td>\n";
 147+ $ret .= "<table class=\"configure-table configure-table-ext\"><tr><td>\n";
148148 $checkName = $this->getCheckName();
149149 $ret .= Xml::checkLabel( wfMsg( 'configure-ext-use-extension' ), $checkName, $checkName, $this->isActivated() );
150150 $ret .= "</td></tr>\n";
Index: trunk/extensions/Configure/Configure.php
@@ -17,7 +17,7 @@
1818 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure',
1919 'description' => 'Allow authorised users to configure the wiki via a web-based interface',
2020 'descriptionmsg' => 'configure-desc',
21 - 'version' => '0.10.1',
 21+ 'version' => '0.10.2',
2222 );
2323
2424 # Configuration part
@@ -113,7 +113,7 @@
114114 /**
115115 * Styles versions, you shouldn't change it
116116 */
117 -$wgConfigureStyleVersion = '7';
 117+$wgConfigureStyleVersion = '8';
118118
119119 # Adding new rights...
120120 $wgAvailableRights[] = 'configure';
Index: trunk/extensions/Configure/Configure.css
@@ -60,7 +60,7 @@
6161 }
6262
6363 td.configure-left-column {
64 - width: 20%;
 64+ width: 25%;
6565 }
6666
6767 /**
@@ -75,6 +75,7 @@
7676 border: 1px solid #777;
7777 }
7878
 79+table.configure-table > tr > td,
7980 table.assoc > tr > td,
8081 table.ns-array > tr > td,
8182 table.ns-text > tr > td,
@@ -85,6 +86,10 @@
8687 margin: 3px;
8788 }
8889
 90+table.configure-table-ext > tr > td {
 91+ border: none;
 92+}
 93+
8994 /**
9095 * links
9196 */

Status & tagging log