Manual:Minify.php/pt-br

Category:MediaWiki deprecated or obsolete features/pt-br#Minify.php
Versão MediaWiki:
1.35
Category:MediaWiki code/pt-br#Minify.php

Detalhes

O arquivo Minify.php é um script de manutenção que diminui um arquivo ou um conjunto de arquivos.

This script has been removed in Gerrit change 663099 (MediaWiki 1.36) as minification has moved to its own library: Minify. See T273247.

Options

Option Description Required
fileInput file. Use - to read from standard input.Required
--outfileWrite minified output to this file (instead of standard out).Optional
--typeOverride the input type (one of "js" or "css"). Defaults to file extension. Required if reading from standard input.Optional

If multiple input files are given, they will be concatenated.

Usage

php maintenance/minify.php filename|- [ --outfile| --type ]
testcode.js
// Long list into two col
$( document ).ready( function(){

	var longList = $("#longList").addClass("grid_row"),
		dlElements = longList.children().filter("dl"),
		dlElementsLength = dlElements.length;
	
	var list1 = [],
		list2 = [];
	
	var count = 0;
	dlElements.each( function(index, ele){
		if( count < dlElementsLength/2 ){
			list1.push(ele);
			list1.push( $(ele).next() );
		} else {
			list2.push(ele);
			list2.push( $(ele).next() );
		}
		count = count + 1;
	});
	
	longList.empty();
	
	var leftDiv = $("<div/>").addClass("grid_col");
	list1.forEach( function(value, index){
		leftDiv.append(value);
	});
	
	
	var rightDiv = $("<div/>").addClass("grid_col");
	list2.forEach( function(value, index){
		rightDiv.append(value);
	});
	
	longList.append(leftDiv, rightDiv );
	
});
Terminal

See also

Category:Maintenance scripts/pt-br Category:Development maintenance scripts/pt-br
Category:Development maintenance scripts/pt-br Category:Maintenance scripts/pt-br Category:MediaWiki code/pt-br Category:MediaWiki deprecated or obsolete features/pt-br