Index: trunk/phase3/skins/Vector.php |
— | — | @@ -48,7 +48,7 @@ |
49 | 49 | */ |
50 | 50 | function setupSkinUserCss( OutputPage $out ){ |
51 | 51 | parent::setupSkinUserCss( $out ); |
52 | | - $out->addModuleStyles( 'vector' ); |
| 52 | + $out->addModuleStyles( 'skins.vector' ); |
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
Index: trunk/phase3/skins/MonoBook.php |
— | — | @@ -28,7 +28,7 @@ |
29 | 29 | |
30 | 30 | parent::setupSkinUserCss( $out ); |
31 | 31 | |
32 | | - $out->addModuleStyles( 'monobook' ); |
| 32 | + $out->addModuleStyles( 'skins.monobook' ); |
33 | 33 | |
34 | 34 | // TODO: Migrate all of these |
35 | 35 | //$out->addStyle( 'monobook/IE50Fixes.css', 'screen', 'lt IE 5.5000' ); |
Index: trunk/phase3/resources/Resources.php |
— | — | @@ -11,10 +11,10 @@ |
12 | 12 | |
13 | 13 | /* Skins */ |
14 | 14 | |
15 | | - 'vector' => new ResourceLoaderFileModule( |
| 15 | + 'skins.vector' => new ResourceLoaderFileModule( |
16 | 16 | array( 'styles' => array( 'skins/vector/screen.css' => array( 'media' => 'screen' ) ) ) |
17 | 17 | ), |
18 | | - 'monobook' => new ResourceLoaderFileModule( |
| 18 | + 'skins.monobook' => new ResourceLoaderFileModule( |
19 | 19 | array( 'styles' => array( |
20 | 20 | 'skins/monobook/main.css' => array( 'media' => 'screen' ), |
21 | 21 | // Honor $wgHandheldStyle. This is kind of evil |