Skip to content

Designed to be used to generate the combo file for the request made from loader.js using YUI3. In summary, read the parameters keys (combo files), concatenate them, gzip, cache, set the HTTP headers, print out the combo file.

License

eduardolundgren/yui-combo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YUI3 Combo

Inspired on the YUI Development Combo Server (http://github.com/davglass/yui-dev-combo).

Designed to be used to generate the combo file for the request made from loader.js using YUI3. In summary, read the parameters keys (combo files), concatenate them, gzip, cache, set the HTTP headers, print out the combo file.

Example

Testing with YUI3 Loader metadata:

var PATH_BASE = YUI.config.base;

var YUI_metadata = {
	combine: true,
    root: './../../build/',
	comboBase: PATH_BASE + '../lib/yui-combo/combo.php?'
};

// testing the request
YUI(YUI_metadata).use('io');

The combo.php invoke the YUICombo class to manage the request of the YUI3 loader.js for your and for the YUI3 modules.

<?php
	include_once("settings.php");
	include_once("lib/YUIFileUtil.php");
	include_once("lib/YUIHeaderUtil.php");
	include_once("lib/YUICombo.php");

	$config = array(
		// "cache" => false, // cache the request
		// "cacheCombo" => false, // cache the gzipped combo file in the server (for performance)
		// "gzip" => false // gzip the request
	);

	$combo = new YUICombo($_GET, $config);

	$combo->loadModules();
?>

About

Designed to be used to generate the combo file for the request made from loader.js using YUI3. In summary, read the parameters keys (combo files), concatenate them, gzip, cache, set the HTTP headers, print out the combo file.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages