Index: branches/REL1_10/phase3/maintenance/updaters.inc |
— | — | @@ -964,12 +964,14 @@ |
965 | 965 | |
966 | 966 | $name = 'page_restrictions'; |
967 | 967 | $patch = 'patch-page_restrictions.sql'; |
| 968 | + $patch2 = 'patch-page_restrictions_sortkey.sql'; |
968 | 969 | |
969 | 970 | if ( $wgDatabase->tableExists( $name ) ) { |
970 | 971 | echo "...$name table already exists.\n"; |
971 | 972 | } else { |
972 | 973 | echo "Creating $name table..."; |
973 | 974 | dbsource( archive($patch), $wgDatabase ); |
| 975 | + dbsource( archive($patch2), $wgDatabase ); |
974 | 976 | echo "ok\n"; |
975 | 977 | |
976 | 978 | echo "Migrating old restrictions to new table..."; |
— | — | @@ -1166,7 +1168,8 @@ |
1167 | 1169 | $wgDBmwschema = 'mediawiki'; |
1168 | 1170 | |
1169 | 1171 | $newsequences = array( |
1170 | | - "log_log_id_seq" |
| 1172 | + "log_log_id_seq", |
| 1173 | + "pr_id_val", |
1171 | 1174 | ); |
1172 | 1175 | |
1173 | 1176 | $newtables = array( |
— | — | @@ -1191,6 +1194,7 @@ |
1192 | 1195 | array("logging", "log_params", "TEXT"), |
1193 | 1196 | array("mwuser", "user_editcount", "INTEGER"), |
1194 | 1197 | array("mwuser", "user_newpass_time", "TIMESTAMPTZ"), |
| 1198 | + array("page_restrictions", "pr_id", "INTEGER NOT NULL UNIQUE DEFAULT nextval('pr_id_val')"), |
1195 | 1199 | array("recentchanges", "rc_deleted", "INTEGER NOT NULL DEFAULT 0"), |
1196 | 1200 | array("recentchanges", "rc_log_action", "TEXT"), |
1197 | 1201 | array("recentchanges", "rc_log_type", "TEXT"), |
Index: branches/REL1_10/phase3/languages/messages/MessagesFr.php |
— | — | @@ -559,7 +559,7 @@ |
560 | 560 | 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). |
561 | 561 | <strong>N’UTILISEZ PAS DE TRAVAUX SOUS COPYRIGHT SANS AUTORISATION EXPRESSE !</strong>', |
562 | 562 | '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. |
564 | 564 | Peut-être devriez-vous diviser la page en sections plus petites.'''", |
565 | 565 | '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>', |
566 | 566 | 'readonlywarning' => "'''AVERTISSEMENT : La base de données a été verrouillée pour maintenance, |
Index: branches/REL1_10/phase3/RELEASE-NOTES |
— | — | @@ -3,6 +3,15 @@ |
4 | 4 | Security reminder: MediaWiki does not require PHP's register_globals |
5 | 5 | setting since version 1.2.0. If you have it on, turn it *off* if you can. |
6 | 6 | |
| 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 | + |
7 | 16 | == MediaWiki 1.10.0RC1 == |
8 | 17 | |
9 | 18 | April 30, 2007 |