Index: trunk/extensions/CodeReview/ui/CodeStatusListView.php |
— | — | @@ -21,11 +21,11 @@ |
22 | 22 | $table_rows .= "<tr><td class=\"mw-codereview-status-$state\">$link</td>" |
23 | 23 | . "<td>" . wfMsgHtml( "code-status-desc-" . $state ) . "</td></tr>\n" ; |
24 | 24 | } |
25 | | - $wgOut->addHTML( '<table class="TablePager">' |
| 25 | + $wgOut->addHTML( '<table class="wikitable">' |
26 | 26 | . '<tr><th>' . wfMsgHtml( 'code-field-status' ) . '</th>' |
27 | 27 | . '<th>' . wfMsgHtml( 'code-field-status-description' ) . '</th></tr>' |
28 | 28 | . $table_rows |
29 | | - . '</table>' |
| 29 | + . '</table>' |
30 | 30 | ); |
31 | 31 | } |
32 | 32 | } |
Index: trunk/extensions/CodeReview/ui/CodeRepoStatsView.php |
— | — | @@ -24,7 +24,7 @@ |
25 | 25 | |
26 | 26 | if ( !empty( $stats->states ) ) { |
27 | 27 | $wgOut->wrapWikiMsg( '<h3 id="stats-revisions">$1</h3>', 'code-stats-status-breakdown' ); |
28 | | - $wgOut->addHTML( '<table class="TablePager">' |
| 28 | + $wgOut->addHTML( '<table class="wikitable">' |
29 | 29 | . '<tr><th>' . wfMsgHtml( 'code-field-status' ) . '</th><th>' |
30 | 30 | . wfMsgHtml( 'code-stats-count' ) . '</th></tr>' ); |
31 | 31 | foreach ( CodeRevision::getPossibleStates() as $state ) { |
— | — | @@ -57,7 +57,7 @@ |
58 | 58 | global $wgOut, $wgLang; |
59 | 59 | $repoName = $this->mRepo->getName(); |
60 | 60 | $wgOut->wrapWikiMsg( "<h3 id=\"stats-{$status}\">$1</h3>", "code-stats-{$status}-breakdown" ); |
61 | | - $wgOut->addHTML( '<table class="TablePager">' |
| 61 | + $wgOut->addHTML( '<table class="wikitable">' |
62 | 62 | . '<tr><th>' . wfMsgHtml( 'code-field-author' ) . '</th><th>' |
63 | 63 | . wfMsgHtml( 'code-stats-count' ) . '</th></tr>' ); |
64 | 64 | $title = SpecialPage::getTitleFor( 'Code', $repoName . "/status/{$status}" ); |
Index: trunk/extensions/CodeReview/ui/CodeRevisionView.php |
— | — | @@ -542,7 +542,7 @@ |
543 | 543 | $header .= '<th>' . wfMsgHtml( 'code-signoff-field-flag' ). '</th>'; |
544 | 544 | $header .= '<th>' . wfMsgHtml( 'code-signoff-field-date' ). '</th>'; |
545 | 545 | $buttonrow = $showButtons ? $this->signoffButtons( $signOffs ) : ''; |
546 | | - return "<table border='1' class='TablePager'><tr>$header</tr>$signoffs$buttonrow</table>"; |
| 546 | + return "<table border='1' class='wikitable'><tr>$header</tr>$signoffs$buttonrow</table>"; |
547 | 547 | } |
548 | 548 | |
549 | 549 | /** |
— | — | @@ -594,7 +594,7 @@ |
595 | 595 | $header .= '<th>' . wfMsgHtml( 'code-field-author' ) . '</th>'; |
596 | 596 | $header .= '<th>' . wfMsgHtml( 'code-field-timestamp' ) . '</th>'; |
597 | 597 | $buttonrow = $showButtons ? $this->referenceButtons() : ''; |
598 | | - return "<table border='1' class='TablePager'><tr>{$header}</tr>{$refs}{$buttonrow}</table>"; |
| 598 | + return "<table border='1' class='wikitable'><tr>{$header}</tr>{$refs}{$buttonrow}</table>"; |
599 | 599 | } |
600 | 600 | |
601 | 601 | /** |
Index: trunk/extensions/CodeReview/ui/CodeAuthorListView.php |
— | — | @@ -15,7 +15,7 @@ |
16 | 16 | |
17 | 17 | $wgOut->addWikiText( $text ); |
18 | 18 | |
19 | | - $wgOut->addHTML( '<table class="TablePager">' |
| 19 | + $wgOut->addHTML( '<table class="wikitable">' |
20 | 20 | . '<tr><th>' . wfMsgHtml( 'code-field-author' ) |
21 | 21 | . '</th><th>' . wfMsgHtml( 'code-author-lastcommit' ) . '</th></tr>' ); |
22 | 22 | |