Index: trunk/extensions/SemanticMediaWiki/includes/SMW_Outputs.php |
— | — | @@ -62,9 +62,6 @@ |
63 | 63 | case SMW_HEADER_TOOLTIP: |
64 | 64 | self::requireResource( 'ext.smw.tooltips' ); |
65 | 65 | break; |
66 | | - case SMW_HEADER_SORTTABLE: |
67 | | - self::requireResource( 'ext.smw.sorttable' ); |
68 | | - break; |
69 | 66 | case SMW_HEADER_STYLE: |
70 | 67 | self::requireResource( 'ext.smw.style' ); |
71 | 68 | break; |
— | — | @@ -108,10 +105,6 @@ |
109 | 106 | self::requireHeadItem( SMW_HEADER_STYLE ); |
110 | 107 | self::$mHeadItems['smw_tt'] = '<script type="text/javascript" src="' . $smwgScriptPath . '/skins/SMW_tooltip.js"></script>'; |
111 | 108 | break; |
112 | | - case SMW_HEADER_SORTTABLE: |
113 | | - self::requireHeadItem( SMW_HEADER_STYLE ); |
114 | | - self::$mHeadItems['smw_st'] = '<script type="text/javascript" src="' . $smwgScriptPath . '/skins/SMW_sorttable.js"></script>'; |
115 | | - break; |
116 | 109 | case SMW_HEADER_STYLE: |
117 | 110 | global $wgContLang; |
118 | 111 | |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_SetupLight.php |
— | — | @@ -75,13 +75,6 @@ |
76 | 76 | 'ext.smw.style' |
77 | 77 | ) |
78 | 78 | ); |
79 | | - $wgResourceModules['ext.smw.sorttable'] = $moduleTemplate + array( |
80 | | - 'scripts' => 'SMW_sorttable.js', |
81 | | - 'dependencies' => array( |
82 | | - 'mediawiki.legacy.wikibits', |
83 | | - 'ext.smw.style' |
84 | | - ) |
85 | | - ); |
86 | 79 | |
87 | 80 | // Register special pages aliases file |
88 | 81 | $wgExtensionAliasesFiles['SemanticMediaWiki'] = $smwgIP . 'languages/SMW_Aliases.php'; |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_GlobalFunctions.php |
— | — | @@ -36,7 +36,6 @@ |
37 | 37 | |
38 | 38 | // Constants for identifying javascripts as used in SMWOutputs. |
39 | 39 | define( 'SMW_HEADER_TOOLTIP', 2 ); |
40 | | -define( 'SMW_HEADER_SORTTABLE', 3 ); |
41 | 40 | define( 'SMW_HEADER_STYLE', 4 ); |
42 | 41 | |
43 | 42 | // Constants for denoting output modes in many functions: HTML or Wiki? |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_Setup.php |
— | — | @@ -94,13 +94,6 @@ |
95 | 95 | 'ext.smw.style' |
96 | 96 | ) |
97 | 97 | ); |
98 | | - $wgResourceModules['ext.smw.sorttable'] = $moduleTemplate + array( |
99 | | - 'scripts' => 'SMW_sorttable.js', |
100 | | - 'dependencies' => array( |
101 | | - 'mediawiki.legacy.wikibits', |
102 | | - 'ext.smw.style' |
103 | | - ) |
104 | | - ); |
105 | 98 | |
106 | 99 | // Register special pages aliases file |
107 | 100 | $wgExtensionAliasesFiles['SemanticMediaWiki'] = $smwgIP . 'languages/SMW_Aliases.php'; |