r21812 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r21811‎ | r21812 | r21813 >
Date:18:50, 2 May 2007
Author:brion
Status:old
Tags:
Comment:
Merge from trunk r21803, r21806, r21808: page_restrictions table setup fix
Modified paths:
  • /branches/REL1_10/phase3/RELEASE-NOTES (modified) (history)
  • /branches/REL1_10/phase3/languages/messages/MessagesFr.php (modified) (history)
  • /branches/REL1_10/phase3/maintenance/updaters.inc (modified) (history)

Diff [purge]

Index: branches/REL1_10/phase3/maintenance/updaters.inc
@@ -964,12 +964,14 @@
965965
966966 $name = 'page_restrictions';
967967 $patch = 'patch-page_restrictions.sql';
 968+ $patch2 = 'patch-page_restrictions_sortkey.sql';
968969
969970 if ( $wgDatabase->tableExists( $name ) ) {
970971 echo "...$name table already exists.\n";
971972 } else {
972973 echo "Creating $name table...";
973974 dbsource( archive($patch), $wgDatabase );
 975+ dbsource( archive($patch2), $wgDatabase );
974976 echo "ok\n";
975977
976978 echo "Migrating old restrictions to new table...";
@@ -1166,7 +1168,8 @@
11671169 $wgDBmwschema = 'mediawiki';
11681170
11691171 $newsequences = array(
1170 - "log_log_id_seq"
 1172+ "log_log_id_seq",
 1173+ "pr_id_val",
11711174 );
11721175
11731176 $newtables = array(
@@ -1191,6 +1194,7 @@
11921195 array("logging", "log_params", "TEXT"),
11931196 array("mwuser", "user_editcount", "INTEGER"),
11941197 array("mwuser", "user_newpass_time", "TIMESTAMPTZ"),
 1198+ array("page_restrictions", "pr_id", "INTEGER NOT NULL UNIQUE DEFAULT nextval('pr_id_val')"),
11951199 array("recentchanges", "rc_deleted", "INTEGER NOT NULL DEFAULT 0"),
11961200 array("recentchanges", "rc_log_action", "TEXT"),
11971201 array("recentchanges", "rc_log_type", "TEXT"),
Index: branches/REL1_10/phase3/languages/messages/MessagesFr.php
@@ -559,7 +559,7 @@
560560 Vous nous promettez aussi que vous avez écrit ceci vous-même, ou que vous l’avez copié d’une source provenant du domaine public, ou d’une ressource libre. (voir $1 pour plus de détails).
561561 <strong>N’UTILISEZ PAS DE TRAVAUX SOUS COPYRIGHT SANS AUTORISATION EXPRESSE !</strong>',
562562 'longpagewarning' => "'''AVERTISSEMENT : cette page a une longueur de $1 Ko ;
563 -certains navigateurs gèrent mal la modification de les pages approchant ou dépassant 32 ko.
 563+certains navigateurs gèrent mal la modification des pages approchant ou dépassant 32 ko.
564564 Peut-être devriez-vous diviser la page en sections plus petites.'''",
565565 'longpageerror' => '<strong>ERREUR : Le texte que vous avez soumis fait $1 Ko, ce qui dépasse la limite fixée à $2 Ko. Le texte ne peut pas être sauvé.</strong>',
566566 'readonlywarning' => "'''AVERTISSEMENT : La base de données a été verrouillée pour maintenance,
Index: branches/REL1_10/phase3/RELEASE-NOTES
@@ -3,6 +3,15 @@
44 Security reminder: MediaWiki does not require PHP's register_globals
55 setting since version 1.2.0. If you have it on, turn it *off* if you can.
66
 7+== MediaWiki 1.10.0 ==
 8+
 9+??, ??
 10+
 11+Changes since 1.10.0RC1:
 12+* Various l10n fixes and updates
 13+* Fix for upgrade of page_restrictions table
 14+
 15+
716 == MediaWiki 1.10.0RC1 ==
817
918 April 30, 2007

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r21803Add pr_id column to page_restrictions table.greg17:14, 2 May 2007
r21806*For non-postgres, add the pr_id right after adding page_restrictions table t...aaron17:23, 2 May 2007
r21808No need to check wgDBtype here: already branched at do_all_updates()greg18:10, 2 May 2007