Index: trunk/extensions/Configure/Configure.i18n.php |
— | — | @@ -67,6 +67,7 @@ |
68 | 68 | 'configure-section-feed' => 'Feed', |
69 | 69 | 'configure-section-job' => 'Jobs', |
70 | 70 | 'configure-section-extension' => 'Extensions', |
| 71 | + 'configure-section-search' => 'Serach', |
71 | 72 | 'configure-section-copyright' => 'Copyright', |
72 | 73 | 'configure-section-htcp' => 'HTCP multicast', |
73 | 74 | 'configure-section-misc' => 'Miscellaneous', |
— | — | @@ -361,6 +362,7 @@ |
362 | 363 | 'configure-section-feed' => 'Alimentation', |
363 | 364 | 'configure-section-job' => 'Travaux', |
364 | 365 | 'configure-section-extension' => 'Extensions', |
| 366 | + 'configure-section-search' => 'Recherche', |
365 | 367 | 'configure-section-copyright' => 'Droits d’auteur', |
366 | 368 | 'configure-section-htcp' => 'HTCP multicanal', |
367 | 369 | 'configure-section-misc' => 'Autres', |
Index: trunk/extensions/Configure/Configure.settings.php |
— | — | @@ -73,6 +73,7 @@ |
74 | 74 | 'wgMasterWaitTimeout' => 'int', |
75 | 75 | 'wgSearchType' => 'text', |
76 | 76 | 'wgSharedDB' => 'text', |
| 77 | + 'wgSharedDBtables' => 'array', |
77 | 78 | 'wgSlaveLagCritical' => 'int', |
78 | 79 | 'wgSlaveLagWarning' => 'int', |
79 | 80 | 'wgExternalServers' => 'array', |
— | — | @@ -573,11 +574,20 @@ |
574 | 575 | 'wgHooks' => 'array', |
575 | 576 | 'wgPagePropLinkInvalidations' => 'array', |
576 | 577 | 'wgParserOutputHooks' => 'array', |
577 | | - 'wgSearchForwardUrl' => 'text', |
578 | 578 | 'wgSpecialPages' => 'array', |
579 | 579 | 'wgSkinExtensionFunctions' => 'array', |
580 | 580 | ), |
581 | 581 | ), |
| 582 | + 'search' => array( |
| 583 | + 'search' => array( |
| 584 | + 'wgAdvancedSearchHighlighting' => 'bool', |
| 585 | + 'wgEnableMWSuggest' => 'bool', |
| 586 | + 'wgMWSuggestTemplate' => 'text', |
| 587 | + 'wgOpenSearchTemplate' => 'text', |
| 588 | + 'wgSearchForwardUrl' => 'text', |
| 589 | + 'wgSearchHighlightBoundaries' => 'text', |
| 590 | + ), |
| 591 | + ), |
582 | 592 | 'htcp' => array( |
583 | 593 | 'htcp' => array( |
584 | 594 | 'wgHTCPMulticastAddress' => 'text', |
— | — | @@ -596,7 +606,6 @@ |
597 | 607 | 'wgCountCategorizedImagesAsUsed' => 'bool', |
598 | 608 | 'wgDisableHardRedirects' => 'bool', |
599 | 609 | 'wgDisableOutputCompression' => 'bool', |
600 | | - 'wgEnableMWSuggest' => 'bool', |
601 | 610 | 'wgExternalDiffEngine' => 'text', |
602 | 611 | 'wgExtraRandompageSQL' => 'text', |
603 | 612 | 'wgFilterCallback' => 'text', |
— | — | @@ -608,8 +617,6 @@ |
609 | 618 | 'wgMaxShellFileSize' => 'int', |
610 | 619 | 'wgMaxShellMemory' => 'int', |
611 | 620 | 'wgMaxTocLevel' => 'int', |
612 | | - 'wgMWSuggestTemplate' => 'text', |
613 | | - 'wgOpenSearchTemplate' => 'text', |
614 | 621 | 'wgRedirectSources' => 'array', |
615 | 622 | 'wgRestrictionTypes' => 'array', |
616 | 623 | 'wgShowIPinHeader' => 'bool', |
— | — | @@ -685,6 +692,7 @@ |
686 | 693 | 'wgMasterWaitTimeout', |
687 | 694 | 'wgSearchType', |
688 | 695 | 'wgSharedDB', |
| 696 | + 'wgSharedDBtables', |
689 | 697 | 'wgSlaveLagCritical', |
690 | 698 | 'wgSlaveLagWarning', |
691 | 699 | 'wgExternalServers', |
— | — | @@ -769,6 +777,7 @@ |
770 | 778 | 'wgLocalDatabases' => 'simple', |
771 | 779 | 'wgLBFactoryConf' => 'array', |
772 | 780 | 'wgExternalServers' => 'array', |
| 781 | + 'wgSharedDBtables' => 'simple', |
773 | 782 | # Email |
774 | 783 | 'wgSMTP' => 'assoc', |
775 | 784 | 'wgUsersNotifedOnAllChanges' => 'simple', |
— | — | @@ -1018,6 +1027,9 @@ |
1019 | 1028 | 'wgHttpOnlyBlacklist' => array( array( '1.13alpha', '>=' ) ), |
1020 | 1029 | 'wgSpecialPageGroups' => array( array( '1.13alpha', '>=' ) ), |
1021 | 1030 | 'wgAllowImageMoving' => array( array( '1.13alpha', '>=' ) ), |
| 1031 | + 'wgSharedDBtables' => array( array( '1.13alpha', '>=' ) ), |
| 1032 | + 'wgAdvancedSearchHighlighting' => array( array( '1.13alpha', '>=' ) ), |
| 1033 | + 'wgSearchHighlightBoundaries' => array( array( '1.13alpha', '>=' ) ), |
1022 | 1034 | ## Obsolete |
1023 | 1035 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1024 | 1036 | 'wgProfilerType' => array( array( '1.8alpha', '<' ) ), |
Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,10 @@ |
2 | 2 | This file lists changes on this extension. |
3 | 3 | Localisation updates are done on betawiki and aren't listed here. |
4 | 4 | |
| 5 | +0.2.3 - 4 May 2008 |
| 6 | + Added $wgSharedDBtables, $wgAdvancedSearchHighlighting and |
| 7 | + $wgSearchHighlightBoundaries. |
| 8 | + |
5 | 9 | 0.2.2 - 3 May 2008 |
6 | 10 | * Fixed a bug when $wgSharedDB is set to an empty string |
7 | 11 | * Added $wgDBpassword and $wgAllowImageMoving to the list of settings |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
18 | 18 | 'description' => 'Allow authorised users to configure the wiki by a web-based interface', |
19 | 19 | 'descriptionmsg' => 'configure-desc', |
20 | | - 'version' => '0.2.2', |
| 20 | + 'version' => '0.2.3', |
21 | 21 | ); |
22 | 22 | |
23 | 23 | ## Adding new rights... |