Index: trunk/phase3/maintenance/findhooks.php |
— | — | @@ -63,14 +63,15 @@ |
64 | 64 | $IP . '/includes/installer/', |
65 | 65 | $IP . '/includes/parser/', |
66 | 66 | $IP . '/includes/resourceloader/', |
| 67 | + $IP . '/includes/revisiondelete/', |
67 | 68 | $IP . '/includes/search/', |
68 | 69 | $IP . '/includes/specials/', |
69 | 70 | $IP . '/includes/upload/', |
70 | 71 | $IP . '/languages/', |
71 | 72 | $IP . '/maintenance/', |
72 | | - $IP . '/maintenance/tests/', |
73 | | - $IP . '/maintenance/tests/parser/', |
74 | | - $IP . '/maintenance/tests/phpunit/suites/', |
| 73 | + $IP . '/tests/', |
| 74 | + $IP . '/tests/parser/', |
| 75 | + $IP . '/tests/phpunit/suites/', |
75 | 76 | $IP . '/skins/', |
76 | 77 | ); |
77 | 78 | |
Index: trunk/phase3/docs/hooks.txt |
— | — | @@ -1124,7 +1124,7 @@ |
1125 | 1125 | 'MakeGlobalVariablesScript': called right before Skin::makeVariablesScript |
1126 | 1126 | is executed. Ideally, this hook should only be used to add variables that |
1127 | 1127 | depend on the current page/request; static configuration should be added |
1128 | | -through ResourceLoaderConfigVars instead. |
| 1128 | +through ResourceLoaderGetConfigVars instead. |
1129 | 1129 | &$vars: variable (or multiple variables) to be added into the output |
1130 | 1130 | of Skin::makeVariablesScript |
1131 | 1131 | |
— | — | @@ -1388,7 +1388,7 @@ |
1389 | 1389 | 'RecentChange_save': called at the end of RecentChange::save() |
1390 | 1390 | $recentChange: RecentChange object |
1391 | 1391 | |
1392 | | -'ResourceLoaderConfigVars': called at the end of |
| 1392 | +'ResourceLoaderGetConfigVars': called at the end of |
1393 | 1393 | ResourceLoaderStartUpModule::getConfig(). Use this to export static |
1394 | 1394 | configuration variables to JavaScript. Things that depend on the current |
1395 | 1395 | page/request state must be added through MakeGlobalVariablesScript instead. |